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

> List jobs for an ACE, most recent first.



## OpenAPI

````yaml GET /ace/{ace_uid}/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:
  /ace/{ace_uid}/jobs:
    get:
      tags:
        - ace
      description: List jobs for an ACE, most recent first.
      operationId: list
      parameters:
        - name: ace_uid
          in: path
          description: ACE uid (UUID).
          required: true
          schema:
            type: string
            format: uuid
        - name: limit
          in: query
          description: Max rows to return (clamped to 200). Defaults to 50.
          required: false
          schema:
            type: integer
            format: int64
      responses:
        '200':
          description: Jobs
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ListAceJobsResBody'
        '403':
          description: Forbidden
        '404':
          description: ACE not found
      security:
        - bearer_auth: []
components:
  schemas:
    ListAceJobsResBody:
      type: object
      required:
        - jobs
        - total
      properties:
        jobs:
          type: array
          items:
            $ref: '#/components/schemas/AceJobView'
        total:
          type: string
    AceJobView:
      type: object
      description: Public view of a background job against an ACE.
      required:
        - uid
        - kind
        - status
        - iteration_count
        - tool_call_count
        - queued_at
      properties:
        completed_at:
          type:
            - string
            - 'null'
          format: date-time
        duration_ms:
          type:
            - integer
            - 'null'
          format: int64
        error_message:
          type:
            - string
            - 'null'
          description: >-
            Present when the job terminated unsuccessfully (`failed`, `error`,
            `cancelled`).
        iteration_count:
          type: integer
          format: int32
        kind:
          type: string
        queued_at:
          type: string
          format: date-time
        started_at:
          type:
            - string
            - 'null'
          format: date-time
        status:
          type: string
        tool_call_count:
          type: integer
          format: int32
        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.

````