# Get i18n detection settings

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

## `GET /site/settings/i18n-detection`

**Get i18n detection settings**

Returns how visitor locale is detected (URL prefix, cookie, browser header).

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": {
    "detectionMethod": "url_prefix",
    "redirectToDefault": true,
    "hideDefaultLocale": false
  }
}
```

---