curl --request GET \
--url https://api.archera.ai/v1/org/{org_id}/commitments/chart \
--header 'x-api-key: <api-key>'{
"data": [
{
"date": "<string>",
"remaining_commit": 123,
"locked_commit": 123,
"unlocked_commit": 123,
"savings": 123,
"net_savings": 123,
"utilization": 123,
"unutilized_commit": 123
}
]
}Generates time-series chart data for commitment metrics over the specified time period. The data includes daily or monthly values for commitment spend, utilization, locked vs unlocked commitments, and realized savings. Results are aggregated by day or month depending on the date range selected. This endpoint is useful for visualizing commitment portfolio performance over time.
curl --request GET \
--url https://api.archera.ai/v1/org/{org_id}/commitments/chart \
--header 'x-api-key: <api-key>'{
"data": [
{
"date": "<string>",
"remaining_commit": 123,
"locked_commit": 123,
"unlocked_commit": 123,
"savings": 123,
"net_savings": 123,
"utilization": 123,
"unutilized_commit": 123
}
]
}API key for authentication. Get your key from User Settings > API Access in the Archera platform.
1Optional JSON filter criteria for commitment data
Show child attributes
"{\"field\": \"type\", \"op\": \"=\", \"value\": \"Compute Instance\"}"
Cloud provider to filter commitments by
aws, azure, gcp "aws"
Start date for the chart data (YYYY-MM-DD)
"2023-01-01"
End date for the chart data (YYYY-MM-DD)
"2023-12-31"
OK
Show child attributes
Was this page helpful?