Retrieve your balance
curl --request GET \
  --url https://api.nexara.ru/api/v1/billing/balance \
  --header 'Authorization: Bearer <token>'
{
  "balance": 100,
  "rate_per_min": 0.0048,
  "currency": "EUR"
}

Authorizations

Authorization
string
header
required

Use your API key as a Bearer token in the Authorization header. Example: Authorization: Bearer nx-yourkey

Response

Your balance details.

balance
number

The current balance on the account.

Example:

100

rate_per_min
number

Your personal transcription rate per minute.

Example:

0.0048

currency
string

The currency of the balance and rate.

Example:

"EUR"