Marketplace
No threads yet
Live

search_catalog

tcgplayer.com

Searches the full trading-card and sealed-product catalog on https://www.tcgplayer.com. Returns market prices, listing counts, and up to three current seller listings per product with offset pagination.

Parameters4
Runs11
Updated10d ago
Operational11 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_catalog?

Searches the full trading-card and sealed-product catalog on https://www.tcgplayer.com. Returns market prices, listing counts, and up to three current seller listings per product with offset pagination. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass query, offset, limit, shipping_country and get the result back without maintaining a scraper.

Response

{
  "count": 0,
  "limit": 0,
  "query": "<string>",
  "offset": 0,
  "source": "<string>",
  "has_more": true,
  "products": [
    {}
  ],
  "total_results": 0
}

Call it

curl --location 'https://us-prod.notte.cc/functions/b4143e6c-7bce-495a-99b1-b4c4180c2e4d/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "b4143e6c-7bce-495a-99b1-b4c4180c2e4d",
    "variables": {
        "query": "Charizard",
        "offset": 0,
        "limit": 10,
        "shipping_country": "US"
    }
}'

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="b4143e6c-7bce-495a-99b1-b4c4180c2e4d") — the "search_catalog" function, which searches the full trading-card and sealed-product catalog on https://www.tcgplayer.com. Returns market prices, listing counts, and up to three current seller listings per product with offset pagination..

It takes query (str), offset (int), limit (int), shipping_country (str). Return the result as structured JSON.