GET
/
v1
/
orgs
/
{org_id}
/
billing
Get Organization Billing Information
curl --request GET \
  --url https://api.bland.ai/v1/orgs/{org_id}/billing \
  --header 'authorization: <authorization>'
{
  "data": {
    "current_balance": 20.711,
    "refill_amount": null,
    "refill_at": null
  },
  "errors": null
}

Headers

authorization
string
required
Your API key for authentication.

Path Parameters

org_id
string
required
The unique identifier of the organization.

Response

data
object
The billing details of the organization.
data.current_balance
number
The current account balance of the organization.
data.refill_amount
number | null
The amount to which the balance will be refilled, or null if refilling is not enabled.
data.refill_at
number | null
The threshold at which the account will be refilled, or null if refilling is not enabled.
errors
null
Always null on success.
{
  "data": {
    "current_balance": 20.711,
    "refill_amount": null,
    "refill_at": null
  },
  "errors": null
}