curl --request POST \
--url https://api.elevenlabs.io/v1/projects/add \
--header 'Content-Type: multipart/form-data' \
--form 'name=<string>' \
--form 'default_title_voice_id=<string>' \
--form 'default_paragraph_voice_id=<string>' \
--form 'default_model_id=<string>' \
--form 'from_url=<string>' \
--form quality_preset=standard \
--form 'title=<string>' \
--form 'author=<string>' \
--form 'isbn_number=<string>' \
--form acx_volume_normalization=false \
--form volume_normalization=false \
--form 'pronunciation_dictionary_locators=[
"<string>"
]' \
--form 'callback_url=<string>' \
--form from_document=@example-file
{
"project": {
"project_id": "<string>",
"name": "<string>",
"create_date_unix": 123,
"default_title_voice_id": "<string>",
"default_paragraph_voice_id": "<string>",
"default_model_id": "<string>",
"last_conversion_date_unix": 123,
"can_be_downloaded": true,
"title": "<string>",
"author": "<string>",
"isbn_number": "<string>",
"volume_normalization": true,
"state": "default"
}
}
Creates a new project, it can be either initialized as blank, from a document or from a URL.
curl --request POST \
--url https://api.elevenlabs.io/v1/projects/add \
--header 'Content-Type: multipart/form-data' \
--form 'name=<string>' \
--form 'default_title_voice_id=<string>' \
--form 'default_paragraph_voice_id=<string>' \
--form 'default_model_id=<string>' \
--form 'from_url=<string>' \
--form quality_preset=standard \
--form 'title=<string>' \
--form 'author=<string>' \
--form 'isbn_number=<string>' \
--form acx_volume_normalization=false \
--form volume_normalization=false \
--form 'pronunciation_dictionary_locators=[
"<string>"
]' \
--form 'callback_url=<string>' \
--form from_document=@example-file
{
"project": {
"project_id": "<string>",
"name": "<string>",
"create_date_unix": 123,
"default_title_voice_id": "<string>",
"default_paragraph_voice_id": "<string>",
"default_model_id": "<string>",
"last_conversion_date_unix": 123,
"can_be_downloaded": true,
"title": "<string>",
"author": "<string>",
"isbn_number": "<string>",
"volume_normalization": true,
"state": "default"
}
}
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.
Successful Response
The response is of type object
.