# Export reviews as CSV

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

## `GET /reviews/export`

**Export reviews as CSV**

Downloads all reviews as a CSV file.

Required permissions: `reviews.export`

### Responses

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


### Examples

```bash
curl "https://api.lynkow.com/v1/reviews/export" \
  -H "Authorization: Bearer $API_TOKEN" \
  -o reviews.csv
```

### Response Example

```json
"Returns a CSV file (Content-Type: text/csv). Example output:\nid,title,content,rating,status,author_name,author_email,created_at\n101,\"Excellent platform\",\"Lynkow made managing...\",5,\"approved\",\"Marie Dupont\",\"marie@example.com\",\"2025-04-01 14:22:00\"\n"
```

---