# Get a single type

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

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

**Get a single type**

Returns a single type by its slug, including the full body content.

Required permissions: `single_types.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/single-types/about \
  -H "Authorization: Bearer $API_TOKEN"
```

### Response Example

```json
{
  "data": {
    "slug": "about",
    "name": "About Page",
    "bodyHtml": "<h1>About Us</h1><p>We build tools for the modern web.</p>",
    "locale": "en",
    "meta": {
      "metaTitle": "About Us | My Website",
      "metaDescription": "Learn about our company and mission."
    },
    "createdAt": "2025-01-10T09:00:00.000Z",
    "updatedAt": "2025-03-20T14:00:00.000Z"
  }
}
```

---