# Get SEO settings

**Publié le** : 2026-05-08
**Catégorie** : SEO & Analytics

## `GET /seo/settings`

**Get SEO settings**

Returns global SEO configuration (default meta tags, robots directives, indexing settings).

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

### Response Example

```json
{
  "id": 1,
  "siteId": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
  "robotsRules": [
    {
      "userAgent": "*",
      "rules": [
        {
          "path": "/",
          "allow": true
        },
        {
          "path": "/admin",
          "allow": false
        }
      ]
    }
  ],
  "robotsSitemapLink": true,
  "defaultPriority": 0.5,
  "defaultChangefreq": "weekly",
  "includeContentsInSitemap": true,
  "contentPathPrefixes": {},
  "contentTypePriorities": {},
  "blogUrlMode": "flat",
  "blogPrefix": null,
  "indexNowKey": "abc123def456",
  "indexNowEnabled": true,
  "indexNowLastVerifiedAt": "2025-04-01T10:00:00.000Z",
  "googleIndexingEnabled": false,
  "llmsTxtEnabled": true,
  "llmsSiteDescription": "Lynkow is a headless CMS platform.",
  "sitemapIndexEnabled": false,
  "createdAt": "2025-01-01T00:00:00.000Z",
  "updatedAt": "2025-04-05T14:30:00.000Z"
}
```

---