# List single types

**Publié le** : 2026-05-08
**Catégorie** : Core CMS

## `GET /single-types`

**List single types**

Returns all defined single types for your site.

Required permissions: `single_types.view`

### Responses

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


### Examples

```bash
curl https://api.lynkow.com/v1/single-types \
  -H "Authorization: Bearer $API_TOKEN"
```

### Response Example

```json
{
  "data": [
    {
      "slug": "about",
      "name": "About Page",
      "locale": "en",
      "createdAt": "2025-01-10T09:00:00.000Z",
      "updatedAt": "2025-03-20T14:00:00.000Z"
    },
    {
      "slug": "privacy-policy",
      "name": "Privacy Policy",
      "locale": "en",
      "createdAt": "2025-01-12T10:00:00.000Z",
      "updatedAt": "2025-02-15T11:00:00.000Z"
    }
  ],
  "meta": {
    "total": 3,
    "perPage": 15,
    "currentPage": 1,
    "lastPage": 1
  }
}
```

---