> ## Documentation Index
> Fetch the complete documentation index at: https://docs.cekura.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Alert Summarization Progress

> Alerts summarize progress



## OpenAPI

````yaml get /observability/v1/alerts/summarize_progress/
openapi: 3.1.0
info:
  title: Cekura API
  version: v1
  description: >-
    Complete API documentation for the Cekura platform. This API provides
    endpoints for testing, observing, and evaluating AI voice agents — including
    managing agents, running evaluators, defining metrics, and analyzing call
    quality.
servers:
  - url: https://api.cekura.ai
security: []
paths:
  /observability/v1/alerts/summarize_progress/:
    get:
      tags:
        - observability
      description: Manage alerts that fire when metric thresholds are crossed.
      operationId: alerts-summarize-progress-retrieve
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AlertDetail'
          description: ''
      security:
        - api_key: []
components:
  schemas:
    AlertDetail:
      type: object
      description: Detailed serializer for alert retrieval
      properties:
        id:
          type: integer
          readOnly: true
        name:
          type: string
          description: Alert name
          maxLength: 255
        enabled:
          type: boolean
          description: Enable/disable alert
        project:
          type: integer
          description: Project this alert belongs to
        project_name:
          type: string
          readOnly: true
        source_type:
          enum:
            - metric
          type: string
          x-spec-enum-id: 2713692dc60667c9
          description: |-
            Type of data source: metric, duration, call_volume, etc.

            * `metric` - Metric
        source_id:
          type:
            - integer
            - 'null'
          maximum: 2147483647
          minimum: 0
          description: ID of monitored object
        source_object_name:
          type: string
          readOnly: true
        source_object_details:
          type: object
          additionalProperties: {}
          description: Get basic details about the source object
          readOnly: true
        source:
          description: >-
            Source config keyed on `sub_type`. `normal`: {sub_type, filters?}.
            `significant_change`: {sub_type, window_size, filters?}.
            `threshold`: {sub_type, window_size, filters?}. `filters` is an
            optional CallLogQueryFilter expression.
        threshold:
          description: >-
            Threshold config keyed on the source's `sub_type`. `normal`: {}
            (fires on every failing eval). `significant_change`:
            {std_multiplier, ewma_alpha, direction}. `threshold`: {operator
            (gt|lt|outside), value (number | {low, high}), min_breaches}.
        notifications:
          description: >-
            Notification routing. `{slack: {workspace_id, channel_id?}}` to send
            to a specific workspace/channel. Empty fans out to every project
            workspace; empty + no project workspaces means the alert is silent.
        last_triggered_at:
          type:
            - string
            - 'null'
          format: date-time
          readOnly: true
          description: Last trigger timestamp
        trigger_count:
          type: integer
          readOnly: true
          description: Total triggers count
        created_at:
          type: string
          format: date-time
          readOnly: true
        updated_at:
          type: string
          format: date-time
          readOnly: true
        last_updated_by:
          type:
            - integer
            - 'null'
          readOnly: true
          description: User who last updated this alert
        last_updated_by_email:
          type: string
          readOnly: true
      required:
        - name
        - project
        - source_type
  securitySchemes:
    api_key:
      type: apiKey
      name: X-CEKURA-API-KEY
      in: header
      description: >-
        API Key Authentication. It should be included in the header of each
        request.

````