curl --request GET \
--url https://api.anam.ai/v1/voices \
--header 'Authorization: Bearer <token>'{
"data": [
{
"id": "<string>",
"displayName": "<string>",
"provider": "<string>",
"providerVoiceId": "<string>",
"providerModelId": "<string>",
"sampleUrl": "<string>",
"gender": "male",
"country": "<string>",
"description": "<string>",
"createdAt": "<string>",
"updatedAt": "<string>"
}
],
"meta": {
"total": 123,
"lastPage": 123,
"currentPage": 123,
"perPage": 123,
"prev": 123,
"next": 123
}
}Returns a list of all voices with pagination support
curl --request GET \
--url https://api.anam.ai/v1/voices \
--header 'Authorization: Bearer <token>'{
"data": [
{
"id": "<string>",
"displayName": "<string>",
"provider": "<string>",
"providerVoiceId": "<string>",
"providerModelId": "<string>",
"sampleUrl": "<string>",
"gender": "male",
"country": "<string>",
"description": "<string>",
"createdAt": "<string>",
"updatedAt": "<string>"
}
],
"meta": {
"total": 123,
"lastPage": 123,
"currentPage": 123,
"perPage": 123,
"prev": 123,
"next": 123
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Page number for pagination
x >= 1Number of voices per page (max 100)
1 <= x <= 100Search term to filter voices by display name
Successfully retrieved voices
Show child attributes
male, female, neutral ISO 3166-1 alpha-2 country code
Was this page helpful?