# Get a review

**Publié le** : 2026-05-08
**Catégorie** : Forms & Reviews

## `GET /reviews/:id`

**Get a review**

Returns a single review with all details.

Required permissions: `reviews.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/reviews/101 \
  -H "Authorization: Bearer $API_TOKEN"
```

### Response Example

```json
{
  "data": {
    "id": 101,
    "title": "Excellent platform",
    "content": "Lynkow made managing our website content incredibly easy.",
    "rating": 5,
    "status": "approved",
    "authorName": "Marie Dupont",
    "authorEmail": "marie@example.com",
    "authorCompany": "Acme Corp",
    "authorCity": "Paris",
    "isFeatured": true,
    "locale": "en",
    "createdAt": "2025-04-01T14:22:00.000Z",
    "updatedAt": "2025-04-05T09:00:00.000Z"
  }
}
```

---