POST
/
v1
/
projects
/
add
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>'
{
  "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"
  }
}
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.

Body

multipart/form-data

Response

200
application/json

Successful Response

The response is of type object.