> 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-id-and-round-id.md).

# GET Standings by Season ID and Round ID

### `GET` Standings by Season ID and Round ID

```
https://soccer.sportmonks.com/api/v2.0/standings/season/{season_ID}/round/{round_ID}
```

| 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/17141/round/194968?api_token={API_TOKEN}
```

{% endtab %}

{% tab title="Response" %}

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

{% 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 %}
