Get Organization Usage Statement
$ nirvana organizations:billing statements
GET/v1/organizations/{organization_id}/billing/statements
Get the itemized monthly usage statement: consumption grouped by project, resource type, and dimension, priced from recorded usage. Defaults to the current month.
Get Organization Usage Statement
nirvana organizations:billing statements \
--api-key 'My API Key' \
--organization-id organization_id{
"currency": "USD",
"month": "2026-07",
"projects": [
{
"project_id": "018f8c1a-1b2c-7d3e-9f4a-5b6c7d8e9f01",
"project_name": "production",
"resource_types": [
{
"items": [
{
"children": [
{
"cost": "-69125",
"dimension": "compute_vcpu",
"display_name": "vCPU (hours)",
"quantity_hours": "-69125",
"unit_price": "-69125"
}
],
"cost": "-69125",
"dimension": "compute_n1_standard_8",
"display_name": "VM (n1-standard-8)",
"quantity_hours": "-69125",
"unit_price": "-69125"
}
],
"resource_type": "vm",
"subtotal": "-69125"
}
],
"subtotal": "-69125"
}
],
"total": "-69125"
}Returns Examples
{
"currency": "USD",
"month": "2026-07",
"projects": [
{
"project_id": "018f8c1a-1b2c-7d3e-9f4a-5b6c7d8e9f01",
"project_name": "production",
"resource_types": [
{
"items": [
{
"children": [
{
"cost": "-69125",
"dimension": "compute_vcpu",
"display_name": "vCPU (hours)",
"quantity_hours": "-69125",
"unit_price": "-69125"
}
],
"cost": "-69125",
"dimension": "compute_n1_standard_8",
"display_name": "VM (n1-standard-8)",
"quantity_hours": "-69125",
"unit_price": "-69125"
}
],
"resource_type": "vm",
"subtotal": "-69125"
}
],
"subtotal": "-69125"
}
],
"total": "-69125"
}