Marketplace
No threads yet
Live

lookup_certificate_batch

cardladder.com

Batch-looks up graded trading cards on https://cardladder.com by certificate number and grading company. Returns all matched card records (including pricing, newest sale, and recent sales) plus per-certificate errors without failing the whole batch.

Parameters4
Runs8
Updated8d ago
Operational8 runs · 100% 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 lookup_certificate_batch?

Batch-looks up graded trading cards on https://cardladder.com by certificate number and grading company. Returns all matched card records (including pricing, newest sale, and recent sales) plus per-certificate errors without failing the whole batch. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass cert_requests, recent_sales_limit, max_workers, timeout_seconds and get the result back without maintaining a scraper.

Response

{
  "cards": [
    {}
  ],
  "errors": [
    {
      "error": "<string>",
      "grading_company": "<string>",
      "certificate_number": "<string>"
    }
  ],
  "total_cards": 0,
  "requested_count": 0,
  "failed_cert_count": 0,
  "recent_sales_limit": 0,
  "successful_cert_count": 0
}

Call it

curl --location 'https://us-prod.notte.cc/functions/73a05752-61b3-4a33-8ded-72d57543d6f8/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "73a05752-61b3-4a33-8ded-72d57543d6f8",
    "variables": {
        "cert_requests": [{"grading_company": "sgc", "certificate_number": "5987871"}],
        "recent_sales_limit": 5,
        "max_workers": 20,
        "timeout_seconds": 30
    }
}'

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="73a05752-61b3-4a33-8ded-72d57543d6f8") — the "lookup_certificate_batch" function, which batch-looks up graded trading cards on https://cardladder.com by certificate number and grading company. Returns all matched card records (including pricing, newest sale, and recent sales) plus per-certificate errors without failing the whole batch..

It takes cert_requests (list[dict[str, Any]]), recent_sales_limit (int), max_workers (int), timeout_seconds (int). Return the result as structured JSON.