Skip to content

Count Voices

FreshGET
GET https://api.creatify.ai/api/voices/count/

Get the total count of available voices.

Headers

HeaderTypeRequiredDescription
X-API-IDstringYesYour Creatify API ID
X-API-KEYstringYesYour Creatify API key

Example Request

bash
curl -X GET 'https://api.creatify.ai/api/voices/count/' \
  -H 'X-API-ID: your-api-id' \
  -H 'X-API-KEY: your-api-key'

Response

json
{
  "count": 150
}

Response Fields

FieldTypeDescription
countintegerTotal number of available voices (including built-in and cloned)

Status Codes

CodeDescription
200Success
401Unauthorized -- invalid API credentials
500Internal server error

TIP

Use this endpoint to check how many voices are available before deciding on pagination parameters for the paginated list endpoint.