get_psa_certification_details
psacard.comRetrieves the graded collectible record for a PSA certification number from https://psacard.com, including card identity, grade, population, images, spec ID, and PSA value estimate.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_psa_certification_details?
Retrieves the graded collectible record for a PSA certification number from https://psacard.com, including card identity, grade, population, images, spec ID, and PSA value estimate. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass certification_number and get the result back without maintaining a scraper.
Response
{
"year": "<string>",
"grade": "<string>",
"images": [
{
"alt": "<string>",
"url": "<string>"
}
],
"details": {},
"spec_id": 0,
"subject": "<string>",
"category": "<string>",
"card_name": "<string>",
"label_type": "<string>",
"source_url": "<string>",
"brand_title": "<string>",
"card_number": "<string>",
"psa_population": 0,
"variety_pedigree": "<string>",
"sales_history_url": "<string>",
"psa_value_estimate": "<string>",
"certification_number": "<string>",
"reverse_cert_barcode": "<string>",
"population_report_url": "<string>",
"psa_population_higher": 0,
"psa_value_estimate_low": "<string>",
"psa_value_estimate_high": "<string>",
"psa_value_estimate_confidence": "<string>"
}Call it
curl --location 'https://us-prod.notte.cc/functions/96a327d2-cc70-400f-85d8-52f5bdc4cb0b/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "96a327d2-cc70-400f-85d8-52f5bdc4cb0b",
"variables": {
"certification_number": "44980454"
}
}'Ask an agent
Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.
Use the Anything API MCP server (https://anything.notte.cc/mcp). Call run(function_id="96a327d2-cc70-400f-85d8-52f5bdc4cb0b") — the "get_psa_certification_details" function, which retrieves the graded collectible record for a PSA certification number from https://psacard.com, including card identity, grade, population, images, spec ID, and PSA value estimate.. It takes certification_number (str). Return the result as structured JSON.