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

# Get Batch Results



## OpenAPI

````yaml GET /batches/{batch_id}/results
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/{batch_id}/results:
    get:
      tags:
        - batches
      operationId: get_batch_results
      parameters:
        - name: batch_id
          in: path
          description: Batch identifier
          required: true
          schema:
            type: string
            format: uuid
      responses:
        '200':
          description: Fetch terminal results for jobs in a batch
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/JobResultsResponse'
        '404':
          description: Batch not found
components:
  schemas:
    JobResultsResponse:
      type: object
      required:
        - batch
        - results
      properties:
        batch:
          $ref: '#/components/schemas/JobBatch'
        results:
          type: array
          items:
            $ref: '#/components/schemas/JobResult'
    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
    JobResult:
      type: object
      required:
        - job_id
        - success
        - execution_time_secs
        - output_files
        - metadata
      properties:
        error_message:
          type:
            - string
            - 'null'
        execution_time_secs:
          type: integer
          format: int64
          minimum: 0
        job_id:
          type: string
          format: uuid
        metadata:
          type: object
          additionalProperties:
            type: string
          propertyNames:
            type: string
        output_files:
          type: array
          items:
            type: string
        success:
          type: boolean
        telemetry_data:
          type:
            - string
            - 'null'
    JobBatchStatus:
      type: string
      enum:
        - Pending
        - Running
        - Completed
        - Failed
        - Cancelled

````