v5
OpenAPI 3.1.02026-08-025631,1012.8 MBOrganization Billing
Get Credit Balance
Get current credit balance and tier information.
Returns the organization's credit balance, current tier, and usage statistics. Useful for displaying billing status in dashboards.
Requirements:
- Read permission
Example:
response = await client.get("/v1/organizations/billing/balance")
print(f"Balance: {response['credit_balance']} credits")
print(f"Tier: {response['account_tier']}")
get/v1/organizations/billing/balance
Response
Successful Response
Example response
{
"organization_id": "org_demo123",
"credit_balance": 45230,
"account_tier": "free",
"next_tier": "pro",
"credits_until_next_tier": 954770,
"estimated_days_remaining": 15,
"daily_burn_rate": 3015.3
}