Marketplace
No threads yet
Live

get_league_standings

flashscore.com

Returns ranked league tables with complete team records, goals, points, qualification and recent form for a Flashscore match from https://flashscore.com.

Parameters1
Runs9
Updated3d ago
Operational9 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 get_league_standings?

Returns ranked league tables with complete team records, goals, points, qualification and recent form for a Flashscore match from https://flashscore.com. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass match_id and get the result back without maintaining a scraper.

Response

{
  "groups": [
    {
      "name": "<string>",
      "teams": [
        {
          "name": "<string>",
          "rank": 0,
          "slug": "<string>",
          "wins": 0,
          "draws": 0,
          "goals": "<string>",
          "losses": 0,
          "points": 0,
          "team_id": "<string>",
          "logo_url": "<string>",
          "team_url": "<string>",
          "goals_for": 0,
          "logo_path": "<string>",
          "recent_form": [
            {
              "result": "<string>",
              "match_id": "<string>",
              "away_team": "<string>",
              "home_team": "<string>",
              "away_score": 0,
              "home_score": 0,
              "result_code": "<string>",
              "status_code": 0,
              "away_team_id": "<string>",
              "home_team_id": "<string>",
              "source_fields": {},
              "start_timestamp": 0,
              "away_penalty_score": 0,
              "home_penalty_score": 0
            }
          ],
          "goals_against": 0,
          "qualification": {
            "code": "<string>",
            "color": "<string>",
            "label": "<string>"
          },
          "source_fields": {},
          "matches_played": 0,
          "goal_difference": 0,
          "points_per_match": 0,
          "recent_form_summary": [
            "<string>"
          ]
        }
      ],
      "group_id": 0
    }
  ],
  "source": "<string>",
  "match_id": "<string>",
  "table_type": "<string>",
  "table_title": "<string>",
  "tie_break_note": "<string>",
  "input_not_found": true
}

Call it

curl --location 'https://us-prod.notte.cc/functions/e90ff896-daad-4fbe-b982-649ff6a3a9ac/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "e90ff896-daad-4fbe-b982-649ff6a3a9ac",
    "variables": {
        "match_id": "rZvN0REF"
    }
}'

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="e90ff896-daad-4fbe-b982-649ff6a3a9ac") — the "get_league_standings" function, which returns ranked league tables with complete team records, goals, points, qualification and recent form for a Flashscore match from https://flashscore.com..

It takes match_id (str). Return the result as structured JSON.