Marketplace
No threads yet
Live

list_bargain_cards

cardmarket.com

Returns the current best-value trading cards for a selected game from https://cardmarket.com with rank, expansion, live price, image, product ID, and direct links.

Parameters1
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_bargain_cards?

Returns the current best-value trading cards for a selected game from https://cardmarket.com with rank, expansion, live price, image, product ID, and direct links. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass game and get the result back without maintaining a scraper.

Response

{
  "game": "<string>",
  "cards": [
    {
      "rank": 0,
      "currency": "<string>",
      "card_name": "<string>",
      "card_slug": "<string>",
      "image_url": "<string>",
      "product_id": 0,
      "product_url": "<string>",
      "actual_price": "<string>",
      "expansion_url": "<string>",
      "expansion_name": "<string>",
      "expansion_slug": "<string>",
      "actual_price_amount": 0
    }
  ],
  "source_url": "<string>",
  "record_count": 0
}

Call it

curl --location 'https://us-prod.notte.cc/functions/125676cb-1417-4f20-a391-77ab99fa120c/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "125676cb-1417-4f20-a391-77ab99fa120c",
    "variables": {
        "game": "Magic"
    }
}'

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="125676cb-1417-4f20-a391-77ab99fa120c") — the "list_bargain_cards" function, which returns the current best-value trading cards for a selected game from https://cardmarket.com with rank, expansion, live price, image, product ID, and direct links..

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