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.
GET Standings by Season ID and Round ID
GET Standings by Season ID and Round IDhttps://soccer.sportmonks.com/api/v2.0/standings/season/{season_ID}/round/{round_ID}Parameters
Include options
Example response
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"
},Last updated
Was this helpful?