> For the complete documentation index, see [llms.txt](https://docs.sportmonks.com/v2/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.sportmonks.com/v2/endpoint-overview/standings/get-standings-by-season-and-date-time.md).

# GET Standings by Season 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

{% tabs %}
{% tab title="Request" %}

```
https://soccer.sportmonks.com/api/v2.0/standings/season/17420/date/2021-05-05?api_token={API_TOKEN}
```

{% endtab %}

{% tab title="Response" %}

```javascript
"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"
        },
```

{% endtab %}

{% tab title="Field Description" %}

| **Field**     | Description                                                                                       |
| ------------- | ------------------------------------------------------------------------------------------------- |
| `position`    | The actual position in the rankings in the stage                                                  |
| `team_id`     | The unique team id of the team in that position in the stage                                      |
| `team_name`   | The team name in that position in the stage                                                       |
| `round_id`    | &#xD;The unique id of the current round                                                           |
| `round_name`  | The name of the round                                                                             |
| `group_id`    | The unique id of the group, in which the team participates in                                     |
| `group_name`  | The name of the group, in which the team participates in                                          |
| `overall`     | The overall results of the team, i.e., the number of games, points and goals                      |
| `home`        | The home results of the team, i.e., the number of games, points and goals                         |
| `away`        | The away results of the team, i.e., the number of games, points and goals                         |
| `total`       | The total points of the team and their goal difference                                            |
| `results`     | The standing rules of the place the team is in                                                    |
| `points`      | The accumulated number of points the team has                                                     |
| `recent_form` | The recent form of the team                                                                       |
| `status`      | Will be available in API 3.0: Indicates if the team moves up on down based on the last standings. |
| {% endtab %}  |                                                                                                   |
| {% endtabs %} |                                                                                                   |

{% hint style="info" %}
Check this endpoint in Postman.\
&#x20;                                                             [![Run in Postman](https://run.pstmn.io/button.svg)](https://football-postman.sportmonks.com/#2ff8afe4-5381-4d8c-acff-35afea3267e3)
{% endhint %}
