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

# List Eval Jobs

> List eval jobs (background eval generation) for an env, most recent first.



## OpenAPI

````yaml GET /orgs/{org_id}/projects/{project_id}/envs/{env_id}/evals/jobs
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/jobs:
    get:
      tags:
        - projects
      description: >-
        List eval jobs (background eval generation) for an env, most recent
        first.
      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: component_id
          in: query
          description: Filter to one workforce component by its numeric app id.
          required: false
          schema:
            type:
              - string
              - 'null'
        - name: limit
          in: query
          description: Max rows to return (clamped to 200). Defaults to 50.
          required: false
          schema:
            type:
              - integer
              - 'null'
            format: int64
      responses:
        '200':
          description: Jobs
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ListEvalJobsResBody'
        '403':
          description: Insufficient permissions
        '404':
          description: Environment not found
      security:
        - bearer_auth: []
components:
  schemas:
    ListEvalJobsResBody:
      type: object
      required:
        - jobs
        - total
      properties:
        jobs:
          type: array
          items:
            $ref: '#/components/schemas/EvalJobView'
        total:
          type: string
    EvalJobView:
      type: object
      description: Public view of a background eval job.
      required:
        - uid
        - kind
        - status
        - component_id
        - output
        - queued_at
      properties:
        completed_at:
          type:
            - string
            - 'null'
          format: date-time
        component_id:
          type: string
          description: |-
            Component the job writes evals for (`OrgsApps.id`) — same
            identifier accepted as `component_id` on the other eval routes.
        duration_ms:
          type:
            - integer
            - 'null'
          format: int64
        error_message:
          type:
            - string
            - 'null'
          description: Present when the job terminated unsuccessfully (`failed`, `error`).
        kind:
          type: string
          description: Job kind (e.g. `"generate_initial"`).
        output:
          description: |-
            Kind-specific result payload; `{}` until the job succeeds. For
            `generate_initial`: files, eval_count, eval_names, summary,
            committed, commit_sha.
        queued_at:
          type: string
          format: date-time
        started_at:
          type:
            - string
            - 'null'
          format: date-time
        status:
          type: string
          description: '`queued | running | succeeded | failed | error`.'
        uid:
          type: string
          format: uuid
  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.

````