search_football_cards
todocoleccion.netSearches football-card listings on https://www.todocoleccion.net and returns 30 results per page with listed prices, listing details, and current-page average, minimum, and maximum price statistics.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is search_football_cards?
Searches football-card listings on https://www.todocoleccion.net and returns 30 results per page with listed prices, listing details, and current-page average, minimum, and maximum price statistics. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass query, page and get the result back without maintaining a scraper.
Response
{
"page": 0,
"query": "<string>",
"listings": [
{
"url": "<string>",
"title": "<string>",
"details": {},
"category": "<string>",
"currency": "<string>",
"image_url": "<string>",
"listing_id": "<string>",
"listed_price": 0,
"listed_price_text": "<string>"
}
],
"result_count": 0,
"total_results": 0,
"items_per_page": 0,
"price_statistics": {
"currency": "<string>",
"average_price": 0,
"maximum_price": 0,
"minimum_price": 0,
"priced_listing_count": 0
}
}Call it
curl --location 'https://us-prod.notte.cc/functions/5596868e-1c23-439e-b19d-021be1aea541/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "5596868e-1c23-439e-b19d-021be1aea541",
"variables": {
"query": "cromos futbol",
"page": 1
}
}'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="5596868e-1c23-439e-b19d-021be1aea541") — the "search_football_cards" function, which searches football-card listings on https://www.todocoleccion.net and returns 30 results per page with listed prices, listing details, and current-page average, minimum, and maximum price statistics.. It takes query (str), page (int). Return the result as structured JSON.