# Render robots.txt

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

## `GET /robots.txt`

**Render robots.txt**

Return the site's robots.txt directives as plain text. Body is
composed from the site's SEO settings (allow/disallow patterns,
crawl-delay) plus a `Sitemap:` line pointing at the site's
sitemap URL.

### Responses

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


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

### Examples

```curl
curl "https://api.lynkow.com/public/{siteId}/robots.txt"
```

### Response Example

```json
"User-agent: *\nDisallow: /admin\nDisallow: /api\nAllow: /\n\nSitemap: https://docs.acme.io/sitemap.xml\n"
```

---