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

GetObjective

Retrieve a single SLO objective by its unique identifier.

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

    Unique identifier of the SLO objective to retrieve.

Responses

200 OK

On success, this API returns the following response structure.

  • idString

    Unique identifier of the SLO objective.

    Example: slo-xyz789

  • nameString

    Human-readable name of the SLO objective.

    Example: api-availability-99.9

  • sliIdString

    Identifier of the SLI this objective is based on.

    Example: sli-abc123

  • targetLong

    Target compliance ratio (0.0–1.0), e.g. 0.999 for 99.9%.

    Example: 0.999

  • windowString

    Rolling compliance window: 7d | 30d | 90d.

    Example: 30d

  • tenantIdString

    Tenant that owns this SLO objective.

    Example: tenant-001

  • alertOnBurnRateBoolean

    Whether to trigger alerts when the burn rate exceeds thresholds.

    Example: true

  • ownerTeamString

    Team responsible for maintaining this SLO.

    Example: platform-infra

  • createdAtString

    Timestamp when this SLO objective was created.

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

Endpoint

GET/api/v1/slo/objectives/{sloId}

/api/v1/slo/objectives/{sloId}

Operation ID

GetObjective

Permalink

Request Example

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

Response Example

200
{
  "id": "slo-xyz789",
  "name": "api-availability-99.9",
  "sliId": "sli-abc123",
  "target": 0.999,
  "window": "30d",
  "tenantId": "tenant-001",
  "alertOnBurnRate": true,
  "ownerTeam": "platform-infra"
}

Change History

This API has no change history records yet.

View all change history