get_card_details
footcards.euGets a football card or sticker from https://footcards.eu by card_path. Returns product details and features plus all current seller offers, ratings, sales counts, conditions, prices, and quantities.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_card_details?
Gets a football card or sticker from https://footcards.eu by card_path. Returns product details and features plus all current seller offers, ratings, sales counts, conditions, prices, and quantities. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass card_path and get the result back without maintaining a scraper.
Response
{
"url": "<string>",
"title": "<string>",
"images": [
"<string>"
],
"currency": "<string>",
"features": [
{
"name": "<string>",
"group": "<string>",
"value": "<string>"
}
],
"in_stock": true,
"card_path": "<string>",
"categories": [
"<string>"
],
"main_price": 0,
"product_id": "<string>",
"description": "<string>",
"product_code": "<string>",
"seller_offers": [
{
"price": 0,
"currency": "<string>",
"in_stock": true,
"quantity": 0,
"condition": "<string>",
"offer_path": "<string>",
"description": "<string>",
"sales_count": 0,
"vendor_name": "<string>",
"vendor_path": "<string>",
"vendor_rating": "<string>",
"offer_product_id": "<string>",
"vendor_country_code": "<string>",
"vendor_available_items": 0
}
],
"quantity_available": 0,
"seller_offer_count": 0,
"availability_status": "<string>"
}Call it
curl --location 'https://us-prod.notte.cc/functions/d89020a0-9a9c-42ce-b5b4-2f440bb54cf1/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "d89020a0-9a9c-42ce-b5b4-2f440bb54cf1",
"variables": {
"card_path": "stickers/world-cup/qatar-2022/arg20-lionel-messi/"
}
}'Ask an agent
Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.
Use the Anything API MCP server (https://anything.notte.cc/mcp). Call run(function_id="d89020a0-9a9c-42ce-b5b4-2f440bb54cf1") — the "get_card_details" function, which gets a football card or sticker from https://footcards.eu by card_path. Returns product details and features plus all current seller offers, ratings, sales counts, conditions, prices, and quantities.. It takes card_path (str). Return the result as structured JSON.