Retrieve usage, consumption, and billing details for all sub-accounts under the authenticated organization.
enterprise feature.You can read more about our enterprise offering here Bolna enterprise.Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
The start timestamp (in ISO 8601 UTC format) from which to calculate usage. If not provided, the start of the current month (UTC) is used by default.
The end timestamp in ISO 8601 UTC format up to which usage is calculated. If not provided, the end of the current date (in UTC) will be used.
Get usage details for all sub-accounts, including cost breakdown.
The starting timestamp (in ISO 8601 UTC format) to calculate usage.
The ending timestamp (in ISO 8601 UTC format) to calculate usage.
Total numbers of executions.
Total duration in seconds.
Total cumulative cost of executions in cents.
Total cumulative platform cost of executions in cents.
Total cumulative telephony cost of executions in cents.
A map of call status with their counts.
Unique identifier for the sub-account.
Human-readable name of the sub-account.
[
{
"from": "2025-09-01T00:00:00",
"to": "2025-09-25T23:59:59.999999",
"total_records": 0,
"total_duration": 0,
"total_cost": 0,
"total_platform_cost": 0,
"total_telephony_cost": 0,
"status_map": {},
"synthesizer_cost_map": {},
"transcriber_cost_map": {},
"llm_cost_map": { "cost": 0, "tokens": {} },
"sub_account_id": "5416892b-9052-47d6-92e3-85ac51426903",
"sub_account_name": "test-one"
},
{
"from": "2025-09-01T00:00:00",
"to": "2025-09-25T23:59:59.999999",
"total_records": 7,
"total_duration": 22,
"total_cost": 4.864,
"total_platform_cost": 4,
"total_telephony_cost": 0.826,
"status_map": { "busy": 5, "completed": 2 },
"synthesizer_cost_map": {
"elevenlabs": {
"eleven_turbo_v2_5": { "characters": 129, "cost": 0 }
}
},
"transcriber_cost_map": {
"deepgram": {
"nova-2": { "duration": 15.199938, "cost": 0 }
}
},
"llm_cost_map": {
"cost": 0.038,
"tokens": {
"gpt-4o-mini": { "input": 17, "output": 127 }
}
},
"sub_account_id": "33204bca-0902-4b90-b6d2-6ee0b65e7ef9",
"sub_account_name": "test-2"
}
]