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

# Poll Simplify Metric Prompt Progress

> Poll the progress of an async metric prompt simplification job started by `simplify_prompt/`.



## OpenAPI

````yaml get /test_framework/v1/metrics/simplify_prompt_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/simplify_prompt_progress/:
    get:
      tags:
        - test_framework
      description: Poll the progress of async prompt simplification.
      operationId: metrics-simplify-prompt-progress-retrieve
      parameters:
        - in: query
          name: progress_id
          schema:
            type: string
          description: Progress ID returned from simplify_prompt endpoint
          required: true
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SimplifyPromptProgressResponse'
          description: ''
      security:
        - api_key: []
components:
  schemas:
    SimplifyPromptProgressResponse:
      type: object
      properties:
        status:
          type: string
          description: queued, processing, completed, or failed
        original_prompt:
          type: string
        simplified_prompt:
          type: string
        skipped_simplification:
          type: boolean
        metric_id:
          type: integer
        error:
          type: string
      required:
        - status
  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.

````