Marketplace
No threads yet
Live

get_listing_details

marketplace.beckett.com

Gets every dealer listing for a specific card item from https://marketplace.beckett.com. Returns each seller's price, condition, quantity, dealer rating, shipping information, and listing links.

Parameters1
Runs9
Updated10d ago
Operational9 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_listing_details?

Gets every dealer listing for a specific card item from https://marketplace.beckett.com. Returns each seller's price, condition, quantity, dealer rating, shipping information, and listing links. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass item_id and get the result back without maintaining a scraper.

Response

{
  "team": "<string>",
  "title": "<string>",
  "item_id": "<string>",
  "sellers": [
    {
      "team": "<string>",
      "year": 0,
      "price": 0,
      "sport": "<string>",
      "title": "<string>",
      "player": "<string>",
      "item_id": "<string>",
      "currency": "<string>",
      "item_url": "<string>",
      "quantity": 0,
      "condition": "<string>",
      "image_url": "<string>",
      "is_graded": true,
      "print_run": "<string>",
      "attributes": [
        "<string>"
      ],
      "dealer_url": "<string>",
      "listing_id": "<string>",
      "dealer_name": "<string>",
      "power_dealer": true,
      "dealer_rating": 0,
      "free_shipping": "<string>",
      "grade_company": "<string>",
      "add_to_cart_url": "<string>",
      "shipping_methods": [
        "<string>"
      ],
      "availability_note": "<string>",
      "dealer_feedback_url": "<string>",
      "condition_descriptions": [
        "<string>"
      ]
    }
  ],
  "seller_count": 0
}

Call it

curl --location 'https://us-prod.notte.cc/functions/89d00256-a2bc-43c7-94e8-fd9762504345/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "89d00256-a2bc-43c7-94e8-fd9762504345",
    "variables": {
        "item_id": "3148205"
    }
}'

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="89d00256-a2bc-43c7-94e8-fd9762504345") — the "get_listing_details" function, which gets every dealer listing for a specific card item from https://marketplace.beckett.com. Returns each seller's price, condition, quantity, dealer rating, shipping information, and listing links..

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