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

# Authentication

> Authenticate every Wachat API request with a bearer token.

All Wachat API requests use a bearer token. Send the token in the `Authorization` header.

```bash theme={null}
  curl https://crm.wachat.net/api/v1/account/limits \
  -H "Authorization: Bearer YOUR_API_TOKEN" \
  -H "Accept: application/json"
```

<Warning>Never expose your token in browser JavaScript, mobile client code, public repositories, or logs.</Warning>

## Base URL

```text theme={null}
https://crm.wachat.net/api/v1
```

Store the token in a server-side environment variable or secret manager and rotate it immediately if exposed.
