Standings
Group-stage standings with points, goal difference, and rank for every team.
GET/api/public/v1/standings
Query parameters
| Parameter | Type | Description |
|---|---|---|
| competition_id optional | string | Competition public ID to filter standings. |
| group optional | string | Group name filter (e.g. A, Group A). |
http
GET /api/public/v1/standings?group=A Authorization: Bearer sk_live_xxxxxxxxxxxxx # Filter by competition GET /api/public/v1/standings?competition_id=season_UCUznkuK&group=A
json
{
"data": [
{
"rank": 1,
"group": "Group A",
"team": { "id": "team_paZAJNLY", "name": "Mexico", "code": "MEX" },
"played": 3,
"won": 2,
"drawn": 1,
"lost": 0,
"goals_for": 5,
"goals_against": 1,
"goal_difference": 4,
"points": 7
}
]
}Response fields
rankPosition within the group (1–4)
playedTotal matches played
won / drawn / lostMatch outcome counts
goals_for / goals_againstGoals scored and conceded
goal_differencegoals_for − goals_against
points3 per win, 1 per draw
ℹ️
Standings are cached for 60 seconds and update automatically as match results are synced.
