### Include the access token in the request header
You can now start making REST API requests. You must include the access token in the request header of every request. For example:

```curl
curl -X GET '{YOUR_BASE_URL}/v2/...' \
-H 'Authorization: Bearer {YOUR_ACCESS_TOKEN}' \
-H 'Accept: application/json'
```
