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

# Bulk Evaluate Results Metrics

> Schedules re-evaluation of the given metrics against every completed/failed, non-deleted run of every selected result. Metrics are validated against each agent's metric scope; balance is checked for the full batch up front before any work is dispatched. Each affected result's status is flipped to RUNNING. Maximum 100 result IDs per request.



## OpenAPI

````yaml post /test_framework/v1/results/bulk_evaluate_metrics/
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/results/bulk_evaluate_metrics/:
    post:
      tags:
        - Results
      summary: Re-evaluate metrics across multiple results
      description: >-
        Schedules re-evaluation of the given metrics against every
        completed/failed, non-deleted run of every selected result. Metrics are
        validated against each agent's metric scope; balance is checked for the
        full batch up front before any work is dispatched. Each affected
        result's status is flipped to RUNNING. Maximum 100 result IDs per
        request.
      operationId: bulk-evaluate-result-metrics_2
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/SchemaPostBulkEvaluateResultMetrics'
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/SchemaPostBulkEvaluateResultMetrics'
          multipart/form-data:
            schema:
              $ref: '#/components/schemas/SchemaPostBulkEvaluateResultMetrics'
        required: true
      responses:
        '200':
          description: No response body
        '400':
          content:
            application/json:
              schema:
                type: object
                properties:
                  field_name:
                    type: array
                    items:
                      type: string
          description: ''
      security:
        - api_key: []
components:
  schemas:
    SchemaPostBulkEvaluateResultMetrics:
      type: object
      properties:
        result_ids:
          type: array
          items:
            type: integer
          description: >-
            Result IDs whose completed/failed runs should be re-evaluated.
            Maximum 100.
          maxItems: 100
          minItems: 1
        metric_ids:
          type: array
          items:
            type: integer
          description: Metric IDs to re-evaluate against every eligible run of each result.
          minItems: 1
      required:
        - metric_ids
        - result_ids
  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.

````