Voices

Add Voice

Create a voice clone.

POST
/v1/voices/add

Authorization

papla-api-key<token>

Api key, that can be generated from the app dashboard

In: header

Request Body

multipart/form-dataRequired
fileRequiredFile
Format: "binary"
nameRequiredName

Name of the new voice

Minimum length: 2Maximum length: 50Pattern: "^[A-Za-z0-9_ ]+$"
labelsLabels

List of labels associated with the new voice

descriptionDescription

Description of the new voice

Maximum length: 255
curl -X POST "https://api.papla.media/v1/voices/add" \
    -H "papla-api-key: <token>" \
    -F "name=New Voice" \
    -F "labels=funny" \
    -F "labels=calm" \
    -F "description=Voice Description" \
    -F "file=@filename.mp3;type=audio/mpeg"

Successful Response

{
  "voice_id": "2235c634-e4db-4ad6-aa15-066fb69b1c8f"
}