# Get content as markdown

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

## `GET /markdown/content/:slug`

**Get content as markdown**

Returns a single content's body converted to markdown format.

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/content/getting-started-with-lynkow \
  -H "Authorization: Bearer $API_TOKEN"
```

### Response Example

```json
"Returns plain text (Content-Type: text/markdown). Example output:\n# Getting Started with Lynkow\n\nLearn how to set up your first headless CMS with Lynkow.\n\n## Prerequisites\n...\n"
```

---