search_collectr_catalog
app.getcollectr.comSearches https://app.getcollectr.com for trading cards and sealed products by name. Returns paginated matching catalog records with product, category, set, card, rarity, subtype, image, and current pricing metadata.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is search_collectr_catalog?
Searches https://app.getcollectr.com for trading cards and sealed products by name. Returns paginated matching catalog records with product, category, set, card, rarity, subtype, image, and current pricing metadata. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass query, offset, limit and get the result back without maintaining a scraper.
Response
{
"count": 0,
"limit": 0,
"query": "<string>",
"offset": 0,
"results": [
{}
],
"has_more": true
}Call it
curl --location 'https://us-prod.notte.cc/functions/61b647a8-9006-4079-92e8-bc909ff6cbea/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "61b647a8-9006-4079-92e8-bc909ff6cbea",
"variables": {
"query": "Charizard",
"offset": 0,
"limit": 10
}
}'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="61b647a8-9006-4079-92e8-bc909ff6cbea") — the "search_collectr_catalog" function, which searches https://app.getcollectr.com for trading cards and sealed products by name. Returns paginated matching catalog records with product, category, set, card, rarity, subtype, image, and current pricing metadata.. It takes query (str), offset (int), limit (int). Return the result as structured JSON.