get_card_variations
snkrdunk.comRetrieves all available variations of a SNKRDUNK trading card (same card code) from https://snkrdunk.com using a One Piece or Pokémon card ID. Returns each variation record with its own ID for downstream pricing lookups.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_card_variations?
Retrieves all available variations of a SNKRDUNK trading card (same card code) from https://snkrdunk.com using a One Piece or Pokémon card ID. Returns each variation record with its own ID for downstream pricing lookups. 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_id": 0,
"variations": [
{}
],
"product_code": "<string>",
"returned_count": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/027f1254-6d75-4031-8b86-912910332e69/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "027f1254-6d75-4031-8b86-912910332e69",
"variables": {
"card_id": 104428,
"timeout_seconds": 25
}
}'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="027f1254-6d75-4031-8b86-912910332e69") — the "get_card_variations" function, which retrieves all available variations of a SNKRDUNK trading card (same card code) from https://snkrdunk.com using a One Piece or Pokémon card ID. Returns each variation record with its own ID for downstream pricing lookups.. It takes card_id (int), timeout_seconds (int). Return the result as structured JSON.