Marketplace
No threads yet
Live

get_league_standings

besoccer.com

Returns the full season league table from https://www.besoccer.com with team identity, position, record, goals, goal difference, points, and recent form.

Parameters2
Runs8
Updated3d ago
Operational8 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 the full season league table from https://www.besoccer.com with team identity, position, record, goals, goal difference, points, and recent form. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass competition_id, season and get the result back without maintaining a scraper.

Response

{
  "scope": "<string>",
  "season": "<string>",
  "matchday": "<string>",
  "standings": [
    {
      "wins": 0,
      "draws": 0,
      "losses": 0,
      "points": 0,
      "position": 0,
      "team_url": "<string>",
      "goals_for": 0,
      "team_name": "<string>",
      "team_slug": "<string>",
      "recent_form": [
        {
          "result": "<string>",
          "source_label": "<string>"
        }
      ],
      "goals_against": 0,
      "team_logo_url": "<string>",
      "matches_played": 0,
      "position_color": "<string>",
      "source_team_id": "<string>",
      "goal_difference": 0
    }
  ],
  "source_url": "<string>",
  "team_count": 0,
  "season_code": "<string>",
  "competition_id": "<string>",
  "matchday_number": 0,
  "competition_name": "<string>"
}

Call it

curl --location 'https://us-prod.notte.cc/functions/7b66a247-ec33-4d57-9af4-2e6ce653a0d6/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "7b66a247-ec33-4d57-9af4-2e6ce653a0d6",
    "variables": {
        "competition_id": "premier_league",
        "season": "current"
    }
}'

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="7b66a247-ec33-4d57-9af4-2e6ce653a0d6") — the "get_league_standings" function, which returns the full season league table from https://www.besoccer.com with team identity, position, record, goals, goal difference, points, and recent form..

It takes competition_id (str), season (str). Return the result as structured JSON.