Skip to main content

Overview

Retrieves all chapters for a specific video project.

Parameters

project_id
string
required
The project ID (e.g., prj_abc123xyz)

Returns

Returns an array of chapters for the specified project.

Example Usage

In Claude

Show me the chapters in project prj_abc123xyz
What chapters are in my Product Demo project?

Direct Tool Call

{
  "name": "ListChapters",
  "arguments": {
    "project_id": "prj_abc123xyz"
  }
}

Response

{
  "project_id": "prj_abc123xyz",
  "chapters": [
    {
      "id": "cht_def456uvw",
      "project_id": "prj_abc123xyz",
      "name": "Introduction",
      "duration": 30,
      "created_at": "2025-12-02T10:01:00Z"
    },
    {
      "id": "cht_ghi789rst",
      "project_id": "prj_abc123xyz",
      "name": "Main Content",
      "duration": 60,
      "created_at": "2025-12-02T10:02:00Z"
    }
  ]
}

Common Use Cases

What's the structure of my video?
How many chapters does my project have?
Does my project have an intro chapter?

REST API Equivalent

This tool calls: GET /api/v1/projects/{projectId}/chapters See the List Chapters API documentation for more details.