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

# Authentication

> How to authenticate your requests to use internal API endpoints.

You'll need to authenticate your requests to access the internal endpoints. Take a look at how authentication works.

## Bearer Token

When requesting resources, you will need an API key — create one in the [Dashboard](https://app.poix.io/settings/api-keys). Here's how to add the API key to the request header using cURL:

```bash theme={null}
curl --request GET \
  --url https://api.poix.io/v1/project \
  --header 'Authorization: Bearer poix-api-fgGKdsX4FoO...'
```

Always keep your API key safe and reset it if you suspect it has been compromised.

You can create and delete your API key in the [Dashboard](https://app.poix.io/settings/api-keys). Once created, it will be shown only once so keep it safe.
