search_listings
comc.comSearches and browses sports card listings from https://www.comc.com, returning up to 100 results per page sorted by Highest SRP with card, price, availability, grading, and auction details. Supports keyword, category, grading-company, listing-type, and page filters.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is search_listings?
Searches and browses sports card listings from https://www.comc.com, returning up to 100 results per page sorted by Highest SRP with card, price, availability, grading, and auction details. Supports keyword, category, grading-company, listing-type, and page filters. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass query, page, category, grading_company, listing_type and get the result back without maintaining a scraper.
Response
{
"page": 0,
"sort": "<string>",
"source": "<string>",
"listings": [
{
"price": 0,
"title": "<string>",
"currency": "<string>",
"position": 0,
"image_url": "<string>",
"price_text": "<string>",
"description": "<string>",
"listing_url": "<string>",
"listing_type": "<string>",
"available_listings": 0
}
],
"result_end": 0,
"total_pages": 0,
"result_start": 0,
"items_on_page": 0,
"total_results": 0,
"applied_filters": {}
}Call it
curl --location 'https://us-prod.notte.cc/functions/40207f63-95b7-4c8d-9501-b81112720dbd/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "40207f63-95b7-4c8d-9501-b81112720dbd",
"variables": {
"query": "",
"page": 1,
"category": "",
"grading_company": "",
"listing_type": ""
}
}'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="40207f63-95b7-4c8d-9501-b81112720dbd") — the "search_listings" function, which searches and browses sports card listings from https://www.comc.com, returning up to 100 results per page sorted by Highest SRP with card, price, availability, grading, and auction details. Supports keyword, category, grading-company, listing-type, and page filters.. It takes query (str), page (int), category (str), grading_company (str), listing_type (str). Return the result as structured JSON.