# Render llms-full.txt

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

## `GET /llms-full.txt`

**Render llms-full.txt**

Return the `llms-full.txt` document: the full Markdown corpus of
every published page concatenated into a single text blob, with
front-matter-style separators. Larger than `/llms.txt` (the
index-only variant); use for one-shot ingestion of the site's
content into an LLM context window.

### Responses

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


> **Notes:** Content type: `text/plain`. Cache:
> `Cache-Control: public, max-age=3600`. Rate-limit bucket: general.
> Body length is bounded by the site's content corpus; typical
> responses range from ~50 KB to several MB. Use streaming where
> possible.

### Examples

```curl
curl "https://api.lynkow.com/public/{siteId}/llms-full.txt"
```

### Response Example

```json
"# Acme Documentation\n\n## /pricing\nTitle: Pricing\n\nSimple pricing. Start free, scale when you grow.\n\n## Tiers\n...\n\n---\n\n## /getting-started\nTitle: Getting started\n\nInstall the SDK and ship your first request.\n\n...\n"
```

---