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

# List Eval Runs

> List runs, newest first, paged like every other list here: a year
of CI runs is the volume this feature is for.



## OpenAPI

````yaml /openapi.json get /v1/eval-runs
openapi: 3.1.0
info:
  title: TurnCall
  description: Production voice agent platform API
  version: 0.1.0
servers: []
security: []
paths:
  /v1/eval-runs:
    get:
      tags:
        - evals
      summary: List Eval Runs
      description: |-
        List runs, newest first, paged like every other list here: a year
        of CI runs is the volume this feature is for.
      operationId: list_eval_runs_v1_eval_runs_get
      parameters:
        - name: batch_id
          in: query
          required: false
          schema:
            anyOf:
              - type: string
                format: uuid
              - type: 'null'
            title: Batch Id
        - name: scenario_id
          in: query
          required: false
          schema:
            anyOf:
              - type: string
                format: uuid
              - type: 'null'
            title: Scenario Id
        - name: status
          in: query
          required: false
          schema:
            anyOf:
              - $ref: '#/components/schemas/EvalRunStatus'
              - type: 'null'
            title: Status
        - name: page
          in: query
          required: false
          schema:
            type: integer
            minimum: 1
            description: 1-based page number
            default: 1
            title: Page
          description: 1-based page number
        - name: limit
          in: query
          required: false
          schema:
            type: integer
            maximum: 100
            minimum: 1
            default: 50
            title: Limit
        - name: authorization
          in: header
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: Authorization
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: object
                additionalProperties: true
                title: Response List Eval Runs V1 Eval Runs Get
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    EvalRunStatus:
      type: string
      enum:
        - queued
        - running
        - passed
        - failed
        - errored
        - cancelled
      title: EvalRunStatus
      description: >-
        Where a run is, and how it ended.


        `errored` is deliberately not a kind of `failed`: it means the harness
        did

        not complete (a connect failure, a judge outage), which is neither a
        pass

        nor a fail and never counts toward a rate. A judge outage reading as an

        agent regression is how a suite loses its audience.
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError

````