Voices
Get voices with pagination
API Documentation
Link to videos
Links
Lipsyncs
Lipsyncs v2
Text to Speech
AI Shorts
AI Editing
Custom Templates
Avatar
Workspace
Voices
Get voices with pagination
Returns a paginated list.
GET
/
api
/
voices
/
paginated
curl --request GET \
--url https://api.creatify.ai/api/voices/paginated/ \
--header 'X-API-ID: <api-key>' \
--header 'X-API-KEY: <api-key>'
{
"count": 123,
"next": "<string>",
"previous": "<string>",
"results": [
{
"type": "text",
"input_text": "<string>",
"voice_id": "<string>",
"volume": 0.8
}
]
}
Authorizations
API ID, from your settings page.
API Key, from your settings page.
Query Parameters
Page number to fetch
Required range:
x >= 1
Number of items per page
Required range:
x >= 1
Response
200 - application/json
Type of input, currently only 'text' is supported.
text
- text
Available options:
text
Input text for the voice synthesis, up to 2000 characters.
Maximum length:
2000
Voice ID, if not provided, the default voice will be used.
Maximum length:
50
Volume of the voiceover, ranging from 0.0 to 1.0.
Required range:
0 <= x <= 1
curl --request GET \
--url https://api.creatify.ai/api/voices/paginated/ \
--header 'X-API-ID: <api-key>' \
--header 'X-API-KEY: <api-key>'
{
"count": 123,
"next": "<string>",
"previous": "<string>",
"results": [
{
"type": "text",
"input_text": "<string>",
"voice_id": "<string>",
"volume": 0.8
}
]
}