Skip to main content
Alerting & Response/Alert Rules

ListAlertSilenceRules

List all silence rules with pagination support

GET/api/v1/alerting/silence-rules

Operation ID

ListAlertSilenceRules

Since

1.0.0

Execution Mode

Synchronous

Auth Context

Auth Required

Auth Context

Send these values as request headers when calling this API.

AuthorizationstringRequired

Bearer Token

X-Tenant-IDstring

X-Tenant-ID

Request Inputs

Query Parameters

  • page
    Integer

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

    Example: 0

  • pageSize
    Integer

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

    Example: 0

Responses

200 OK
200 OK

On success, this API returns the following response structure.

  • items
    List

    List of silence rules

    Example: (nested array)

    • uuid
      String

      Unique identifier of the silence rule

      Example: silence-001

    • name
      String

      Human-readable name of the silence rule

      Example: Maintenance Window Q1

    • description
      String

      Description of why this silence rule exists

      Example: Suppress alerts during scheduled maintenance

    • matcherType
      String

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

      Example: value

    • matcherKey
      String

      Label key to match against

      Example: value

    • matcherValue
      String

      Label value pattern to match

      Example: value

    • startsAt
      String

      Start time of the silence window

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

    • endsAt
      String

      End time of the silence window

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

    • createdBy
      String

      User who created this silence rule

      Example: admin

    • createDate
      String

      Timestamp when the silence rule was created

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

    • matchers
      List

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

      Example: (nested array)

      • type
        String

        Match type: exact or regex (Phase 2)

        Example: exact

      • key
        String

        Label key to match against

        Example: severity

      • value
        String

        Label value to match

        Example: critical

  • total
    Integer

    Total number of silence rules

    Example: 5

  • limit
    Integer

    Maximum items per page

    Example: 20

  • offset
    Integer

    Offset from start of result set

    Example: 20