Live
get_card_condition_prices
snkrdunk.comRetrieves active minimum prices by trading-card condition from https://snkrdunk.com for One Piece and Pokémon card IDs, with USD or Japanese Yen output.
Parameters2
Runs10
Updated10d ago
Operational10 runs · 100% 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_condition_prices?
Retrieves active minimum prices by trading-card condition from https://snkrdunk.com for One Piece and Pokémon card IDs, with USD or Japanese Yen output. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass card_id, currency and get the result back without maintaining a scraper.
Response
{
"card_id": 0,
"currency": "<string>",
"returned_count": 0,
"condition_prices": [
{}
]
}Call it
curl --location 'https://us-prod.notte.cc/functions/0d3c8c51-9764-4bde-a0f7-1f1f429b6c0f/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "0d3c8c51-9764-4bde-a0f7-1f1f429b6c0f",
"variables": {
"card_id": 635880,
"currency": "usd"
}
}'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="0d3c8c51-9764-4bde-a0f7-1f1f429b6c0f") — the "get_card_condition_prices" function, which retrieves active minimum prices by trading-card condition from https://snkrdunk.com for One Piece and Pokémon card IDs, with USD or Japanese Yen output.. It takes card_id (int), currency (str). Return the result as structured JSON.