> ## 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.

# List Critical Metric Scenarios

> List scenarios flagged by critical metrics



## OpenAPI

````yaml get /test_framework/v1/critical-metric-scenarios/
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:
  /test_framework/v1/critical-metric-scenarios/:
    get:
      tags:
        - test_framework
      description: List scenarios flagged by critical metrics
      operationId: critical-metric-scenarios-list
      parameters:
        - name: page
          required: false
          in: query
          description: A page number within the paginated result set.
          schema:
            type: integer
        - name: page_size
          required: false
          in: query
          description: Number of results to return per page.
          schema:
            type: integer
        - name: agent_id
          in: query
          required: false
          schema:
            type: integer
          description: >-
            Tenant scope. Supply one of `agent_id`, `category_id`, `metric_id`
            when authenticating with a user session or OAuth bearer token; omit
            when using an API key already scoped to the tenant.
        - name: category_id
          in: query
          required: false
          schema:
            type: integer
          description: >-
            Tenant scope. Supply one of `agent_id`, `category_id`, `metric_id`
            when authenticating with a user session or OAuth bearer token; omit
            when using an API key already scoped to the tenant.
        - name: metric_id
          in: query
          required: false
          schema:
            type: integer
          description: >-
            Tenant scope. Supply one of `agent_id`, `category_id`, `metric_id`
            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/PaginatedCriticalMetricScenarioList'
          description: ''
      security:
        - api_key: []
components:
  schemas:
    PaginatedCriticalMetricScenarioList:
      type: object
      required:
        - count
        - results
      properties:
        count:
          type: integer
          example: 123
        next:
          type: string
          nullable: true
          format: uri
          example: https://api.cekura.ai/example/v1/example-external/?page=4
        previous:
          type: string
          nullable: true
          format: uri
          example: https://api.cekura.ai/example/v1/example-external/?page=3
        results:
          type: array
          items:
            $ref: '#/components/schemas/CriticalMetricScenario'
    CriticalMetricScenario:
      type: object
      properties:
        id:
          type: integer
          readOnly: true
        scenario:
          type: string
          readOnly: true
          description: Name of the scenario
        priority:
          enum:
            - critical
            - non-critical
            - not_a_bug
          type: string
          x-spec-enum-id: 6b5f38576e0a1903
          description: |-
            Priority of the Critical Metric Scenario

            * `critical` - Critical
            * `non-critical` - Non Critical
            * `not_a_bug` - Not A Bug
        result:
          type: integer
          writeOnly: true
        call_log:
          type: integer
          writeOnly: 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.

````