# Get alternate locale versions

**Publié le** : 2026-05-08
**Catégorie** : Core CMS

## `GET /contents/:id/alternates`

**Get alternate locale versions**

Returns links to all translated versions of this content. Useful for
building `hreflang` tags or locale switchers on the frontend.

Required permissions: `contents.view`

### Parameters

| Name | In | Type | Required | Description |
| --- | --- | --- | --- | --- |
| `id` | path | string | Yes | Unique identifier |


### Responses

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


### Examples

```bash
curl https://api.lynkow.com/v1/contents/42/alternates \
  -H "Authorization: Bearer $API_TOKEN"
```

### Response Example

```json
{
  "data": [
    {
      "locale": "en",
      "id": 42,
      "slug": "getting-started-with-lynkow",
      "path": "/blog/getting-started-with-lynkow"
    },
    {
      "locale": "fr",
      "id": 43,
      "slug": "premiers-pas-avec-lynkow",
      "path": "/fr/blog/premiers-pas-avec-lynkow"
    }
  ]
}
```

---