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

# Authentication

> How to authenticate with the CraftCX API

All API endpoints are authenticated using Bearer tokens.
You can create and manage your tokens from the [Settings -> API Tokens](https://app.craftcx.com/settings/api-tokens) page in the CraftCX dashboard.

```bash theme={null}
curl -X POST \
  https://api.craftcx.com/v1/... \
  -H "Authorization: Bearer your-api-token" \
  ...
```
