# GET Standings by Season ID

### `GET` Standings by Season ID

```
https://cricket.sportmonks.com/api/v2.0/standings/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 `&include=` etc. to your request url. |
| fields\[object]      | Only return fields you are interested in. Simply add `&fields[object]=id,name,code`  to your request url.         |
| sort                 | One or comma separated list of fields to sort on. Can be used by adding `&sort=` to your request url.             |

**Sort**

You can sort on all fields.

#### Include options

`season` `league` `stage`

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. &#x20;

You can learn more about what includes are and how they work here:

{% content-ref url="../../getting-started/enriching-your-response" %}
[enriching-your-response](https://docs.sportmonks.com/v2/cricket-api/getting-started/enriching-your-response)
{% endcontent-ref %}

#### Example response

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

```
https://cricket.sportmonks.com/api/v2.0/standings/season/525?api_token={API_TOKEN}
```

{% endtab %}

{% tab title="Response" %}

```javascript
   "data": [
        {
            "resource": "standings",
            "legend_id": 1851,
            "team_id": 53,
            "stage_id": 1722,
            "season_id": 525,
            "league_id": 5,
            "position": 1,
            "points": 36,
            "played": 14,
            "won": 9,
            "lost": 5,
            "draw": 0,
            "noresult": 0,
            "runs_for": 2315,
            "overs_for": 269,
            "runs_against": 2278,
            "overs_against": 272.5,
            "netto_run_rate": 0.257,
            "recent_form": [
                "W",
                "L",
                "L",
                "W",
                "W"
            ],
            "updated_at": "2021-01-26T12:58:41.000000Z",
            "legend": {
                "resource": "legends",
                "id": 1851,
                "stage_id": 1722,
                "season_id": 525,
                "league_id": 5,
                "position": 1,
                "description": "Play Offs",
                "updated_at": "2020-07-27T16:53:32.000000Z"
            }
        },
        {
            "resource": "standings",
            "legend_id": 1854,
            "team_id": 52,
            "stage_id": 1722,
            "season_id": 525,
            "league_id": 5,
            "position": 2,
            "points": 32,
            "played": 14,
            "won": 8,
            "lost": 5,
            "draw": 0,
            "noresult": 1,
            "runs_for": 2089,
            "overs_for": 253.6,
            "runs_against": 1879,
            "overs_against": 254.5,
            "netto_run_rate": 0.851,
            "recent_form": [
                "L",
                "W",
                "W",
                "W",
                "L"
            ],
            "updated_at": "2021-01-26T12:58:41.000000Z",
            "legend": {
                "resource": "legends",
                "id": 1854,
                "stage_id": 1722,
                "season_id": 525,
                "league_id": 5,
                "position": 2,
                "description": "Play Offs",
                "updated_at": "2020-07-27T16:53:34.000000Z"
            }
        },
        {
            "resource": "standings",
            "legend_id": 1857,
            "team_id": 54,
            "stage_id": 1722,
            "season_id": 525,
            "league_id": 5,
            "position": 3,
            "points": 31,
            "played": 14,
            "won": 8,
            "lost": 6,
            "draw": 0,
            "noresult": 0,
            "runs_for": 2343,
            "overs_for": 256.3,
            "runs_against": 2094,
            "overs_against": 255.5,
            "netto_run_rate": 0.949,
            "recent_form": [
                "W",
                "L",
                "W",
                "L",
                "L"
            ],
            "updated_at": "2021-01-26T12:58:41.000000Z",
            "legend": {
                "resource": "legends",
                "id": 1857,
                "stage_id": 1722,
                "season_id": 525,
                "league_id": 5,
                "position": 3,
                "description": "Play Offs",
                "updated_at": "2020-07-27T16:53:38.000000Z"
            }
        },
```

{% endtab %}
{% endtabs %}
