GET
/
v1
/
orgs
/
{org_id}
/
billing
/
refill
curl --request GET \
  --url https://api.bland.ai/v1/orgs/{org_id}/billing/refill \
  --header 'authorization: <authorization>'
{
  "data": 50.00,
  "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
number | null

The amount to which the balance will be recharged, or null if refilling is not enabled.

errors
null

Always null on success.

{
  "data": 50.00,
  "errors": null
}