Overview
Agents
Calls, Messages, Stages
- Calls Overview
- GETList Calls
- GETGet Call
- POSTCreate Call
- DELDelete Call
- GETList Call Messages
- GETList Call Tools
- GETGet Call Recording
- GETList Call Stages
- GETGet Call Stage
- GETList Call Stage Messages
- GETList Call Stage Tools
- GETGet Call Stage Message Audio
- GETList Deleted Calls
- GETGet Deleted Call
- GETList Call Events
Corpora, Query, Sources
- Corpus Service (RAG) Overview
- GETList Corpora
- POSTCreate Corpus
- GETGet Corpus
- PATCHUpdate Corpus
- DELDelete Corpus
- POSTQuery Corpus
- GETList Corpus Sources
- POSTCreate Corpus Source
- GETGet Corpus Source
- PATCHUpdate Corpus Source
- DELDelete Corpus Source
- GETList Corpus Source Documents
- GETGet Corpus Source Document
- POSTCreate Corpus File Upload
Webhooks
Accounts
Set TTS API keys
Allows adding or updating TTS provider API keys to an account, enabling ExternalVoices
PATCH
/
api
/
accounts
/
me
/
tts_api_keys
Copy
Ask AI
curl --request PATCH \
--url https://api.ultravox.ai/api/accounts/me/tts_api_keys \
--header 'Content-Type: application/json' \
--header 'X-API-Key: <api-key>' \
--data '{
"elevenLabs": "<string>",
"cartesia": "<string>",
"playHt": "<string>",
"lmnt": "<string>"
}'
Copy
Ask AI
{
"elevenLabs": {
"prefix": "<string>"
},
"cartesia": {
"prefix": "<string>"
},
"playHt": {
"prefix": "<string>"
},
"lmnt": {
"prefix": "<string>"
}
}
This is not necessary for using the service’s included voices or your own voice clones added to the service.
Authorizations
API key
Body
application/json
Response
200 - application/json
The response is of type object
.
Copy
Ask AI
curl --request PATCH \
--url https://api.ultravox.ai/api/accounts/me/tts_api_keys \
--header 'Content-Type: application/json' \
--header 'X-API-Key: <api-key>' \
--data '{
"elevenLabs": "<string>",
"cartesia": "<string>",
"playHt": "<string>",
"lmnt": "<string>"
}'
Copy
Ask AI
{
"elevenLabs": {
"prefix": "<string>"
},
"cartesia": {
"prefix": "<string>"
},
"playHt": {
"prefix": "<string>"
},
"lmnt": {
"prefix": "<string>"
}
}
Assistant
Responses are generated using AI and may contain mistakes.