pl_team_leaderboard
Get team stat leaderboards for any competition and season, ranked by Opta metrics like tackles won or possession percentage. Returns team metadata with stats for each row.
Instructions
Team stat leaderboard — sort by any Opta team metric. NOTE: season is a query param here, not a path segment. Each row: {teamMetadata, stats}.
Returns: {pagination, data:[{teamMetadata:{id, name}, stats:{…team Opta metrics}}]}
Example: 2025/26 teams by tackles won {"cid": 8, "season": 2025, "sort": "tackles_won:desc", "limit": 10}
Auth: none needed.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| cid | Yes | Competition id (8). Required — part of the URL path. | |
| sort | No | Sort metric:dir (e.g. tackles_won:desc, blocks:desc, possessionPercentage:desc). | wins:desc |
| limit | No | Page size. | |
| season | Yes | Season id (2025 = 2025/26) — a query param, not a path segment. |