search_trading_card_listings
marketplace.beckett.comSearches https://marketplace.beckett.com for trading card listings by keyword and page. Returns 50 unique card items with price and condition ranges, dealer details, seller counts, and item IDs for seller lookup.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is search_trading_card_listings?
Searches https://marketplace.beckett.com for trading card listings by keyword and page. Returns 50 unique card items with price and condition ranges, dealer details, seller counts, and item IDs for seller lookup. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass keyword, page and get the result back without maintaining a scraper.
Response
{
"page": 0,
"keyword": "<string>",
"results": [
{
"team": "<string>",
"title": "<string>",
"item_id": "<string>",
"currency": "<string>",
"item_url": "<string>",
"condition": "<string>",
"image_url": "<string>",
"is_graded": true,
"price_max": 0,
"price_min": 0,
"print_run": "<string>",
"attributes": [
"<string>"
],
"dealer_url": "<string>",
"listing_id": "<string>",
"dealer_name": "<string>",
"power_dealer": true,
"quantity_max": 0,
"quantity_min": 0,
"seller_count": 0,
"dealer_rating": 0,
"free_shipping": "<string>",
"add_to_cart_url": "<string>",
"availability_note": "<string>",
"dealer_feedback_url": "<string>",
"condition_descriptions": [
"<string>"
]
}
],
"per_page": 0,
"total_pages": 0,
"result_count": 0,
"total_unique_items": 0,
"total_dealer_listings": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/ba7045f0-fb91-448c-b03d-4728b61935f9/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "ba7045f0-fb91-448c-b03d-4728b61935f9",
"variables": {
"keyword": "Kobe Bryant",
"page": 1
}
}'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="ba7045f0-fb91-448c-b03d-4728b61935f9") — the "search_trading_card_listings" function, which searches https://marketplace.beckett.com for trading card listings by keyword and page. Returns 50 unique card items with price and condition ranges, dealer details, seller counts, and item IDs for seller lookup.. It takes keyword (str), page (int). Return the result as structured JSON.