> ## 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 Metric Failure Mode Insights Available Dates

> Distinct calendar dates (newest first) that have a generated



## OpenAPI

````yaml get /observability/v1/metric-failure-mode-insights/available_dates/
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/metric-failure-mode-insights/available_dates/:
    get:
      tags:
        - observability
      summary: List dates that have generated insights
      description: >-
        Return the distinct calendar dates (newest first) on which the project
        has a completed failure-mode insight, so you can page back through
        historical daily insights via the `date` filter on list.
      operationId: metric-failure-mode-insights-available-dates-retrieve
      parameters:
        - name: project
          in: query
          required: false
          schema:
            type: integer
          description: >-
            Tenant scope. Supply one of `project` when authenticating with a
            user session or OAuth bearer token; omit when using an API key
            already scoped to the tenant.
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MetricFailureModeInsight'
          description: ''
      security:
        - api_key: []
components:
  schemas:
    MetricFailureModeInsight:
      type: object
      description: Insight row exposed to the Observability → Insights UI.
      properties:
        id:
          type: integer
          readOnly: true
        project:
          type: integer
          readOnly: true
        metric:
          type:
            - integer
            - 'null'
          readOnly: true
        predefined_metric:
          type:
            - integer
            - 'null'
          readOnly: true
        metric_name:
          type: string
          readOnly: true
        is_triage:
          type: boolean
          description: |-
            Derived live from the metric's current `triage_enabled` + rubric
            membership (not persisted) — the FE renders the triage section only
            when this is true.
          readOnly: true
        window_start:
          type: string
          format: date-time
          readOnly: true
        window_end:
          type: string
          format: date-time
          readOnly: true
        num_calls_analyzed:
          type: integer
          readOnly: true
        total_failures_in_window:
          type: integer
          readOnly: true
        status:
          enum:
            - pending
            - running
            - succeeded
            - failed
            - skipped_no_failures
          type: string
          description: |-
            * `pending` - Pending
            * `running` - Running
            * `succeeded` - Succeeded
            * `failed` - Failed
            * `skipped_no_failures` - Skipped No Failures
          x-spec-enum-id: 7052652d8ca01a2a
          readOnly: true
        headline:
          type: string
          readOnly: true
        overall_status_emoji:
          type: string
          readOnly: true
        failure_modes:
          readOnly: true
        error_message:
          type: string
          readOnly: true
        duration_seconds:
          type:
            - number
            - 'null'
          format: double
          readOnly: true
        created_at:
          type: string
          format: date-time
          readOnly: true
        updated_at:
          type: string
          format: date-time
          readOnly: true
  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.

````