GET Standings by Season and Date(time)
With this endpoint you are able to retrieve the standings at a given date(time). It will calculate the games played up untill the given date/time and provides a standings result for it.
GET
Standings by Season ID and Date(time)
GET
Standings by Season ID and Date(time)https://soccer.sportmonks.com/api/v2.0/standings/season/{season_ID}/date/{date_time}
Endpoint details | |
Authorization | API Key |
Pagination | NO |
Allowed nested includes | 0 |
Parameters
No parameters available for this endpoint.
Include options
No includes available for this endpoint.
Example response
https://soccer.sportmonks.com/api/v2.0/standings/season/17420/date/2021-05-05?api_token={API_TOKEN}
"data": [
{
"position": 1,
"team_id": 9,
"team_name": "Manchester City",
"short_code": "MCI",
"team_logo": "https://cdn.sportmonks.com/images/soccer/teams/9/9.png",
"overall": {
"games_played": 34,
"won": 25,
"draw": 5,
"lost": 4,
"goals_scored": 71,
"goals_against": 24,
"goal_diff": 47
},
"home": {
"games_played": 17,
"won": 12,
"draw": 2,
"lost": 3,
"goals_scored": 37,
"goals_against": 15
},
"away": {
"games_played": 17,
"won": 13,
"draw": 3,
"lost": 1,
"goals_scored": 34,
"goals_against": 9
},
"points": 80,
"description": "UEFA Champions League",
"recent_form": "WLDWDWDLWWDDWWWWWWWWWWWWWWWLWWWLWW"
},
{
"position": 2,
"team_id": 14,
"team_name": "Manchester United",
"short_code": "MUN",
"team_logo": "https://cdn.sportmonks.com/images/soccer/teams/14/14.png",
"overall": {
"games_played": 33,
"won": 19,
"draw": 10,
"lost": 4,
"goals_scored": 64,
"goals_against": 35,
"goal_diff": 29
},
"home": {
"games_played": 16,
"won": 9,
"draw": 3,
"lost": 4,
"goals_scored": 34,
"goals_against": 21
},
"away": {
"games_played": 17,
"won": 10,
"draw": 7,
"lost": 0,
"goals_scored": 30,
"goals_against": 14
},
"points": 67,
"description": "UEFA Champions League",
"recent_form": "LWLWDLWWWWDWWDWWWDWLDWDDWDDWWWWWD"
},
{
"position": 3,
"team_id": 42,
"team_name": "Leicester City",
"short_code": "LEI",
"team_logo": "https://cdn.sportmonks.com/images/soccer/teams/10/42.png",
"overall": {
"games_played": 34,
"won": 19,
"draw": 6,
"lost": 9,
"goals_scored": 61,
"goals_against": 39,
"goal_diff": 22
},
"home": {
"games_played": 17,
"won": 9,
"draw": 1,
"lost": 7,
"goals_scored": 30,
"goals_against": 22
},
"away": {
"games_played": 17,
"won": 10,
"draw": 5,
"lost": 2,
"goals_scored": 31,
"goals_against": 17
},
"points": 63,
"description": "UEFA Champions League",
"recent_form": "WWWLLWWWLLWWLWDDWWWDLWDWWLDWWLLWWD"
},
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. |
Last updated