get_set_checklist
tcdb.comGets the full card checklist for a set ID from https://tcdb.com with automatic pagination across checklist pages. Returns card numbers, names, teams, notations, and non-empty card metadata fields.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_set_checklist?
Gets the full card checklist for a set ID from https://tcdb.com with automatic pagination across checklist pages. Returns card numbers, names, teams, notations, and non-empty card metadata fields. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass set_id, timeout_seconds, max_pages and get the result back without maintaining a scraper.
Response
{
"set_id": 0,
"metadata": {},
"checklist": {}
}Call it
curl --location 'https://us-prod.notte.cc/functions/5d98df55-792e-44ec-96e5-db3089056464/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "5d98df55-792e-44ec-96e5-db3089056464",
"variables": {
"set_id": 415379,
"timeout_seconds": 30,
"max_pages": 250
}
}'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="5d98df55-792e-44ec-96e5-db3089056464") — the "get_set_checklist" function, which gets the full card checklist for a set ID from https://tcdb.com with automatic pagination across checklist pages. Returns card numbers, names, teams, notations, and non-empty card metadata fields.. It takes set_id (int), timeout_seconds (int), max_pages (int). Return the result as structured JSON.