# Render sitemap.xml

**Publié le** : 2026-05-12
**Catégorie** : Storefront API

## `GET /sitemap.xml`

**Render sitemap.xml**

Return the site's sitemap as XML conformant to
[https://www.sitemaps.org/schemas/sitemap/0.9](https://www.sitemaps.org/schemas/sitemap/0.9). Generated on demand
from `sitemap_entries` and `sitemap_rules` for the site; entries
can be hand-managed or auto-derived from content + pages.

### Responses

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


> **Notes:** Content type: `application/xml`. Cache:
> `Cache-Control: public, max-age=3600`. Rate-limit bucket: general.

### Examples

```curl
curl "https://api.lynkow.com/public/{siteId}/sitemap.xml"
```

### Response Example

```json
"<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<urlset xmlns=\"http://www.sitemaps.org/schemas/sitemap/0.9\">\n  <url>\n    <loc>https://docs.acme.io/</loc>\n    <lastmod>2026-05-12</lastmod>\n    <changefreq>weekly</changefreq>\n    <priority>1.0</priority>\n  </url>\n  <url>\n    <loc>https://docs.acme.io/pricing</loc>\n    <lastmod>2026-05-10</lastmod>\n    <changefreq>monthly</changefreq>\n    <priority>0.8</priority>\n  </url>\n</urlset>\n"
```

---