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
Get Account
Returns account details for a single account
GET
/
api
/
accounts
/
me
curl --request GET \
--url https://api.ultravox.ai/api/accounts/me \
--header 'X-API-Key: <api-key>'
{
"name": "<string>",
"billingUrl": "<string>",
"freeTimeUsed": "<string>",
"freeTimeRemaining": "<string>",
"hasActiveSubscription": true,
"activeCalls": 123,
"allowedConcurrentCalls": 123,
"allowedVoices": 123,
"allowedCorpora": 123
}
Authorizations
API key
Response
200 - application/json
The response is of type object
.
curl --request GET \
--url https://api.ultravox.ai/api/accounts/me \
--header 'X-API-Key: <api-key>'
{
"name": "<string>",
"billingUrl": "<string>",
"freeTimeUsed": "<string>",
"freeTimeRemaining": "<string>",
"hasActiveSubscription": true,
"activeCalls": 123,
"allowedConcurrentCalls": 123,
"allowedVoices": 123,
"allowedCorpora": 123
}