GET
/
api
/
voices
curl --request GET \
  --url https://api.creatify.ai/api/voices/ \
  --header 'X-API-ID: <api-key>' \
  --header 'X-API-KEY: <api-key>'
[
  {
    "type": "text",
    "input_text": "<string>",
    "voice_id": "<string>",
    "volume": 0.8
  }
]

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.

Response

200 - application/json
type
enum<string>
required

Type of input, currently only 'text' is supported.

  • text - text
Available options:
text
input_text
string
required

Input text for the voice synthesis, up to 2000 characters.

Maximum length: 2000
voice_id
string | null

Voice ID, if not provided, the default voice will be used.

Maximum length: 50
volume
number
default:0.8

Volume of the voiceover, ranging from 0.0 to 1.0.

Required range: 0 <= x <= 1