> For the complete documentation index, see [llms.txt](https://docs.sportmonks.com/v3/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.sportmonks.com/v3/sportmonks-ai-docs/mcp-server-beta/tools/standings-seasons-and-top-scorers.md).

# Standings, Seasons & Top Scorers

Get live league tables, browse historical seasons for any league, and fetch topscorer leaderboards.

### Tools

| Tool                   | Description                                       |
| ---------------------- | ------------------------------------------------- |
| `get_standings`        | Live league table for a league ID                 |
| `get_historic_seasons` | All seasons for a league, sorted newest first     |
| `get_topscorers`       | Goals, assists, or cards leaderboard for a season |

### get\_standings

Returns standings for a league. The tool first attempts to fetch live standings (which reflect the current matchday in real time). If live standings are unavailable - for example during cup knockout phases, between matchdays, or in the off-season - it falls back to the most recent season standings automatically.

**Parameters**

| Parameter | Type    | Required | Description          |
| --------- | ------- | -------- | -------------------- |
| `id`      | integer | Yes      | Sportmonks league ID |

**Each row returns:** position, team name and ID, played, won, drawn, lost, goal difference, points.

### get\_historic\_seasons

Returns all seasons for a league sorted with the most recent first. Useful for finding a `season_id` to pass to `get_topscorers` or `get_squad`.

**Parameters**

| Parameter   | Type    | Required | Description          |
| ----------- | ------- | -------- | -------------------- |
| `league_id` | integer | Yes      | Sportmonks league ID |

### get\_topscorers

**Parameters**

| Parameter   | Type    | Required | Description                                         |
| ----------- | ------- | -------- | --------------------------------------------------- |
| `season_id` | integer | Yes      | Sportmonks season ID                                |
| `type`      | string  | Yes      | `goals`, `assists`, or `cards`                      |
| `limit`     | integer | No       | Number of results to return. Defaults to 10, max 25 |

### Example prompts

* *Show me the current Premier League table*
* *What seasons has La Liga had? Give me the most recent ones*
* *Who are the top 10 scorers in Serie A this season?*
* *Show me the top 5 assist providers in the Bundesliga*
* *Get the top 25 yellow card recipients in Ligue 1 this season*


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.sportmonks.com/v3/sportmonks-ai-docs/mcp-server-beta/tools/standings-seasons-and-top-scorers.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
