GET
/
v1
/
projects
/
{project_id}
/
chapters
/
{chapter_id}
curl --request GET \
  --url https://api.elevenlabs.io/v1/projects/{project_id}/chapters/{chapter_id}
{
  "chapter_id": "<string>",
  "name": "<string>",
  "last_conversion_date_unix": 123,
  "conversion_progress": 123,
  "can_be_downloaded": true,
  "state": "default",
  "statistics": {
    "characters_unconverted": 123,
    "characters_converted": 123,
    "paragraphs_converted": 123,
    "paragraphs_unconverted": 123
  }
}
Projects API avaliable upon request. To get access, contact sales.

Headers

xi-api-key
string

Your API key. This is required by most endpoints to access our API programatically. You can view your xi-api-key using the 'Profile' tab on the website.

Path Parameters

project_id
string
required

The project_id of the project, you can query GET https://api.elevenlabs.io/v1/projects to list all available projects.

chapter_id
string
required

The chapter_id of the chapter. You can query GET https://api.elevenlabs.io/v1/projects/{project_id}/chapters to list all available chapters for a project.

Response

200 - application/json
chapter_id
string
required
name
string
required
last_conversion_date_unix
integer
required
conversion_progress
number
required
can_be_downloaded
boolean
required
state
enum<string>
required
Available options:
default,
converting
statistics
object
required