Skip to main content
GET
/
v1
/
custom-sections
/
{id}
Get Custom Section
curl --request GET \
  --url https://api.mokaru.ai/v1/custom-sections/{id} \
  --header 'Authorization: Bearer <token>'

Documentation Index

Fetch the complete documentation index at: https://docs.mokaru.ai/llms.txt

Use this file to discover all available pages before exploring further.

Overview

Retrieve a single custom section definition with its items.
Scope required: custom-sections:read | Rate limit: 30 requests/min

Request

GET /v1/custom-sections/clx...

Path Parameters

id
string
required
Section definition id

Response

{
  "data": {
    "id": "clx...",
    "sectionTitle": "Volunteer Work",
    "icon": "heart",
    "enabledFields": ["title", "organization", "description"],
    "displayOrder": 0,
    "items": [/* ... */],
    "createdAt": "2026-01-15T10:00:00.000Z",
    "updatedAt": "2026-01-15T10:00:00.000Z"
  }
}