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

# Authentication

> Authenticate with the Wild Moose API using JWT tokens

All API requests must include a valid JWT token in the `Authorization` header.

## Using your token

Include the token as a Bearer token in every request:

```bash theme={null}
Authorization: Bearer YOUR_TOKEN
```

<Warning>
  Keep your API tokens secure. Never commit them to source control or expose them in client-side code.
</Warning>

## Error responses

| Status code          | Meaning                                         |
| -------------------- | ----------------------------------------------- |
| **401 Unauthorized** | Token is missing, expired, or invalid           |
| **403 Forbidden**    | API access is not enabled for your organization |

If you receive a `401` error, verify that your token is valid and has not expired. If you receive a `403` error, contact your Wild Moose account administrator to enable API access.
