> ## 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 Generate Metrics Progress

> Poll the progress of metric generation. Returns current state including status and generated metrics.

<Note>
  When `status` is `"completed"`, the response includes a `metrics` array with the generated metric definitions. These metrics are **not yet saved** — pass them to [Create Metrics in Bulk](/api-reference/test_framework/create-metrics-in-bulk) to persist them.
</Note>


## OpenAPI

````yaml get /test_framework/v1/metrics/generate_metrics_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/generate_metrics_progress/:
    get:
      tags:
        - test_framework
      description: >-
        Poll the progress of metric generation. Returns current state including
        status and generated metrics.
      operationId: metrics-generate-metrics-progress-retrieve
      parameters:
        - in: query
          name: progress_id
          schema:
            type: string
          description: Progress ID returned from the generate_metrics endpoint
          required: true
      responses:
        '200':
          description: Returns generation state with status and generated metrics
      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.

````