get_collectr_product_details
app.getcollectr.comRetrieves trimmed batch product details from https://app.getcollectr.com in input order, including core prices and resolved grading labels while excluding price history. Supports grade and grading-company filters and returns per-ID errors without failing the batch.
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?
Retrieves trimmed batch product details from https://app.getcollectr.com in input order, including core prices and resolved grading labels while excluding price history. Supports grade and grading-company filters and returns per-ID errors without failing the batch. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass product_ids, grade_id, grading_company and get the result back without maintaining a scraper.
Response
{
"count": 0,
"results": [
{}
],
"grade_id": "<string>",
"product_ids": [
"<string>"
],
"grading_company": "<string>"
}Call it
curl --location 'https://us-prod.notte.cc/functions/8fea15e6-8ac3-4d7d-96f9-0dcc82bec5b9/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "8fea15e6-8ac3-4d7d-96f9-0dcc82bec5b9",
"variables": {
"product_ids": "684462,517045",
"grade_id": "",
"grading_company": ""
}
}'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="8fea15e6-8ac3-4d7d-96f9-0dcc82bec5b9") — the "get_collectr_product_details" function, which retrieves trimmed batch product details from https://app.getcollectr.com in input order, including core prices and resolved grading labels while excluding price history. Supports grade and grading-company filters and returns per-ID errors without failing the batch.. It takes product_ids (str), grade_id (str), grading_company (str). Return the result as structured JSON.