# Get all site settings

**Publié le** : 2026-05-08
**Catégorie** : Settings & Config

## `GET /site/settings`

**Get all site settings**

Returns the complete settings object including timezone, locale config, and features.

Required permissions: `sites.view`

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

### Response Example

```json
{
  "id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
  "name": "My Website",
  "domain": "www.example.com",
  "slug": "my-website",
  "description": "Company website and blog",
  "logoUrl": "https://cdn.lynkow.com/sites/abc123/logo.png",
  "faviconUrl": "https://cdn.lynkow.com/sites/abc123/favicon.ico",
  "timezone": "Europe/Paris",
  "isActive": true,
  "showBranding": false,
  "previewUrl": "https://www.example.com",
  "organizationId": "b2c3d4e5-f6a7-8901-bcde-f12345678901",
  "createdAt": "2025-01-01T00:00:00.000Z",
  "updatedAt": "2025-04-05T14:30:00.000Z"
}
```

---