# Get review-form settings

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

## `GET /reviews/settings`

**Get review-form settings**

Read the site's public review-settings. Tells clients which review
fields the site exposes (author photo, company, position, city),
whether public submission is enabled, the rating scale, and the
required-fields list.

### Responses

| Status | Description |
| --- | --- |
| `200` | Successful response |


> **Notes:** Cache: `Cache-Control: public, max-age=300`. Rate-limit bucket: general.

### Examples

```curl
curl "https://api.lynkow.com/public/{siteId}/reviews/settings"
```

```javascript
const res = await fetch(`https://api.lynkow.com/public/${siteId}/reviews/settings`)
const { data } = await res.json()
```

### Response Example

```json
"{\n  \"data\": {\n    \"publicSubmissionEnabled\": true,\n    \"requireEmail\": false,\n    \"showAuthorPhoto\": true,\n    \"showAuthorCompany\": true,\n    \"showAuthorCity\": true,\n    \"ratingScale\": 5,\n    \"moderationMode\": \"manual\"\n  }\n}\n"
```

---