Live
search_cards
cardladder.comSearches the trading-card database on https://cardladder.com and returns relevance-ranked cards with identifiers, current values, market metrics, and price trends.
Parameters5
Runs11
Updated10d ago
Failing11 runs · 81.8% 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 search_cards?
Searches the trading-card database on https://cardladder.com and returns relevance-ranked cards with identifiers, current values, market metrics, and price trends. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass query, limit, page, sort, direction and get the result back without maintaining a scraper.
Response
{
"page": 0,
"sort": "<string>",
"cards": [
{}
],
"limit": 0,
"query": "<string>",
"total_hits": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/de0e18f3-053b-45b7-964c-0d7af4c4dddf/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "de0e18f3-053b-45b7-964c-0d7af4c4dddf",
"variables": {
"query": "Michael Jordan",
"limit": 20,
"page": 1,
"sort": "score",
"direction": "desc"
}
}'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="de0e18f3-053b-45b7-964c-0d7af4c4dddf") — the "search_cards" function, which searches the trading-card database on https://cardladder.com and returns relevance-ranked cards with identifiers, current values, market metrics, and price trends.. It takes query (str), limit (int), page (int), sort (str), direction (str). Return the result as structured JSON.