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

# Setup Authentication

> To get started using the Revocalize API, you'll need to generate an API Key through your Revocalize dashboard: [www.revocalize.ai/settings/api-keys](https://www.revocalize.ai/settings/api-keys).

Tokens must be included in the `Authentication` HTTP header in all requests as a type `Bearer`.

```bash theme={null}
'Authorization': 'Bearer <revocalize_api_key>'
```

Test everything is working correctly using the ping endpoint and curl:

```bash Ping Test theme={null}
curl -H "Authentication: Bearer " https://api.revocalize.ai/ping
{"ping":"pong"}
```
