Skip to main content
SLO & Service Quality/SLO
GETSLOSince 1.0SynchronousAuth Required

GetErrorBudget

Get the current error budget status including consumption and burn rates.

Execution Availability

Try It Out

Submit a mock request using the current auth context and example-driven inputs.

Path Parameters

Request Inputs

Path Parameters

  • sloIdStringRequired

    Identifier of the SLO objective to retrieve the error budget for.

Responses

200 OK

On success, this API returns the following response structure.

  • sloIdString

    Identifier of the SLO objective this error budget belongs to.

    Example: slo-xyz789

  • totalBudgetMinutesLong

    Total allowable downtime minutes within the compliance window.

    Example: 43.8

  • consumedMinutesLong

    Minutes of downtime already consumed from the error budget.

    Example: 15.3

  • remainingMinutesLong

    Minutes of error budget still available.

    Example: 28.5

  • consumedPctLong

    Percentage of the error budget already consumed.

    Example: 34.9

  • burnRate1hLong

    Error budget burn rate over the last 1 hour (multiplier relative to ideal).

    Example: 1.2

  • burnRate6hLong

    Error budget burn rate over the last 6 hours.

    Example: 0.8

  • burnRate24hLong

    Error budget burn rate over the last 24 hours.

    Example: 0.6

  • projectedExhaustionAtString

    Projected timestamp when the error budget will be fully exhausted (optional).

    Example: 2026-01-15T08:00:00Z

  • updatedAtString

    Timestamp when this error budget status was last computed.

    Example: 2026-01-15T08:00:00Z

Endpoint

GET/api/v1/slo/objectives/{sloId}/error-budget

/api/v1/slo/objectives/{sloId}/error-budget

Operation ID

GetErrorBudget

Permalink

Request Example

curl -X GET '{host}/api/v1/slo/objectives/{sloId}/error-budget' -H 'Authorization: Bearer {token}'

Response Example

200
{
  "sloId": "slo-xyz789",
  "totalBudgetMinutes": 43.8,
  "consumedMinutes": 15.3,
  "remainingMinutes": 28.5,
  "consumedPct": 34.9,
  "burnRate1h": 1.2,
  "burnRate6h": 0.8,
  "burnRate24h": 0.6
}

Change History

This API has no change history records yet.

View all change history