# Get translation status

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

## `GET /contents/:id/translations`

**Get translation status**

Returns the translation status for a content across all enabled
locales. For each locale, indicates whether a translation exists
and its current status.

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/translations \
  -H "Authorization: Bearer $API_TOKEN"
```

### Response Example

```json
{
  "data": {
    "en": {
      "status": "complete",
      "contentId": 42,
      "title": "Getting Started with Lynkow"
    },
    "fr": {
      "status": "complete",
      "contentId": 43,
      "title": "Premiers pas avec Lynkow"
    },
    "es": {
      "status": "missing",
      "contentId": null,
      "title": null
    },
    "de": {
      "status": "missing",
      "contentId": null,
      "title": null
    }
  }
}
```

---