# Get page as markdown

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

## `GET /markdown/pages/:slug`

**Get page as markdown**

Returns a site block (page) data rendered as markdown.

Required permissions: `seo.view`

### Parameters

| Name | In | Type | Required | Description |
| --- | --- | --- | --- | --- |
| `slug` | path | string | Yes | URL-friendly identifier, unique per site and locale |


### Responses

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


### Examples

```bash
curl https://api.lynkow.com/v1/markdown/pages/about \
  -H "Authorization: Bearer $API_TOKEN"
```

### Response Example

```json
"Returns plain text (Content-Type: text/markdown). Example output:\n# About Us\n\nWe build tools for the modern web.\n"
```

---