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

# Authentication

The Sequin Management API uses **HTTP Bearer Authentication**.

You can [generate an API token](/management-api/introduction) in the [Sequin Console](https://console.sequin.io/account/api-tokens).

You'll include your token in the header of your HTTP requests. For example, with a client such as `curl`, you can include your token by using the `--header` option:

```bash theme={null}
# List all syncs
curl --request GET \
  --url https://api.sequin.io/v1/syncs \
  --header 'Authorization: Bearer YOUR_API_TOKEN'
```
