v5
latestOpenAPI 3.1.02026-08-025631,1012.8 MBOrganization Billing
Get Current Usage
Get current month usage.
Returns credit consumption for the current billing period, estimated cost, and next invoice date.
Requirements:
- Read permission
Example:
response = await client.get("/v1/organizations/billing/usage/current")
print(f"Usage: {response['current_month_usage']} credits")
print(f"Estimated cost: ${response['estimated_cost_usd']}")
get/v1/organizations/billing/usage/current
Response
Successful Response
Example response
{
"current_month_usage": 23450,
"billing_month": "2025-12",
"estimated_cost_usd": 23.45,
"plan_usage": {
"product": "managed",
"tier": "build",
"plan_name": "Build",
"monthly_minimum_cents": 2500,
"objects_processed": 41230,
"object_cap": 100000,
"usage_pct": 41.2,
"cap_state": "ok"
},
"slack_invite": {
"channel_name": "ext-mixpeek-acme-com"
}
}