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

# Get Eval Run

> Get a single eval run, including its logs.



## OpenAPI

````yaml GET /orgs/{org_id}/projects/{project_id}/envs/{env_id}/evals/runs/{eval_run_id}
openapi: 3.1.0
info:
  title: Timbal Platform API
  description: Public API documentation for the Timbal platform
  license:
    name: ''
  version: 2.0.0
servers:
  - url: https://api.timbal.ai
    description: Production
  - url: https://api.dev.timbal.ai
    description: Development
security: []
tags:
  - name: ace
    description: Action Control Engine (ACE) operations
  - name: analytics
    description: Org and project analytics
  - name: billing
    description: Subscriptions, usage, and payment-related operations
  - name: content
    description: Re-sign stored content URLs
  - name: files
    description: File operations
  - name: iam
    description: IAM — actions, roles, users, and authorization introspection
  - name: k2
    description: Knowledge Bases v2 operations
  - name: orgs
    description: Organization operations
  - name: projects
    description: Project operations
  - name: runs
    description: Execution operations
  - name: templates
    description: Public project template catalog
  - name: users
    description: Authenticated user profile
paths:
  /orgs/{org_id}/projects/{project_id}/envs/{env_id}/evals/runs/{eval_run_id}:
    get:
      tags:
        - projects
      description: Get a single eval run, including its logs.
      operationId: handler
      parameters:
        - name: org_id
          in: path
          required: true
          schema:
            type: string
        - name: project_id
          in: path
          required: true
          schema:
            type: string
        - name: env_id
          in: path
          required: true
          schema:
            type: string
        - name: eval_run_id
          in: path
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Eval run fetched successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/EvalRunDetail'
        '403':
          description: Insufficient permissions
        '404':
          description: Eval run not found
      security:
        - bearer_auth: []
components:
  schemas:
    EvalRunDetail:
      type: object
      description: One eval run against a workforce component (deploy gate or manual).
      required:
        - id
        - component
        - trigger_type
        - status
        - started_at
        - created_at
      properties:
        commit_hash:
          type:
            - string
            - 'null'
          description: Git commit SHA the evals executed against.
        component:
          $ref: '#/components/schemas/EvalRunComponent'
          description: The workforce component the evals ran against.
        created_at:
          type: string
          format: date-time
        deployment_id:
          type:
            - string
            - 'null'
          description: The `Deployments` row this run gated. NULL for manual runs.
        finished_at:
          type:
            - string
            - 'null'
          format: date-time
        id:
          type: string
        logs:
          type:
            - string
            - 'null'
          description: Captured CLI output (only when `include_logs=true`).
        results:
          description: |-
            Structured per-eval results (timbal >= 2.2.9): a flat array of
            per-eval objects — params/output/usage/validator verdicts/captured
            output. On the list endpoint only when `include_results=true`;
            NULL for runs that predate structured capture or died before the
            report.
        started_at:
          type: string
          format: date-time
        status:
          type: string
          description: '`running` | `passed` | `failed` | `error`.'
        status_detail:
          type:
            - string
            - 'null'
          description: Short human summary, e.g. "1 failed, 2 passed in 12.40s".
        trigger_id:
          type:
            - string
            - 'null'
          description: Deploy batch id — matches `Deployments.trigger_id`.
        trigger_type:
          type: string
          description: 'What started the run: `deploy` | `manual` | `push`.'
    EvalRunComponent:
      type: object
      description: |-
        The workforce component an eval run targets. Same identifiers the
        deployments list exposes on its `target` object: `id` is
        `OrgsApps.id` (accepted as `component_id` filters/body params), `uid`
        is the manifest `_id` from `timbal.yaml` (accepted as
        `component_uid`). `name`/`type` are display metadata; `uid`/`name`/
        `type` go NULL if the app row was deleted after the run.
      required:
        - id
      properties:
        id:
          type: string
        name:
          type:
            - string
            - 'null'
        type:
          type:
            - string
            - 'null'
          description: '`agent` | `workflow`.'
        uid:
          type:
            - string
            - 'null'
  securitySchemes:
    bearer_auth:
      type: http
      scheme: bearer
      description: >-
        Timbal API key. Obtain your API key from the Timbal platform settings.
        See [Authentication](/api-reference/authentication) for more
        information.

````