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

# Authentication

> How to authenticate requests in the Everday API

## Authentication

All Everday API endpoints require authentication using an **API key**.\
Each organization is assigned a **unique API key**, which must be included in every request.

### Authenticating Requests

To authenticate API requests, include your API key in the request header:

```bash theme={null}
curl -X GET "https://api.ever.day/skillsets" \
  -H "x-api-key: YOUR_API_KEY"
```
