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

# List Eval Runs Route



## OpenAPI

````yaml /openapi.json get /api/v1/eval/{bench_id}/runs
openapi: 3.1.0
info:
  title: Trajectory API
  version: 0.1.0
servers:
  - url: https://api.trajectory.ai
security: []
paths:
  /api/v1/eval/{bench_id}/runs:
    get:
      tags:
        - eval
      summary: List Eval Runs Route
      operationId: listEvalRuns
      parameters:
        - name: bench_id
          in: path
          required: true
          schema:
            type: string
            title: Bench Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/EvalRun'
                title: Response Listevalruns
        default:
          $ref: '#/components/responses/ApiErrorResponse'
      security:
        - ApiKeyAuth: []
components:
  schemas:
    EvalRun:
      properties:
        eval_run_id:
          type: string
          title: Eval Run Id
          description: Unique evaluation run identifier.
        bench_id:
          type: string
          title: Bench Id
          description: Benchmark evaluated by this run.
        display_name:
          anyOf:
            - type: string
            - type: 'null'
          title: Display Name
          description: User-facing name for the evaluation run; null for legacy rows.
        model_slug:
          anyOf:
            - type: string
            - type: 'null'
          title: Model Slug
          description: Model evaluated by this run.
        status:
          anyOf:
            - $ref: '#/components/schemas/EvalRunLifecycleStatus'
            - type: 'null'
          description: Current evaluation lifecycle status; null for legacy rows.
        checkpoint_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Checkpoint Id
          description: Checkpoint evaluated by this run, when applicable.
        training_run_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Training Run Id
          description: Training run that produced the evaluated checkpoint.
        step:
          anyOf:
            - type: integer
            - type: 'null'
          title: Step
          description: Evaluated checkpoint training step.
        reward_mean:
          anyOf:
            - type: number
            - type: 'null'
          title: Reward Mean
          description: Completed evaluation mean reward.
        created_at:
          type: string
          format: date-time
          title: Created At
          description: Time when the evaluation run was created.
        updated_at:
          type: string
          format: date-time
          title: Updated At
          description: Time when the evaluation run was last updated.
        completed_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Completed At
          description: Time when the evaluation reached a terminal status.
        failure:
          anyOf:
            - $ref: '#/components/schemas/AsyncFailure'
            - type: 'null'
          description: Structured failure when status is failed.
      type: object
      required:
        - eval_run_id
        - bench_id
        - display_name
        - status
        - created_at
        - updated_at
      title: EvalRun
    EvalRunLifecycleStatus:
      type: string
      enum:
        - pending
        - registered
        - running
        - completed
        - failed
        - cancelled
      title: EvalRunLifecycleStatus
    AsyncFailure:
      properties:
        type:
          type: string
          title: Type
          description: Stable category used for exception mapping.
        code:
          type: string
          title: Code
          description: Stable programmatic reason for the asynchronous failure.
        message:
          type: string
          title: Message
          description: Human-readable explanation for this failure occurrence.
        context:
          additionalProperties: true
          type: object
          title: Context
          description: Machine-readable values specific to this failure code.
      type: object
      required:
        - type
        - code
        - message
      title: AsyncFailure
    ApiErrorEnvelope:
      properties:
        error:
          $ref: '#/components/schemas/ApiErrorBody'
      required:
        - error
      title: ApiErrorEnvelope
      type: object
    ApiErrorBody:
      properties:
        type:
          $ref: '#/components/schemas/ErrorType'
        code:
          title: Code
          type: string
        message:
          type: string
          title: Message
        param:
          anyOf:
            - type: string
            - type: 'null'
          default: null
          title: Param
        doc_url:
          type: string
          title: Doc Url
        context:
          additionalProperties: true
          title: Context
          type: object
      required:
        - type
        - code
        - message
        - doc_url
        - context
      title: ApiErrorBody
      type: object
    ErrorType:
      enum:
        - invalid_request_error
        - authentication_error
        - permission_error
        - conflict_error
        - rate_limit_error
        - dependency_error
        - api_error
      title: ErrorType
      type: string
  responses:
    ApiErrorResponse:
      description: >-
        Common API error. Possible codes: `authentication_required`,
        `permission_denied`, `validation_error`, `rate_limited`,
        `internal_error`, `service_unavailable`.
      headers:
        X-Request-ID:
          $ref: '#/components/headers/RequestId'
        Trajectory-Should-Retry:
          $ref: '#/components/headers/TrajectoryShouldRetry'
        Retry-After:
          $ref: '#/components/headers/RetryAfter'
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ApiErrorEnvelope'
  headers:
    RequestId:
      schema:
        type: string
    TrajectoryShouldRetry:
      schema:
        type: boolean
    RetryAfter:
      schema:
        type: string
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-API-Key
      description: Organization API key

````