> 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/cricket-api/our-api/positions/get-position-by-id.md).

# GET Position by ID

### `GET` Position by ID

```
https://cricket.sportmonks.com/api/v2.0/positions/{ID}
```

| Endpoint details        |         |
| ----------------------- | ------- |
| Authorization           | API Key |
| Pagination              | NO      |
| Allowed nested includes | 0       |

#### Parameters

| Available parameters |                                                                                                       |
| -------------------- | ----------------------------------------------------------------------------------------------------- |
| 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.

#### Example response

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

```
https://cricket.sportmonks.com/api/v2.0/positions/1?api_token={API_TOKEN}
```

{% endtab %}

{% tab title="Response" %}

```javascript
    "data": {
        "resource": "positions",
        "id": 1,
        "name": "Batsman"
    }
```

{% endtab %}
{% endtabs %}
