Skip to main content
GET
/
v1
/
custom-sections
List Custom Sections
curl --request GET \
  --url https://api.mokaru.ai/v1/custom-sections \
  --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

Custom sections are user-defined CV blocks (e.g. “Volunteer Work”, “Patents”, “Languages”). Each section has a definition (title, icon, enabled fields) and zero or more items. List returns all section definitions with their items inline.
Scope required: custom-sections:read | Rate limit: 60 requests/min

Request

GET /v1/custom-sections?limit=25&offset=0

Query Parameters

limit
number
default:"25"
Results per page (max 100)
offset
number
default:"0"
Pagination offset

Response

{
  "data": [
    {
      "id": "clx...",
      "sectionTitle": "Volunteer Work",
      "icon": "heart",
      "enabledFields": ["title", "organization", "description", "startDate", "endDate"],
      "displayOrder": 0,
      "items": [
        {
          "id": "cli...",
          "title": "Mentor",
          "organization": "Code Academy",
          "description": "Mentoring junior developers",
          "startDate": "2023-01",
          "endDate": null,
          "url": null,
          "displayOrder": 0
        }
      ],
      "createdAt": "2026-01-15T10:00:00.000Z",
      "updatedAt": "2026-01-15T10:00:00.000Z"
    }
  ],
  "total": 2,
  "hasMore": false,
  "limit": 25,
  "offset": 0
}