# Get a single type

**Publié le** : 2026-05-12
**Catégorie** : Storefront API

## `GET /single-types/:slug`

**Get a single type**

Fetch a single-type content entry by slug (About, Privacy Policy,
etc.). Returns the rendered body, SEO bundle, and metadata.

### Parameters

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


### Responses

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


> **Notes:** Cache: `Cache-Control: public, max-age=300`. Rate-limit bucket: general.

### Examples

```curl
curl "https://api.lynkow.com/public/{siteId}/single-types/about?locale=en"
```

```javascript
const res = await fetch(`https://api.lynkow.com/public/${siteId}/single-types/about?locale=en`)
const { data } = await res.json()
```

### Response Example

```json
"{\n  \"data\": {\n    \"id\": \"01J9X1V4WTPK7C2RD8M5HQ6Y0A\",\n    \"slug\": \"about\",\n    \"title\": \"About us\",\n    \"locale\": \"en\",\n    \"body\": \"<p>We make software that respects your time.</p>\",\n    \"seo\": {\n      \"metaTitle\": \"About | Acme\",\n      \"metaDescription\": \"Who we are, what we do, why.\"\n    },\n    \"publishedAt\": \"2026-02-10T09:00:00.000Z\",\n    \"updatedAt\": \"2026-04-30T16:22:00.000Z\"\n  }\n}\n"
```

---