Get Organization Daily Cost
GET/v1/organizations/{organization_id}/billing/cost
Get the organization’s total usage cost per UTC day over a date range (max 90 days), summing open and closed resources. One entry per day, oldest first. Defaults to the last 30 days.
Get Organization Daily Cost
curl https://api.nirvanalabs.io/v1/organizations/$ORGANIZATION_ID/billing/cost \
-H "Authorization: Bearer $NIRVANA_LABS_API_KEY"{
"currency": "USD",
"days": [
{
"cost": "-69125",
"date": "2026-07-07"
}
],
"from": "2026-06-08",
"to": "2026-07-08"
}Returns Examples
{
"currency": "USD",
"days": [
{
"cost": "-69125",
"date": "2026-07-07"
}
],
"from": "2026-06-08",
"to": "2026-07-08"
}