List Usage Records
GET/v1/usage
List per-resource usage records for the current organization. Each item is one resource with its nested dimension history (active and closed segments).
List Usage Records
curl https://api.nirvanalabs.io/v1/usage \
-H "Authorization: Bearer $NIRVANA_LABS_API_KEY"{
"items": [
{
"dimensions": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"dimension": "compute_n1_standard_8",
"ended_at": "2026-02-01T00:00:00Z",
"quantity": 1,
"started_at": "2026-01-01T00:00:00Z",
"children": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"dimension": "compute_vcpu",
"ended_at": "2026-02-01T00:00:00Z",
"quantity": 2,
"started_at": "2026-01-01T00:00:00Z"
}
]
}
],
"ended_at": "2026-02-01T00:00:00Z",
"project_id": "123e4567-e89b-12d3-a456-426614174000",
"region": "us-sva-2",
"resource_id": "123e4567-e89b-12d3-a456-426614174000",
"resource_type": "vm",
"started_at": "2026-01-01T00:00:00Z"
}
],
"pagination": {
"next_cursor": "RhwniMT4B74siYZcPF8TnCdGI1l9rpPvg",
"previous_cursor": "ARhwnmi1hA7wEbHbMjdYQlOB_ZusP4fYvw",
"total_count": 125
}
}Returns Examples
{
"items": [
{
"dimensions": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"dimension": "compute_n1_standard_8",
"ended_at": "2026-02-01T00:00:00Z",
"quantity": 1,
"started_at": "2026-01-01T00:00:00Z",
"children": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"dimension": "compute_vcpu",
"ended_at": "2026-02-01T00:00:00Z",
"quantity": 2,
"started_at": "2026-01-01T00:00:00Z"
}
]
}
],
"ended_at": "2026-02-01T00:00:00Z",
"project_id": "123e4567-e89b-12d3-a456-426614174000",
"region": "us-sva-2",
"resource_id": "123e4567-e89b-12d3-a456-426614174000",
"resource_type": "vm",
"started_at": "2026-01-01T00:00:00Z"
}
],
"pagination": {
"next_cursor": "RhwniMT4B74siYZcPF8TnCdGI1l9rpPvg",
"previous_cursor": "ARhwnmi1hA7wEbHbMjdYQlOB_ZusP4fYvw",
"total_count": 125
}
}