Marketplace
No threads yet
Live

list_trading_cards

snkrdunk.com

Lists One Piece and Pokémon trading cards from https://snkrdunk.com, with server-side card-code/name search, browsing filters, sorting, pagination, and USD or JPY prices.

Parameters7
Runs14
Updated10d ago
Operational14 runs · 100% succeeded
30 days agotoday

Playground

Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.

What is list_trading_cards?

Lists One Piece and Pokémon trading cards from https://snkrdunk.com, with server-side card-code/name search, browsing filters, sorting, pagination, and USD or JPY prices. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass category, card_type, query, sort, page, per_page, currency and get the result back without maintaining a scraper.

Response

{
  "page": 0,
  "sort": "<string>",
  "items": [
    {}
  ],
  "query": "<string>",
  "category": "<string>",
  "currency": "<string>",
  "has_more": true,
  "per_page": 0,
  "card_type": "<string>",
  "query_mode": true,
  "total_results": 0,
  "returned_count": 0
}

Call it

curl --location 'https://us-prod.notte.cc/functions/697ae673-4fca-44ce-9635-070318ea0575/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "697ae673-4fca-44ce-9635-070318ea0575",
    "variables": {
        "category": "onepiece",
        "card_type": "all",
        "query": "",
        "sort": "popular",
        "page": 1,
        "per_page": 10,
        "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="697ae673-4fca-44ce-9635-070318ea0575") — the "list_trading_cards" function, which lists One Piece and Pokémon trading cards from https://snkrdunk.com, with server-side card-code/name search, browsing filters, sorting, pagination, and USD or JPY prices..

It takes category (str), card_type (str), query (str), sort (str), page (int), per_page (int), currency (str). Return the result as structured JSON.