Skip to main content
POST
/
api
/
voices
/
cURL
curl --request POST \
  --url https://api.creatify.ai/api/voices/ \
  --header 'Content-Type: application/json' \
  --header 'X-API-ID: <api-key>' \
  --header 'X-API-KEY: <api-key>' \
  --data '{
  "name": "<string>",
  "original_audio_url": "<string>"
}'
{
  "name": "<string>",
  "gender": "male",
  "accents": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "accent_name": "<string>",
      "preview_url": "<string>"
    }
  ]
}

Authorizations

X-API-ID
string
header
required

API ID, from your settings page.

X-API-KEY
string
header
required

API Key, from your settings page.

Body

original_audio_url
string<uri>
required

URL of the original audio used for cloning

Maximum length: 1000
name
string

Name of the cloned voice

Maximum length: 255

Response

201 - application/json
name
string
required
Maximum length: 255
accents
object[]
required
gender
  • male - Male
  • female - Female
  • non_binary - Non Binary
Available options:
male,
female,
non_binary