# List available timezones

**Publié le** : 2026-05-08
**Catégorie** : Settings & Config

## `GET /site/settings/timezones`

**List available timezones**

Returns all IANA timezone identifiers that can be set for the site.

Required permissions: `sites.view`

### Responses

| Status | Description |
| --- | --- |
| `200` | Successful response |
| `401` | Unauthorized — invalid or missing API token |
| `403` | Forbidden — insufficient permissions |


### Response Example

```json
{
  "data": [
    "Africa/Abidjan",
    "America/New_York",
    "America/Los_Angeles",
    "Europe/London",
    "Europe/Paris",
    "Asia/Tokyo"
  ]
}
```

---