Skip to main content
GET
/
api
/
accounts
/
me
cURL
curl --request GET \
  --url https://api.ultravox.ai/api/accounts/me \
  --header 'X-API-Key: <api-key>'
{
  "accountId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "name": "<string>",
  "billingUrl": "<string>",
  "freeTimeUsed": "<string>",
  "freeTimeRemaining": "<string>",
  "hasActiveSubscription": true,
  "subscriptionTier": "<string>",
  "subscriptionCadence": "<string>",
  "subscriptionExpiration": "2023-11-07T05:31:56Z",
  "subscriptionScheduledUpdate": "2023-11-07T05:31:56Z",
  "subscriptionRenewal": "2023-11-07T05:31:56Z",
  "activeCalls": 123,
  "allowedConcurrentCalls": 123,
  "allowedVoices": 123,
  "allowedCorpora": 123
}

Documentation Index

Fetch the complete documentation index at: https://docs.ultravox.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

X-API-Key
string
header
required

API key

Response

200 - application/json
accountId
string<uuid>
required
read-only
name
string
required
read-only
billingUrl
string
required
read-only
freeTimeUsed
string
required
read-only

How much free time has been used by previous (or ongoing) calls.

freeTimeRemaining
string
required
read-only

How much free call time this account has remaining. (This could increase if an existing call ends without using its maximum duration or an unjoined call times out.)

hasActiveSubscription
boolean
required

Whether the account has an active subscription.

subscriptionTier
string | null
required
read-only

The current subscription tier for this account.

subscriptionCadence
string | null
required
read-only

How often the subscription is billed for this account.

subscriptionExpiration
string<date-time> | null
required
read-only

The expiration date of the current subscription for this account, if any. This is the point at which access will end unless credit remains.

subscriptionScheduledUpdate
string<date-time> | null
required
read-only

The point in the future where this account's subscription is scheduled to change.

subscriptionRenewal
string<date-time> | null
required
read-only

When this account's subscription renews, if applicable.

activeCalls
integer
required
read-only

The number of active calls for this account.

allowedConcurrentCalls
integer | null
required
read-only

The maximum number of concurrent calls allowed for this account.

allowedVoices
integer | null
required
read-only

The maximum number of custom voices allowed for this account.

allowedCorpora
integer | null
required
read-only

The maximum number of corpora allowed for this account.