Skip to main content
Alerting & Response/Alert Rules
GETAlertingSince 1.0SynchronousAuth Required

ListAlertSilenceRules

List all silence rules with pagination support

Execution Availability

Try It Out

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

Query Parameters

Request Inputs

Query Parameters

  • pageInteger

    1-based page number; 0 means no pagination 1-based page number; 0 means no pagination

    Example: 0

  • pageSizeInteger

    Results per page; default 20, max 200 Results per page; default 20, max 200

    Example: 0

Responses

200 OK

On success, this API returns the following response structure.

  • itemsList

    List of silence rules

    Example: (nested array)

    • uuidString

      Unique identifier of the silence rule

      Example: silence-001

    • nameString

      Human-readable name of the silence rule

      Example: Maintenance Window Q1

    • descriptionString

      Description of why this silence rule exists

      Example: Suppress alerts during scheduled maintenance

    • matcherTypeString

      Type of label matcher (exact, regex, etc.)

      Example: value

    • matcherKeyString

      Label key to match against

      Example: value

    • matcherValueString

      Label value pattern to match

      Example: value

    • startsAtString

      Start time of the silence window

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

    • endsAtString

      End time of the silence window

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

    • createdByString

      User who created this silence rule

      Example: admin

    • createDateString

      Timestamp when the silence rule was created

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

    • matchersList

      Fixed R-R2-03: multiple label matchers (AND semantics). When non-empty, takes precedence over deprecated matcher_type/key/value fields.

      Example: (nested array)

      • typeString

        Match type: exact or regex (Phase 2)

        Example: exact

      • keyString

        Label key to match against

        Example: severity

      • valueString

        Label value to match

        Example: critical

  • totalInteger

    Total number of silence rules

    Example: 5

  • limitInteger

    Maximum items per page

    Example: 20

  • offsetInteger

    Offset from start of result set

    Example: 20

Endpoint

GET/api/v1/alerting/silence-rules

/api/v1/alerting/silence-rules

Operation ID

ListAlertSilenceRules

Permalink

Request Example

curl -X GET '{host}/api/v1/alerting/silence-rules' -H 'Authorization: Bearer {token}'

Response Example

200
{
  "items": [
    {}
  ],
  "total": 5,
  "limit": 20,
  "offset": 20
}

Change History

This API has no change history records yet.

View all change history