List custom voices
curl --request GET \
--url https://api.opper.ai/v3/audio/voices \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.opper.ai/v3/audio/voices"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.opper.ai/v3/audio/voices', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"data": [
{
"created": 123,
"id": "<string>",
"object": "<string>",
"provider": "<string>",
"expires_at": 123,
"languages": [
"<string>"
],
"name": "<string>"
}
],
"meta": {
"limit": 123,
"offset": 123,
"total": 123
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
},
"meta": {}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
},
"meta": {}
}Audio
List Voices
List the project’s custom cloned voices, newest first. Paginated with the shared meta+data shape. Preset voices are not listed here — they’re documented per model and passed to /v3/audio/speech by name.
GET
/
v3
/
audio
/
voices
List custom voices
curl --request GET \
--url https://api.opper.ai/v3/audio/voices \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.opper.ai/v3/audio/voices"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.opper.ai/v3/audio/voices', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"data": [
{
"created": 123,
"id": "<string>",
"object": "<string>",
"provider": "<string>",
"expires_at": 123,
"languages": [
"<string>"
],
"name": "<string>"
}
],
"meta": {
"limit": 123,
"offset": 123,
"total": 123
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
},
"meta": {}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
},
"meta": {}
}Authorizations
API key authentication. Pass your API key as a Bearer token.
Query Parameters
Max items (default 20, max 100)
Items to skip (default 0)