Marketplace
No threads yet
Live

list_booster_box_offers

cardmarket.com

Returns paginated sealed Booster Box seller offers from https://cardmarket.com with price, quantity, seller details, condition, language, and country filtering.

Parameters5
Runs10
Updated3d ago
Degraded10 runs · 80% 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 list_booster_box_offers?

Returns paginated sealed Booster Box seller offers from https://cardmarket.com with price, quantity, seller details, condition, language, and country filtering. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass game, product_slug, page, language, seller_country and get the result back without maintaining a scraper.

Response

{
  "game": "<string>",
  "page": 0,
  "offers": [
    {}
  ],
  "next_page": 0,
  "page_size": 0,
  "product_id": 0,
  "source_url": "<string>",
  "product_name": "<string>",
  "product_slug": "<string>",
  "result_count": 0,
  "has_next_page": true,
  "previous_page": 0,
  "applied_filters": {},
  "product_category": "<string>",
  "max_browsable_pages": 0,
  "total_available_items": 0
}

Call it

curl --location 'https://us-prod.notte.cc/functions/92e16f2e-df13-4e0f-85ae-25dd564b18b3/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "92e16f2e-df13-4e0f-85ae-25dd564b18b3",
    "variables": {
        "game": "Magic",
        "product_slug": "Magic-The-Gathering-FINAL-FANTASY-Play-Booster-Box",
        "page": 1,
        "language": "",
        "seller_country": ""
    }
}'

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="92e16f2e-df13-4e0f-85ae-25dd564b18b3") — the "list_booster_box_offers" function, which returns paginated sealed Booster Box seller offers from https://cardmarket.com with price, quantity, seller details, condition, language, and country filtering..

It takes game (str), product_slug (str), page (int), language (str), seller_country (str). Return the result as structured JSON.