list_card_versions
cardmarket.comReturns every printing of a named card from https://cardmarket.com with expansion IDs, version numbers, availability, lowest prices, images, and filtered Singles links.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is list_card_versions?
Returns every printing of a named card from https://cardmarket.com with expansion IDs, version numbers, availability, lowest prices, images, and filtered Singles links. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass card_name, game, seller_country, expansion_id, language, min_condition and get the result back without maintaining a scraper.
Response
{
"game": "<string>",
"versions": [
{}
],
"card_name": "<string>",
"card_slug": "<string>",
"source_url": "<string>",
"result_count": 0,
"total_versions": 0,
"applied_filters": {}
}Call it
curl --location 'https://us-prod.notte.cc/functions/c9375df9-7f8f-4a93-95e2-5feb7ccd96d4/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "c9375df9-7f8f-4a93-95e2-5feb7ccd96d4",
"variables": {
"card_name": "Lightning Bolt",
"game": "Magic",
"seller_country": "",
"expansion_id": 0,
"language": "",
"min_condition": ""
}
}'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="c9375df9-7f8f-4a93-95e2-5feb7ccd96d4") — the "list_card_versions" function, which returns every printing of a named card from https://cardmarket.com with expansion IDs, version numbers, availability, lowest prices, images, and filtered Singles links.. It takes card_name (str), game (str), seller_country (str), expansion_id (int), language (str), min_condition (str). Return the result as structured JSON.