Skip to main content
GET
/
v1
/
balance
curl https://api.lumenfall.ai/v1/balance \
  -H "Authorization: Bearer $LUMENFALL_API_KEY"
{
  "object": "balance",
  "billing_type": "prepaid",
  "available": {
    "amount": 12.50,
    "currency": "usd"
  }
}
Returns the current balance and billing type for your account.
This endpoint uses the native Lumenfall API path (/v1/balance), not the OpenAI-compatible prefix (/openai/v1).

Response

object
string
Always balance.
billing_type
string
Your account’s billing type - either prepaid or postpaid.
available
object
The available balance.
curl https://api.lumenfall.ai/v1/balance \
  -H "Authorization: Bearer $LUMENFALL_API_KEY"
{
  "object": "balance",
  "billing_type": "prepaid",
  "available": {
    "amount": 12.50,
    "currency": "usd"
  }
}