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

# Authentication

**Authentication**: Reportana’s API uses the **Basic Auth** standard for authentication. To authenticate, you must encode your **Client ID** and **Client Secret** in **Base64**, concatenated with a colon (`:`) between them. These values can be obtained directly from our platform. Authentication is performed via the **Authorization** header. Example usage:

```twig theme={null}
Authorization: Basic base64(client_id + ':' + client_secret)
```

Make sure to replace `client_id` and `client_secret` with the specific values from your account.
