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

# Get batch job

> Returns the full details of a job (status, config, timestamps, error info). Poll until `status` reaches `DONE` or `FAILED`.



## OpenAPI

````yaml /api-reference/batch/batch.oas.json get /v1/batch/jobs/{jobId}
openapi: 3.1.0
info:
  version: 0.1.0
  title: SLNG Batch API
  description: >-
    Transcribe audio files asynchronously. Upload a file, monitor the job
    progress, and download the transcript when it's ready.
servers:
  - url: https://api.batch.slng.ai
    description: Production
  - url: https://stageapi.batch.slng.ai
    description: Staging
security:
  - bearerAuth: []
tags:
  - name: Speechmatics
    description: Create and manage asynchronous transcription jobs.
paths:
  /v1/batch/jobs/{jobId}:
    get:
      tags:
        - Speechmatics
      summary: Get batch job
      description: >-
        Returns the full details of a job (status, config, timestamps, error
        info). Poll until `status` reaches `DONE` or `FAILED`.
      operationId: batchJobsGet
      parameters:
        - $ref: '#/components/parameters/jobId'
      responses:
        '200':
          description: Job detail.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BatchJob'
              example:
                job_id: myjob123
                status: DONE
                model_code: slng/speechmatics/batch:15.0.0
                job_config:
                  type: transcription
                  transcription_config:
                    language: en
                    operating_point: standard
                    diarization: none
                  tracking:
                    title: Meeting
                    reference: ref-123
                input_metadata:
                  size_bytes: 1543210
                  duration_seconds: 312.4
                  format: wav
                  mime_type: audio/wav
                output_metadata: {}
                error_message: null
                submitted_at: '2026-04-13T12:00:00Z'
                started_at: '2026-04-13T12:00:05Z'
                completed_at: '2026-04-13T12:01:30Z'
                deleted_at: null
                expired_at: null
                updated_at: '2026-04-13T12:01:30Z'
        '400':
          description: Validation error (non-alphanumeric `jobId`).
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
              example:
                error: job_id must be alphanumeric
        '403':
          $ref: '#/components/responses/Forbidden'
        '404':
          $ref: '#/components/responses/NotFound'
        '500':
          $ref: '#/components/responses/InternalError'
components:
  parameters:
    jobId:
      name: jobId
      in: path
      required: true
      schema:
        type: string
        pattern: ^[a-zA-Z0-9]+$
      description: The alphanumeric job identifier.
      example: myjob123
  schemas:
    BatchJob:
      type: object
      description: A batch transcription job.
      required:
        - job_id
        - status
      properties:
        job_id:
          type: string
          description: Alphanumeric job identifier.
        api_key_id:
          type: string
          description: >-
            API key that submitted the job. May differ from the API key used to
            call this endpoint when the job was created via the dashboard.
        organisation_id:
          type: string
          format: uuid
          description: Organisation that owns the job.
        model_code:
          type: string
          description: Model used (e.g. `slng/speechmatics/batch:15.0.0`).
        status:
          type: string
          description: Public-facing job status.
          enum:
            - QUEUED
            - IN_PROGRESS
            - DECODING
            - POST_PROCESSING
            - DONE
            - FAILED
            - DELETED
        job_config:
          type: object
          description: >-
            Full job-config object as submitted (`type`, `transcription_config`,
            optional `tracking`, `output_config`).
          additionalProperties: true
        input_metadata:
          type: object
          description: >-
            Measured input file properties (`size_bytes`, `duration_seconds`,
            `format`, `mime_type`, `source`).
          additionalProperties: true
        output_metadata:
          type: object
          description: Measured output properties (populated on completion).
          additionalProperties: true
        error_message:
          type: object
          nullable: true
          description: Error envelope for `FAILED` jobs. Otherwise `null`.
          required:
            - message
          additionalProperties: false
          properties:
            message:
              type: string
              description: User-presentable error string (display verbatim).
        submitted_at:
          type: string
          format: date-time
          description: When the job was created.
        started_at:
          type: string
          format: date-time
          nullable: true
          description: When processing began.
        completed_at:
          type: string
          format: date-time
          nullable: true
          description: When the job reached a terminal state.
        deleted_at:
          type: string
          format: date-time
          nullable: true
          description: When the job was deleted.
        expired_at:
          type: string
          format: date-time
          nullable: true
          description: When the job was expired.
        updated_at:
          type: string
          format: date-time
          description: Last row update.
    Error:
      type: object
      description: >-
        Error envelope. A short, user-presentable string only — no internal
        codes, stack traces, or upstream raw text.
      required:
        - error
      additionalProperties: false
      properties:
        error:
          type: string
  responses:
    Forbidden:
      description: Missing or invalid API key.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
          example:
            error: API key id not found
    NotFound:
      description: Job not found, or not owned by the authenticated API key.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
          example:
            error: Job not found
    InternalError:
      description: Internal server error.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
          example:
            error: Internal server error
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: API key from the SLNG dashboard.

````