Skip to main content
GET
/
v1
/
me
Account Details
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
}

Documentation Index

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

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

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
}