Marketplace
No threads yet
Live

get_collectr_product_details_by_id

app.getcollectr.com

Retrieves full trading card or sealed product details by numeric product ID from https://app.getcollectr.com. Returns comprehensive market pricing, historical price trends, graded and ungraded subtype pricing, available variants, and resolved grading labels with optional grade and grading-company filters.

Parameters4
Runs17
Updated8d ago
Degraded17 runs · 70.5% succeeded
30 days agotoday

Playground

Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.

What is get_collectr_product_details_by_id?

Retrieves full trading card or sealed product details by numeric product ID from https://app.getcollectr.com. Returns comprehensive market pricing, historical price trends, graded and ungraded subtype pricing, available variants, and resolved grading labels with optional grade and grading-company filters. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass product_id, grade_id, grading_company, timeout_seconds and get the result back without maintaining a scraper.

Response

{
  "product": {},
  "grade_id": "<string>",
  "product_id": "<string>",
  "grading_company": "<string>"
}

Call it

curl --location 'https://us-prod.notte.cc/functions/e82fa5f4-8441-47cf-a14e-868c9259c3aa/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "e82fa5f4-8441-47cf-a14e-868c9259c3aa",
    "variables": {
        "product_id": 517045,
        "grade_id": "",
        "grading_company": "",
        "timeout_seconds": 45
    }
}'

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="e82fa5f4-8441-47cf-a14e-868c9259c3aa") — the "get_collectr_product_details_by_id" function, which retrieves full trading card or sealed product details by numeric product ID from https://app.getcollectr.com. Returns comprehensive market pricing, historical price trends, graded and ungraded subtype pricing, available variants, and resolved grading labels with optional grade and grading-company filters..

It takes product_id (int), grade_id (str), grading_company (str), timeout_seconds (int). Return the result as structured JSON.