Get a list of all pre-built voices.
cURL
curl --request GET \ --url https://api.play.ai/api/v1/voices \ --header 'Authorization: Bearer <token>' \ --header 'X-USER-ID: <api-key>'
[ { "name": "Jun Conversational", "id": "s3://voice-cloning-zero-shot/00325021.../manifest.json", "sample": "<string>", "gender": "male", "accent": "<string>", "description": "<string>", "language": "afrikaans", "tags": [ "<string>" ], "categories": [ "<string>" ], "updatedDate": 123, "createdDate": 123 } ]
Your secret API key from PlayAI, formatted as Bearer YOUR_SECRET_API_KEY.
Bearer YOUR_SECRET_API_KEY
Your unique user ID from PlayAI.
A search query to filter the voices by name.
A list of all pre-built voices.
The response is of type object[].
object[]
Was this page helpful?