GET Standings by Season ID and Round ID
With this endpoint you are able to retreive the standings for a given round. It will calculate the games played up untill the given round id and provide a standings result for it.
Last updated
With this endpoint you are able to retreive the standings for a given round. It will calculate the games played up untill the given round id and provide a standings result for it.
Last updated
GET
Standings by Season ID and Round IDhttps://soccer.sportmonks.com/api/v2.0/standings/season/{season_ID}/round/{round_ID}
Endpoint details | |
Authorization | API Key |
Pagination | NO |
Allowed nested includes | 0 |
No parameters available for this endpoint.
No includes available for this endpoint.
https://soccer.sportmonks.com/api/v2.0/standings/season/17141/round/194968?api_token={API_TOKEN}
"data": [
{
"position": 1,
"team_id": 53,
"team_name": "Celtic",
"short_code": "CEL",
"team_logo": "https://cdn.sportmonks.com/images/soccer/teams/21/53.png",
"overall": {
"games_played": 1,
"won": 1,
"draw": 0,
"lost": 0,
"goals_scored": 5,
"goals_against": 1,
"goal_diff": 4
},
"home": {
"games_played": 1,
"won": 1,
"draw": 0,
"lost": 0,
"goals_scored": 5,
"goals_against": 1
},
"away": {
"games_played": 0,
"won": 0,
"draw": 0,
"lost": 0,
"goals_scored": 0,
"goals_against": 0
},
"points": 3,
"description": "Championship Round",
"recent_form": "W"
},
{
"position": 2,
"team_id": 66,
"team_name": "Hibernian",
"short_code": "HIB",
"team_logo": "https://cdn.sportmonks.com/images/soccer/teams/2/66.png",
"overall": {
"games_played": 1,
"won": 1,
"draw": 0,
"lost": 0,
"goals_scored": 2,
"goals_against": 1,
"goal_diff": 1
},
"home": {
"games_played": 1,
"won": 1,
"draw": 0,
"lost": 0,
"goals_scored": 2,
"goals_against": 1
},
"away": {
"games_played": 0,
"won": 0,
"draw": 0,
"lost": 0,
"goals_scored": 0,
"goals_against": 0
},
"points": 3,
"description": "Championship Round",
"recent_form": "W"
},
{
"position": 3,
"team_id": 62,
"team_name": "Rangers",
"short_code": "RAN",
"team_logo": "https://cdn.sportmonks.com/images/soccer/teams/30/62.png",
"overall": {
"games_played": 1,
"won": 1,
"draw": 0,
"lost": 0,
"goals_scored": 1,
"goals_against": 0,
"goal_diff": 1
},
"home": {
"games_played": 0,
"won": 0,
"draw": 0,
"lost": 0,
"goals_scored": 0,
"goals_against": 0
},
"away": {
"games_played": 1,
"won": 1,
"draw": 0,
"lost": 0,
"goals_scored": 1,
"goals_against": 0
},
"points": 3,
"description": "Championship Round",
"recent_form": "W"
},
Field | Description |
| The actual position in the rankings in the stage |
| The unique team id of the team in that position in the stage |
| The team name in that position in the stage |
| The unique id of the current round |
| The name of the round |
| The unique id of the group, in which the team participates in |
| The name of the group, in which the team participates in |
| The overall results of the team, i.e., the number of games, points and goals |
| The home results of the team, i.e., the number of games, points and goals |
| The away results of the team, i.e., the number of games, points and goals |
| The total points of the team and their goal difference |
| The standing rules of the place the team is in |
| The accumulated number of points the team has |
| The recent form of the team |
| Will be available in API 3.0: Indicates if the team moves up on down based on the last standings. |