Marketplace
No threads yet
Live

list_team_results

flashscore.com

Returns 40-item pages of past team match results from https://flashscore.com with dates, competitions, participants, final scores, status, and source metadata.

Parameters3
Runs6
Updated3d ago
Operational6 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 list_team_results?

Returns 40-item pages of past team match results from https://flashscore.com with dates, competitions, participants, final scores, status, and source metadata. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass team_id, team_slug, page and get the result back without maintaining a scraper.

Response

{
  "page": 0,
  "source": "<string>",
  "results": [
    {}
  ],
  "team_id": "<string>",
  "has_more": true,
  "page_size": 0,
  "team_slug": "<string>",
  "returned_count": 0,
  "input_not_found": true
}

Call it

curl --location 'https://us-prod.notte.cc/functions/ccbeb9ef-6830-4942-8799-e5c86279f3dc/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "ccbeb9ef-6830-4942-8799-e5c86279f3dc",
    "variables": {
        "team_id": "hA1Zm19f",
        "team_slug": "arsenal",
        "page": 1
    }
}'

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="ccbeb9ef-6830-4942-8799-e5c86279f3dc") — the "list_team_results" function, which returns 40-item pages of past team match results from https://flashscore.com with dates, competitions, participants, final scores, status, and source metadata..

It takes team_id (str), team_slug (str), page (int). Return the result as structured JSON.