Live
get_card_population
psacard.comReturns complete card metadata and all grade population counts by Spec ID, HeadingID, and SportCategoryID from https://psacard.com.
Parameters4
Runs11
Updated3d ago
Degraded11 runs · 72.7% succeeded
30 days ago90 days agoranfailednot checkedtoday
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_card_population?
Returns complete card metadata and all grade population counts by Spec ID, HeadingID, and SportCategoryID from https://psacard.com. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass spec_id, set_id, category_id, timeout_seconds and get the result back without maintaining a scraper.
Response
{
"Total": 0,
"Grade1": 0,
"Grade2": 0,
"Grade3": 0,
"Grade4": 0,
"Grade5": 0,
"Grade6": 0,
"Grade7": 0,
"Grade8": 0,
"Grade9": 0,
"SpecID": 0,
"Grade10": 0,
"Grade1Q": 0,
"Grade2Q": 0,
"Grade3Q": 0,
"Grade4Q": 0,
"Grade5Q": 0,
"Grade6Q": 0,
"Grade7Q": 0,
"Grade8Q": 0,
"Grade9Q": 0,
"GradeN0": 0,
"Variety": "<string>",
"Grade1_5": 0,
"Grade2_5": 0,
"Grade3_5": 0,
"Grade4_5": 0,
"Grade5_5": 0,
"Grade6_5": 0,
"Grade7_5": 0,
"Grade8_5": 0,
"Grade1_5Q": 0,
"HeadingID": 0,
"CardNumber": "<string>",
"GradeTotal": 0,
"source_url": "<string>",
"SubjectName": "<string>",
"HalfGradeTotal": 0,
"SportCategoryID": 0,
"QualifiedGradeTotal": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/446af4b5-94e5-4e23-b0f0-1f35ecec9b2a/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "446af4b5-94e5-4e23-b0f0-1f35ecec9b2a",
"variables": {
"spec_id": 2887865,
"set_id": 164657,
"category_id": 20019,
"timeout_seconds": 45
}
}'Ask an agent
Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.
prompt
Use the Anything API MCP server (https://anything.notte.cc/mcp). Call run(function_id="446af4b5-94e5-4e23-b0f0-1f35ecec9b2a") — the "get_card_population" function, which returns complete card metadata and all grade population counts by Spec ID, HeadingID, and SportCategoryID from https://psacard.com.. It takes spec_id (int), set_id (int), category_id (int), timeout_seconds (int). Return the result as structured JSON.