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

# Retrieve List of Whisper Jobs By Org ID

> Fetches a list of all Whisper training jobs associated with the specified organization.



## OpenAPI

````yaml openapi-specs/playground/whisper-training.yaml GET /api/job/whisper-training/
openapi: 3.1.0
info:
  title: Whisper Training API
  description: >-
    API endpoints for training, monitoring, and managing Whisper speech-to-text
    fine-tuning jobs
  version: 1.0.0
servers:
  - url: https://training-suite.app.simplismart.ai
    description: Training Suite Production Server
security:
  - BearerAuth: []
tags:
  - name: Whisper Training
    description: Whisper fine-tuning job endpoints
paths:
  /api/job/whisper-training/:
    get:
      tags:
        - Whisper Training
      summary: Retrieve Whisper training job(s)
      description: >-
        Fetches either a single Whisper job by ID, or every Whisper job
        belonging to an org. Always returns a JSON array, even for a single-job
        lookup.
      operationId: getWhisperTrainingJobs
      parameters:
        - in: query
          name: org_id
          schema:
            type: string
          required: true
          description: Organization UUID.
          example: your_org_uuid
        - in: query
          name: id
          schema:
            type: string
          required: false
          description: >-
            Whisper job UUID. Omit to list every job for the org; provide it to
            fetch a single job.
          example: your_job_id
        - in: header
          name: Authorization
          schema:
            type: string
          required: true
          description: Bearer token for authentication and authorization.
          example: Bearer <jwt-token>
      responses:
        '200':
          description: >-
            A JSON array of Whisper training jobs — a single-item array when
            `id` is given.
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/WhisperTrainingJob'
        '400':
          description: Invalid request — `org_id` missing.
        '401':
          description: Unauthorized access due to invalid or missing authorization token.
        '404':
          description: The `id` was given but no matching job was found.
components:
  schemas:
    WhisperTrainingJob:
      type: object
      properties:
        experiment_name:
          type: string
          description: Training experiment name (including the auto-appended suffix).
        request_id:
          type: string
          description: Job's unique identifier.
        language:
          type: string
          description: Spoken language of the audio.
        status:
          type: string
          enum:
            - queued
            - initializing
            - running
            - succeeded
            - failed
            - cancelled
        created_at:
          type: string
          format: date-time
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: JWT token for authentication

````