> ## Documentation Index
> Fetch the complete documentation index at: https://docs.harmonyforstaffing.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Make API Requests

> Make authenticated API requests

Once you have an access token, include it in the Authorization header of all API requests.

### Headers

<ParamField header="Authorization" type="string" required>
  Bearer token format: "Bearer your\_access\_token"
</ParamField>

<RequestExample>
  ```bash theme={null}
  curl --request GET \
    --url https://api.harmonyforstaffing.com/api/candidates \
    --header 'Authorization: Bearer eyJhbGciOiJIUzI1...'
  ```
</RequestExample>

<ResponseExample>
  ```json theme={null}
  {
    "error": "invalid_token",
    "error_description": "The access token has expired"
  }
  ```
</ResponseExample>
