Get usage data
GET/compute/v1/admin/usage
Retrieve aggregated usage data across the organization, optionally grouped by workspace and/or application.
Query Parameters
ending_at: string
End of the time range as an ISO 8601 date-time with timezone, for example 2026-04-08T18:56:46Z
formatdate-time
starting_at: string
Start of the time range as an ISO 8601 date-time with timezone, for example 2026-04-08T18:56:46Z
formatdate-time
limit: optional number
Maximum number of buckets to return
minimum1
page: optional string
Cursor for pagination
Returns
has_more: boolean
next_page: string
Get usage data
curl https://api.boltz.bio/compute/v1/admin/usage \
-H "x-api-key: $BOLTZ_API_KEY"{
"data": [
{
"end_time": "2019-12-27T18:11:19.117Z",
"quantity": 0,
"start_time": "2019-12-27T18:11:19.117Z",
"application": "structure_and_binding",
"workspace_id": "workspace_id"
}
],
"has_more": true,
"next_page": "next_page"
}Returns Examples
{
"data": [
{
"end_time": "2019-12-27T18:11:19.117Z",
"quantity": 0,
"start_time": "2019-12-27T18:11:19.117Z",
"application": "structure_and_binding",
"workspace_id": "workspace_id"
}
],
"has_more": true,
"next_page": "next_page"
}