Get cost breakdown
Authorization
BearerAuth API key with l4_live_ or l4_test_ prefix
In: header
Query Parameters
Response format: table (paginated UI), chart (aggregated stacked bar), csv (export), raw (all records)
"table"^(table|chart|csv|raw)$Period in YYYY-MM format (defaults to current month)
Filter by provider: aws, gcp, azure, k8s
Granularity: 'daily' or 'monthly' (used for chart format)
"daily"^(daily|monthly)$Grouping dimension for chart format: 'provider' (default) or 'account_id'
Start date in ISO 8601 format (e.g., 2026-02-01T00:00:00.000Z). Used for chart and table formats
End date in ISO 8601 format (e.g., 2026-02-01T00:00:00.000Z). Used for chart and table formats
Page number (1-indexed, table format only)
11 <= valueItems per page (max 100, table format only)
101 <= value <= 100Sort field: cost, service, region, account_id, change_percentage
"cost"^(cost|service|region|account_id|change_percentage)$Sort order: asc or desc
"desc"^(asc|desc)$Header Parameters
Response Body
application/json
application/json
curl -X GET "https://api.levelfour.ai/api/v1/spending/breakdown" \ -H "authorization: string"{
"success": true,
"timestamp": "2019-08-24T14:15:22Z",
"data": {
"period": "string",
"items": [
{
"service": "string",
"provider_id": "string",
"environment": "string",
"region": "string",
"account_id": "string",
"tag_key": "string",
"tag_value": "string",
"cost": 0,
"previous_cost": 0,
"change_percentage": 0
}
],
"pagination": {
"total_items": 0,
"total_pages": 0,
"current_page": 0,
"page_size": 0,
"has_next": true,
"has_previous": true
}
}
}{
"detail": [
{
"loc": [
"string"
],
"msg": "string",
"type": "string",
"input": null,
"ctx": {}
}
]
}