# Render llms.txt

**Publié le** : 2026-05-12
**Catégorie** : SEO & LLMs

## `GET /llms.txt`

**Render llms.txt**

Return the `llms.txt` document for the site, one Markdown link per
line. Designed for LLM ingestion: each entry points at the page's
markdown rendering via the `.md` suffix on the catch-all route.

### 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}/llms.txt"
```

### Response Example

```json
"# Acme Documentation\n\n> Public documentation for the Acme platform. en.\n\n- [Pricing](https://docs.acme.io/pricing.md): Simple pricing. Start free, scale when you grow.\n- [Getting started](https://docs.acme.io/getting-started.md): Install the SDK and ship your first request.\n- [API reference](https://docs.acme.io/api.md): Reference for every endpoint.\n"
```

---