# Render llms-full.txt

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

## `GET /:locale/llms-full.txt`

**Render llms-full.txt**

Locale-scoped variant of `/llms-full.txt`. Returns the full
Markdown corpus for pages and content entries available in
`:locale`.

### Parameters

| Name | In | Type | Required | Description |
| --- | --- | --- | --- | --- |
| `locale` | path | string | Yes | BCP 47 locale code (e.g. "en", "fr") |


### Responses

| Status | Description |
| --- | --- |
| `200` | Successful response |
| `404` | Not found |


> **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}/fr/llms-full.txt"
```

### Response Example

```json
"# Documentation Acme\n\n## /fr/tarifs\nTitre: Tarifs\n\nTarifs simples. Commencez gratuitement.\n\n...\n"
```

---