# GET Official by ID

### `GET` Official by ID

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

| Endpoint details |         |
| ---------------- | ------- |
| Authorization    | API Key |
| Pagination       | NO      |

#### Parameters

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

#### Example response

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

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

{% endtab %}

{% tab title="Response" %}

```javascript
    "data": {
        "resource": "officials",
        "id": 1,
        "country_id": 146,
        "firstname": "Maraise",
        "lastname": "Erasmus",
        "fullname": "Maraise Erasmus",
        "dateofbirth": "1964-02-27",
        "gender": "m",
        "updated_at": "2018-10-11T09:38:55.000000Z"
    }
```

{% endtab %}
{% endtabs %}
