> ## Documentation Index
> Fetch the complete documentation index at: https://docs.veri.studio/llms.txt
> Use this file to discover all available pages before exploring further.

# List evaluation runs



## OpenAPI

````yaml /api-reference/openapi.json get /v1/evals/{eval_id}/runs
openapi: 3.1.0
info:
  title: Veri API
  description: >-
    REST API for the Veri RL post-training platform. All requests require a
    Bearer API key (`vk_` prefix).
  license:
    name: ''
  version: 0.1.0
servers:
  - url: https://api.veri.studio
    description: Production
security: []
tags:
  - name: Training jobs
    description: Create, monitor, and manage training jobs.
  - name: Datasets
    description: Upload and connect training datasets.
  - name: Reward functions
    description: Upload and manage reward functions.
  - name: Deployments
    description: Serve trained models and run inference.
  - name: Evaluations
    description: Score models against datasets and benchmarks.
  - name: Volumes
    description: Persistent file storage mounted into jobs.
  - name: Models
    description: Custom model registry deployments serve from.
  - name: Regions
    description: Discover available launch regions.
  - name: GPU
    description: Live GPU availability by provider and region.
  - name: Code artifacts
    description: Upload custom training script bundles.
  - name: Billing
    description: Credit balance and transaction history.
  - name: API keys
    description: Create and revoke API keys.
  - name: Account
    description: The authenticated caller's identity.
  - name: SSH keys
    description: Manage SSH key pairs for compute access.
  - name: Settings
    description: Account-level integrations (Weights & Biases).
paths:
  /v1/evals/{eval_id}/runs:
    get:
      tags:
        - Evaluations
      summary: List evaluation runs
      operationId: list_runs
      parameters:
        - name: eval_id
          in: path
          description: Evaluation ID
          required: true
          schema:
            type: string
        - name: limit
          in: query
          required: false
          schema:
            type: integer
            format: int32
        - name: after
          in: query
          required: false
          schema:
            type: string
      responses:
        '200':
          description: A paginated list of evaluation runs
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PaginatedList_EvalRunResponse'
        '404':
          description: Evaluation not found or not owned by the caller
      security:
        - bearerAuth: []
components:
  schemas:
    PaginatedList_EvalRunResponse:
      type: object
      required:
        - object
        - data
        - has_more
      properties:
        object:
          type: string
        data:
          type: array
          items:
            type: object
            required:
              - object
              - id
              - eval_id
              - model
              - status
              - runner_type
              - epochs
              - samples_per_item
              - phase
              - created_at
              - updated_at
            properties:
              object:
                type: string
              id:
                type: string
              eval_id:
                type: string
              model:
                type: string
              status:
                $ref: '#/components/schemas/EvalRunStatus'
              generation_params:
                oneOf:
                  - type: 'null'
                  - $ref: '#/components/schemas/GenerationParams'
              num_samples:
                type:
                  - integer
                  - 'null'
                format: int32
              deployment_id:
                type:
                  - string
                  - 'null'
              snapshot: {}
              runner_type:
                type: string
              runner_version:
                type:
                  - string
                  - 'null'
              runner_image_digest:
                type:
                  - string
                  - 'null'
              seed:
                type:
                  - integer
                  - 'null'
                format: int64
              epochs:
                type: integer
                format: int32
              samples_per_item:
                type: integer
                format: int32
              sampling_policy:
                type:
                  - string
                  - 'null'
              total_prompt_tokens:
                type: integer
                format: int32
              total_completion_tokens:
                type: integer
                format: int32
              total_cost_usd:
                type: number
                format: double
              usage: {}
              phase:
                type: string
              scoring_revision:
                type: integer
                format: int32
              external_task_arn:
                type:
                  - string
                  - 'null'
              artifacts: {}
              baseline_run_id:
                type:
                  - string
                  - 'null'
              gate_status:
                type:
                  - string
                  - 'null'
              gate_results: {}
              total_items:
                type:
                  - integer
                  - 'null'
                format: int32
              processed_items:
                type:
                  - integer
                  - 'null'
                format: int32
              results:
                oneOf:
                  - type: 'null'
                  - $ref: '#/components/schemas/EvalResults'
              error_message:
                type:
                  - string
                  - 'null'
              started_at:
                type:
                  - string
                  - 'null'
                format: date-time
              completed_at:
                type:
                  - string
                  - 'null'
                format: date-time
              created_at:
                type: string
                format: date-time
              updated_at:
                type: string
                format: date-time
        has_more:
          type: boolean
    EvalRunStatus:
      type: string
      enum:
        - queued
        - running
        - completed
        - failed
        - cancelled
    GenerationParams:
      type: object
      properties:
        max_tokens:
          type: integer
          format: int32
        temperature:
          type: number
          format: double
        top_p:
          type: number
          format: double
        stop:
          type:
            - array
            - 'null'
          items:
            type: string
        seed:
          type:
            - integer
            - 'null'
          format: int64
    EvalResults:
      type: object
      required:
        - total_items
        - scores
      properties:
        total_items:
          type: integer
          format: int32
        scores:
          type: object
          additionalProperties:
            $ref: '#/components/schemas/ScorerResult'
          propertyNames:
            type: string
    ScorerResult:
      type: object
      required:
        - mean
        - median
        - std
        - min
        - max
        - count
      properties:
        mean:
          type: number
          format: double
        median:
          type: number
          format: double
        std:
          type: number
          format: double
        min:
          type: number
          format: double
        max:
          type: number
          format: double
        count:
          type: integer
          format: int32
        error_count:
          type: integer
          format: int32
        confidence_interval_low:
          type:
            - number
            - 'null'
          format: double
        confidence_interval_high:
          type:
            - number
            - 'null'
          format: double
        confidence_level:
          type:
            - number
            - 'null'
          format: double
        pass_at_k:
          type:
            - number
            - 'null'
          format: double
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: API key
      description: API key with the `vk_` prefix. Create one from the dashboard.

````