GET
/
v1
/
me
curl --request GET \
  --url https://api.bland.ai/v1/me \
  --header 'authorization: <authorization>'
{
    "status": "active",
    "billing": {
        "current_balance": 99919.1210000034,
        "refill_to": null
    },
    "total_calls": 9903
}

Headers

authorization
string
required

Your API key for authentication.

Response

billing
object

An object containing your billing data. Contains current_balance (number of credits), and refill_to if you have auto refill enabled.

status
string

The status of your account.

total_calls
int

The total number of calls you’ve made.

{
    "status": "active",
    "billing": {
        "current_balance": 99919.1210000034,
        "refill_to": null
    },
    "total_calls": 9903
}