List TTS providers
Configuration
List TTS providers
List text-to-speech providers available for voice agents
GET
List TTS providers
Returns the text-to-speech providers you can synthesise agent speech with. To
pick a specific voice, see List voices.
Documentation Index
Fetch the complete documentation index at: /docs/llms.txt
Use this file to discover all available pages before exploring further.
curl --request GET \
--url http://localhost:8787/api/v1/tts-providers \
--header 'Authorization: Bearer <token>'import requests
url = "http://localhost:8787/api/v1/tts-providers"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('http://localhost:8787/api/v1/tts-providers', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));List text-to-speech providers available for voice agents
curl --request GET \
--url http://localhost:8787/api/v1/tts-providers \
--header 'Authorization: Bearer <token>'import requests
url = "http://localhost:8787/api/v1/tts-providers"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('http://localhost:8787/api/v1/tts-providers', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));curl https://api.agentic-os.com/api/v1/tts-providers \
-H "Authorization: Bearer $AGENTIC_OS_API_KEY"
requests.get(
"https://api.agentic-os.com/api/v1/tts-providers",
headers={"Authorization": f"Bearer {API_KEY}"},
)
await fetch("https://api.agentic-os.com/api/v1/tts-providers", {
headers: { Authorization: `Bearer ${API_KEY}` },
});
