> ## 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

To authenticate your requests, include your `auth_token` in the `Authorization` header. Here's how you can do it:

```python theme={null}
headers = {
  "Authorization": f"Token {auth_token}",
  ...
}
```

### Important:

Ensure you prepend `Token` to your `auth_token` for proper authorization.
