> For the complete Lynkow documentation index in agent-friendly format, see [llms.txt](/llms.txt).

# Get JSON sitemap

**Publié le** : 2026-07-04
**Catégorie** : SEO & Analytics

## `GET /seo/sitemap.json`

**Get JSON sitemap**

Same as the XML sitemap but in JSON format for programmatic consumption.

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

### Response Example

```json
{
  "data": {
    "domain": "www.example.com",
    "blogUrlMode": "flat",
    "multiLanguageEnabled": false,
    "defaultLocale": "en",
    "generatedAt": "2025-04-05T10:30:00.000Z",
    "urlCount": 2,
    "urls": [
      {
        "url": "https://www.example.com/blog/getting-started",
        "lastmod": "2025-04-05",
        "changefreq": "weekly",
        "priority": 0.8
      },
      {
        "url": "https://www.example.com/about",
        "lastmod": "2025-03-20",
        "changefreq": "monthly",
        "priority": 0.6
      }
    ]
  }
}
```

---