GET Standings by Season ID
GET
Standings by Season ID
GET
Standings by Season IDhttps://soccer.sportmonks.com/api/v2.0/standings/season/{season_ID}
Endpoint details | |
Authorization | API Key |
Pagination | NO |
Allowed nested includes | 2 |
Parameters
Available parameters | |
include | Enrich the API with more data and/or nested includes. Can be used by adding |
stage_ids | A Comma separated list of stage ids. Can be used by adding |
group_ids | A Comma separated list of group ids. Can be used by adding |
Include options
Note that includes on this endpoint must be prefixed by "standings."
team
league
season
round
stages
Includes are the cornerstone of our API and allow you to enrich and customize your requests. This flexibility is what distinguishes us from our competitors.
You can learn more about what includes are and how they work here:
IncludesExample response
https://soccer.sportmonks.com/api/v2.0/standings/season/17420?api_token={API_TOKEN}
"data": [
{
"id": 77448322,
"name": "Regular Season",
"league_id": 8,
"season_id": 17420,
"round_id": 202038,
"round_name": 38,
"type": "Group Stage",
"stage_id": 77448322,
"stage_name": "Regular Season",
"resource": "stage",
"standings": {
"data": [
{
"position": 1,
"team_id": 9,
"team_name": "Manchester City",
"round_id": 202038,
"round_name": 38,
"group_id": null,
"group_name": null,
"overall": {
"games_played": 38,
"won": 27,
"draw": 5,
"lost": 6,
"goals_scored": 83,
"goals_against": 32,
"points": 86
},
"home": {
"games_played": 19,
"won": 13,
"draw": 2,
"lost": 4,
"goals_scored": 43,
"goals_against": 17,
"points": 41
},
"away": {
"games_played": 19,
"won": 14,
"draw": 3,
"lost": 2,
"goals_scored": 40,
"goals_against": 15,
"points": 45
},
"total": {
"goal_difference": "51",
"points": 86
},
"result": "UEFA Champions League",
"points": 86,
"recent_form": "WLWLW",
"status": null
},
{
"position": 2,
"team_id": 14,
"team_name": "Manchester United",
"round_id": 202038,
"round_name": 38,
"group_id": null,
"group_name": null,
"overall": {
"games_played": 38,
"won": 21,
"draw": 11,
"lost": 6,
"goals_scored": 73,
"goals_against": 44,
"points": 74
},
"home": {
"games_played": 19,
"won": 9,
"draw": 4,
"lost": 6,
"goals_scored": 38,
"goals_against": 28,
"points": 31
},
"away": {
"games_played": 19,
"won": 12,
"draw": 7,
"lost": 0,
"goals_scored": 35,
"goals_against": 16,
"points": 43
},
"total": {
"goal_difference": "29",
"points": 74
},
"result": "UEFA Champions League",
"points": 74,
"recent_form": "WLLDW",
"status": null
},
Season Field Description
Field | Description |
| The unique id of the current stage |
| The name of the stage |
| The unique league id the stage belongs to |
| The unique id of the current season |
| The unique id of the current round |
| The name of the round |
| Indicates what kind of type this stage is |
| The unique id of the current stage |
| The name of the stage |
Standings Field Description
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