Marketplace
No threads yet
Live

search_cards

footcards.eu

Searches https://footcards.eu for football trading cards and stickers by keyword. Returns paginated listings with current prices, quantities, availability, and source paths, with relevance, price, name, and date sorting.

Parameters5
Runs11
Updated10d ago
Operational11 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 search_cards?

Searches https://footcards.eu for football trading cards and stickers by keyword. Returns paginated listings with current prices, quantities, availability, and source paths, with relevance, price, name, and date sorting. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass keyword, page, items_per_page, sort_by, sort_order and get the result back without maintaining a scraper.

Response

{
  "page": 0,
  "keyword": "<string>",
  "sort_by": "<string>",
  "listings": [
    {
      "url": "<string>",
      "price": 0,
      "title": "<string>",
      "currency": "<string>",
      "discount": 0,
      "in_stock": true,
      "quantity": 0,
      "card_path": "<string>",
      "image_path": "<string>",
      "list_price": 0,
      "product_id": "<string>",
      "description": "<string>",
      "product_code": "<string>",
      "availability_status": "<string>"
    }
  ],
  "sort_order": "<string>",
  "total_items": 0,
  "total_pages": 0,
  "items_per_page": 0,
  "returned_items": 0
}

Call it

curl --location 'https://us-prod.notte.cc/functions/6aab332a-92dd-4a7c-856d-97a2d98814a0/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "6aab332a-92dd-4a7c-856d-97a2d98814a0",
    "variables": {
        "keyword": "messi",
        "page": 1,
        "items_per_page": 20,
        "sort_by": "relevance",
        "sort_order": "desc"
    }
}'

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="6aab332a-92dd-4a7c-856d-97a2d98814a0") — the "search_cards" function, which searches https://footcards.eu for football trading cards and stickers by keyword. Returns paginated listings with current prices, quantities, availability, and source paths, with relevance, price, name, and date sorting..

It takes keyword (str), page (int), items_per_page (int), sort_by (str), sort_order (str). Return the result as structured JSON.