Agents
Calls, Messages, Stages
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
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>"
}'
{
"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
.
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>"
}'
{
"elevenLabs": {
"prefix": "<string>"
},
"cartesia": {
"prefix": "<string>"
},
"playHt": {
"prefix": "<string>"
},
"lmnt": {
"prefix": "<string>"
}
}
Assistant
Responses are generated using AI and may contain mistakes.