List Voices
POST
https://api.async.ai/voices
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api.async.ai/voices' \
--header 'x-api-key: <api-key>' \
--header 'api-version: v1' \
--header 'Content-Type: application/json' \
--data-raw '{
"limit": 10
}'
Response Response Example
200 - Example 1
{
"voices": [
{
"voice_id": "voice_id_1",
"voice_type": "PREDEFINED",
"name": "Voice 1",
"description": "Happy male voice with british accent",
"created_at": "2025-03-30T11:15:32Z",
"updated_at": "2025-03-30T11:15:32Z",
"language": "en",
"gender": "male"
},
{
"voice_id": "voice_id_2",
"vocie_type": "CUSTOM",
"name": "Voice 2",
"description": "Sad female voice with british accent",
"created_at": "2025-03-30T12:15:52Z",
"updated_at": "2025-03-30T12:15:52Z",
"language": "en",
"gender": "female"
}
],
"next_cursor": "voice_id_3"
}
Request
Header Params
x-api-key
string
required
Example:
<api-key>
api-version
string
required
Example:
v1
Body Params application/json
Responses
Modified at 2025-06-26 10:46:51