# Get full site content as text

**Publié le** : 2026-05-08
**Catégorie** : SEO & Analytics

## `GET /llms-full.txt`

**Get full site content as text**

Returns ALL published content concatenated into a single text file.
Useful for LLMs that need the full site context in one request.

Required permissions: `seo.view`

### Responses

| Status | Description |
| --- | --- |
| `200` | Successful response |
| `401` | Unauthorized — invalid or missing API token |
| `403` | Forbidden — insufficient permissions |


> **Notes:** - Can be large for sites with many articles. No pagination — returns everything.

### Examples

```bash
curl https://api.lynkow.com/v1/llms-full.txt \
  -H "Authorization: Bearer $API_TOKEN"
```

### Response Example

```json
"Returns plain text (Content-Type: text/plain) with all published\ncontent concatenated and separated by headers.\n"
```

---