> ## Documentation Index
> Fetch the complete documentation index at: https://cachet-claude-scheduled-incidents-maintenance-0mn6xo.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Authentication

> Learn how to authenticate with the Cachet API

<Tip>
  Cachet believes your service status should be open and transparent, so all `GET` requests are public and require no authentication.
</Tip>

Authenticated requests (those that `POST`, `PUT` or `DELETE`) require an **API token**.

### API token

API tokens are the preferred method of authentication.

Once you have your token you'll need to add a new request header of `Authorization: Bearer $TOKEN`:

```shell theme={null}
curl -H "Content-Type: application/json;" -H "Authorization: Bearer YOUR_KEY_HERE" -d '{"name":"API","description":"An example description","status":1}' https://v3.cachethq.io/api/components
```
