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

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