Marketplace
No threads yet
Live

get_graded_card_details

beckett.com

Returns BGS graded-card details, sub-grades, label, grading date, image, and population data from https://beckett.com for a certification number.

Parameters1
Runs6
Updated3d ago
Operational6 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 get_graded_card_details?

Returns BGS graded-card details, sub-grades, label, grading date, image, and population data from https://beckett.com for a certification number. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass certification_number and get the result back without maintaining a scraper.

Response

{
  "fg05": 0,
  "fg10": 0,
  "fg15": 0,
  "fg20": 0,
  "fg25": 0,
  "fg30": 0,
  "fg35": 0,
  "fg40": 0,
  "fg45": 0,
  "fg50": 0,
  "fg55": 0,
  "fg60": 0,
  "fg65": 0,
  "fg70": 0,
  "fg75": 0,
  "fg80": 0,
  "fg85": 0,
  "fg90": 0,
  "fg95": 0,
  "fg100": 0,
  "label": "<string>",
  "fgB100": 0,
  "item_id": "<string>",
  "message": "<string>",
  "card_key": "<string>",
  "set_name": "<string>",
  "pop_higher": 0,
  "pop_report": 0,
  "sport_name": "<string>",
  "date_graded": "<string>",
  "edges_grade": "<string>",
  "final_grade": "<string>",
  "player_name": "<string>",
  "center_grade": "<string>",
  "corners_grade": "<string>",
  "price_item_id": "<string>",
  "surface_grade": "<string>",
  "autograph_grade": "<string>",
  "front_image_url": "<string>",
  "grade_pop_report": 0,
  "non_bccg_card_total": 0
}

Call it

curl --location 'https://us-prod.notte.cc/functions/a39d39e6-0f18-4e7f-afe3-aef7b4f357bf/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "a39d39e6-0f18-4e7f-afe3-aef7b4f357bf",
    "variables": {
        "certification_number": "0017346971"
    }
}'

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="a39d39e6-0f18-4e7f-afe3-aef7b4f357bf") — the "get_graded_card_details" function, which returns BGS graded-card details, sub-grades, label, grading date, image, and population data from https://beckett.com for a certification number..

It takes certification_number (str). Return the result as structured JSON.