# Get JSON sitemap

**Publié le** : 2026-05-08
**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": [
    {
      "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
    }
  ]
}
```

---