Marketplace
No threads yet
Live

search_trading_cards

tcdb.com

Searches individual trading cards through the advanced search on https://tcdb.com and returns 100 parsed card records per page. Results include TCDB IDs and links, year, set, manufacturer, card number, player, and parallel or variation details.

Parameters5
Runs12
Updated10d ago
Operational12 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 search_trading_cards?

Searches individual trading cards through the advanced search on https://tcdb.com and returns 100 parsed card records per page. Results include TCDB IDs and links, year, set, manufacturer, card number, player, and parallel or variation details. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass query, set_name, sport, year, page and get the result back without maintaining a scraper.

Response

{
  "page": 0,
  "year": "<string>",
  "query": "<string>",
  "sport": "<string>",
  "results": [
    {
      "year": "<string>",
      "set_id": 0,
      "card_id": 0,
      "set_name": "<string>",
      "tcdb_url": "<string>",
      "card_number": "<string>",
      "player_name": "<string>",
      "manufacturer": "<string>",
      "parallel_variation_name": "<string>"
    }
  ],
  "set_name": "<string>",
  "total_pages": 0,
  "has_next_page": true,
  "total_results": 0,
  "results_per_page": 0,
  "has_previous_page": true
}

Call it

curl --location 'https://us-prod.notte.cc/functions/c5aecce7-2a85-467b-92c7-91fa1db30163/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "c5aecce7-2a85-467b-92c7-91fa1db30163",
    "variables": {
        "query": "Shohei Ohtani",
        "set_name": "Topps Chrome",
        "sport": "Baseball",
        "year": "",
        "page": 1
    }
}'

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="c5aecce7-2a85-467b-92c7-91fa1db30163") — the "search_trading_cards" function, which searches individual trading cards through the advanced search on https://tcdb.com and returns 100 parsed card records per page. Results include TCDB IDs and links, year, set, manufacturer, card number, player, and parallel or variation details..

It takes query (str), set_name (str), sport (str), year (str), page (int). Return the result as structured JSON.