Voices
We have a range of functionality with voices. Including cloning voices. These are some frequently asked questions!
How do I get access to my private voices?
curl --request GET \
--url 'https://v2.api.audio/speech/voice?type=private' \
--header 'accept: application/json' \
--header 'x-api-key: APIKEY'
How do I list all of our voices by multiple parameters
We have here an example where we list all the voices that are tags=deep and the gender male. You can imagine doing this for multiple parameters.
curl --request GET \
--url 'https://v2.api.audio/speech/voice?tags=deep&gender=male' \
--header 'accept: application/json' \
--header 'x-api-key: APIKEY'
Updated 2 months ago