> ## 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 Review Progress

> Poll the progress of metric re-evaluation. Returns current state and full metric data when complete.



## OpenAPI

````yaml get /test_framework/v1/metrics/run_reviews_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:
  /test_framework/v1/metrics/run_reviews_progress/:
    get:
      tags:
        - test_framework
      description: >-
        Poll the progress of metric re-evaluation. Returns current state and
        full metric data when complete.
      operationId: metrics-run-reviews-progress_2
      parameters:
        - in: query
          name: progress_id
          schema:
            type: string
          description: Progress ID returned from the run_reviews endpoint
          required: true
        - in: query
          name: agent_id
          schema:
            type: integer
          description: Agent ID for permission validation
        - in: query
          name: project_id
          schema:
            type: integer
          description: Project ID for permission validation
      responses:
        '200':
          description: >-
            Returns progress state with completed/failed counts and metric data
            when finished
      security:
        - api_key: []
components:
  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.

````