Link to videos
Links
Lipsyncs
Lipsyncs v2
Custom Templates
Custom Template Videos
Text to Speech
AI Shorts
AI Editing
Avatar
Workspace
Voices
Get voices with pagination
Returns a paginated list.
GET
/
api
/
voices
/
paginated
/
Copy
Ask AI
curl --request GET \
--url https://api.creatify.ai/api/voices/paginated/ \
--header 'X-API-ID: <api-key>' \
--header 'X-API-KEY: <api-key>'
Copy
Ask AI
{
"count": 123,
"next": "<string>",
"previous": "<string>",
"results": [
{
"name": "<string>",
"gender": "male",
"accents": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"accent_name": "<string>",
"preview_url": "<string>"
}
]
}
]
}
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
The response is of type object
.
Copy
Ask AI
curl --request GET \
--url https://api.creatify.ai/api/voices/paginated/ \
--header 'X-API-ID: <api-key>' \
--header 'X-API-KEY: <api-key>'
Copy
Ask AI
{
"count": 123,
"next": "<string>",
"previous": "<string>",
"results": [
{
"name": "<string>",
"gender": "male",
"accents": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"accent_name": "<string>",
"preview_url": "<string>"
}
]
}
]
}
Assistant
Responses are generated using AI and may contain mistakes.