> ## 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.

# Localization

> Language support in the Everday API

## Localization

The Everday API supports multiple languages to ensure a seamless experience for different users. You can specify the desired response language by including the `Accept-Language` header in your request.

### Supported Languages

| Language          | Code |
| ----------------- | ---- |
| English (default) | `en` |
| Dutch             | `nl` |

### Using the `Accept-Language` Header

To receive API responses in a specific language, include the `Accept-Language` header in your request. If the header is omitted or contains an unsupported value, the API defaults to **English (`en`)**.

#### **Example Request (Dutch Response)**

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