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

# List Batches



## OpenAPI

````yaml GET /batches
openapi: 3.1.0
info:
  title: Tetryx Lynx Coordinator API
  description: HTTP API for Lynx job submission, batch inspection, and runner coordination.
  license:
    name: ''
  version: 0.1.0
servers: []
security: []
paths:
  /batches:
    get:
      tags:
        - batches
      operationId: list_batches
      responses:
        '200':
          description: List submitted batches
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/JobBatch'
components:
  schemas:
    JobBatch:
      type: object
      required:
        - id
        - name
        - created_at
        - config_hash
        - total_jobs
        - completed_jobs
        - failed_jobs
        - status
      properties:
        completed_jobs:
          type: integer
          format: int32
          minimum: 0
        config_hash:
          type: string
        created_at:
          type: string
          format: date-time
        failed_jobs:
          type: integer
          format: int32
          minimum: 0
        id:
          type: string
          format: uuid
        name:
          type: string
        status:
          $ref: '#/components/schemas/JobBatchStatus'
        total_jobs:
          type: integer
          format: int32
          minimum: 0
    JobBatchStatus:
      type: string
      enum:
        - Pending
        - Running
        - Completed
        - Failed
        - Cancelled

````