# List single types

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

## `GET /single-types`

**List single types**

List the site's single-type entries. Singleton pages identified by
slug (About, Privacy Policy, Terms of Service). Supports `locale`
filter.

### Responses

| Status | Description |
| --- | --- |
| `200` | Successful response |


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

### Examples

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

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

### Response Example

```json
"{\n  \"data\": [\n    {\n      \"id\": \"01J9X1V4WTPK7C2RD8M5HQ6Y0A\",\n      \"slug\": \"about\",\n      \"title\": \"About us\",\n      \"locale\": \"en\",\n      \"publishedAt\": \"2026-02-10T09:00:00.000Z\",\n      \"updatedAt\": \"2026-04-30T16:22:00.000Z\"\n    }\n  ]\n}\n"
```

---