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

# Authentication

> How to authenticate API requests

To authenticate requests, include your API token in the `Authorization` header.

You can get your API token from the Generect app settings.

```python theme={null}
headers = {
  "Authorization": "Token xxxxxxxxx"
}
```

The `Token` prefix is required. A raw token without the prefix will not authenticate.
