get_product_seller_listings
tcgplayer.comRetrieves seller listings for a specific trading card product from https://www.tcgplayer.com with offset pagination. Returns listing-level pricing, shipping, condition, seller profile fields, and aggregation counts, with optional condition filtering and total-price sorting.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_product_seller_listings?
Retrieves seller listings for a specific trading card product from https://www.tcgplayer.com with offset pagination. Returns listing-level pricing, shipping, condition, seller profile fields, and aggregation counts, with optional condition filtering and total-price sorting. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass product_id, condition, sort_order, offset, limit, shipping_country and get the result back without maintaining a scraper.
Response
{
"count": 0,
"limit": 0,
"offset": 0,
"source": "<string>",
"sort_by": "<string>",
"has_more": true,
"listings": [
{}
],
"condition": "<string>",
"product_id": 0,
"sort_order": "<string>",
"aggregations": {},
"total_results": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/4a0d728e-cad3-4217-9674-a71d2e0c3721/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "4a0d728e-cad3-4217-9674-a71d2e0c3721",
"variables": {
"product_id": 219059,
"condition": "all",
"sort_order": "asc",
"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.
Use the Anything API MCP server (https://anything.notte.cc/mcp). Call run(function_id="4a0d728e-cad3-4217-9674-a71d2e0c3721") — the "get_product_seller_listings" function, which retrieves seller listings for a specific trading card product from https://www.tcgplayer.com with offset pagination. Returns listing-level pricing, shipping, condition, seller profile fields, and aggregation counts, with optional condition filtering and total-price sorting.. It takes product_id (int), condition (str), sort_order (str), offset (int), limit (int), shipping_country (str). Return the result as structured JSON.