get_card_value_snapshot
cardladder.comRetrieves one trading card record from https://cardladder.com by card_id and returns Card Ladder value confidence, market value, price movement, percent-change metrics, newest sale, 1-month and 1-year sales summaries, population count, and all non-empty card fields.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_card_value_snapshot?
Retrieves one trading card record from https://cardladder.com by card_id and returns Card Ladder value confidence, market value, price movement, percent-change metrics, newest sale, 1-month and 1-year sales summaries, population count, and all non-empty card fields. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass card_id, timeout_seconds and get the result back without maintaining a scraper.
Response
{
"card": {},
"card_id": "<string>",
"guide_value": 0,
"newest_sale": {},
"market_value": 0,
"price_movement": 0,
"percent_changes": {},
"one_year_summary": {},
"population_count": 0,
"one_month_summary": {},
"guide_value_confidence": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/b6095564-9646-4a13-8b9c-2562c8077a7f/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "b6095564-9646-4a13-8b9c-2562c8077a7f",
"variables": {
"card_id": "5pQSDSALbgDIxAeI33lg",
"timeout_seconds": 20
}
}'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="b6095564-9646-4a13-8b9c-2562c8077a7f") — the "get_card_value_snapshot" function, which retrieves one trading card record from https://cardladder.com by card_id and returns Card Ladder value confidence, market value, price movement, percent-change metrics, newest sale, 1-month and 1-year sales summaries, population count, and all non-empty card fields.. It takes card_id (str), timeout_seconds (int). Return the result as structured JSON.