GET /slos/{id}
Get SLO with latest burn event
Parameters
| Name | In | Required | Type | Description |
|---|---|---|---|---|
id | path | yes | string |
Example request
curl -X GET "/api/v1/slos/{id}" \
-H "Authorization: Bearer YOUR_API_KEY"
Responses
200: ok
{
"id": "string",
"name": "string",
"service_id": "string",
"metric_def_id": "string",
"target_pct": null,
"window_days": 0,
"public": true,
"error_budget_remaining_pct": null,
"last_evaluated_at": null,
"created_at": "2026-01-01T00:00:00.000Z"
}
401: missing or invalid bearer token
403: missing required scope
404: not found (or cross-tenant: same response)
429: rate limit exceeded
Was this page helpful?