# Get llms.txt

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

## `GET /llms.txt`

**Get llms.txt**

Returns an index of your site's content in the `llms.txt` format.
Lists all published contents and pages with their titles and URLs.

Required permissions: `seo.view`

### Responses

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


### Examples

```bash
# Returns plain text — not JSON
curl https://api.lynkow.com/v1/llms.txt \
  -H "Authorization: Bearer $API_TOKEN"
```

### Response Example

```json
"Returns plain text (Content-Type: text/plain). Example output:\n# My Website\n> A headless CMS platform.\n\n## Contents\n- [Getting Started with Lynkow](https://www.example.com/blog/getting-started)\n- [Advanced Configuration](https://www.example.com/blog/advanced-configuration)\n\n## Pages\n- [About](https://www.example.com/about)\n"
```

---