Marketplace
No threads yet
Live

search_flashscore_entities

flashscore.com

Full-text search across teams, players, and tournaments on https://flashscore.com for any sport. Returns matching entity metadata and reusable Flashscore IDs, with an optional sport filter.

Parameters2
Runs13
Updated10d ago
Operational13 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_flashscore_entities?

Full-text search across teams, players, and tournaments on https://flashscore.com for any sport. Returns matching entity metadata and reusable Flashscore IDs, with an optional sport filter. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass query, sport and get the result back without maintaining a scraper.

Response

{
  "query": "<string>",
  "source": "<string>",
  "entities": [
    {}
  ],
  "total_count": 0,
  "sport_filter": "<string>",
  "returned_count": 0
}

Call it

curl --location 'https://us-prod.notte.cc/functions/dc51d9b9-63ef-4737-9634-95a83efbb9b1/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "dc51d9b9-63ef-4737-9634-95a83efbb9b1",
    "variables": {
        "query": "arsenal",
        "sport": "all"
    }
}'

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="dc51d9b9-63ef-4737-9634-95a83efbb9b1") — the "search_flashscore_entities" function, which full-text search across teams, players, and tournaments on https://flashscore.com for any sport. Returns matching entity metadata and reusable Flashscore IDs, with an optional sport filter..

It takes query (str), sport (str). Return the result as structured JSON.