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

# Jobs

> List all jobs with job_id and job_name.



## OpenAPI

````yaml GET /jobs
openapi: 3.1.0
info:
  title: Gemma Training Service
  description: Training backend (Cloud Run GPU) for fine-tuning LLMs with various methods
  version: 1.0.0
servers:
  - url: https://training-service-433968519479.us-central1.run.app
security: []
paths:
  /jobs:
    get:
      summary: List Jobs
      description: List all jobs with job_id and job_name.
      operationId: list_jobs_jobs_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/JobListResponse'
components:
  schemas:
    JobListResponse:
      properties:
        jobs:
          items:
            $ref: '#/components/schemas/JobListEntry'
          type: array
          title: Jobs
      type: object
      required:
        - jobs
      title: JobListResponse
    JobListEntry:
      properties:
        job_id:
          type: string
          title: Job Id
        job_name:
          type: string
          title: Job Name
          default: unnamed job
        base_model_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Base Model Id
        modality:
          anyOf:
            - type: string
              enum:
                - text
                - vision
            - type: 'null'
          title: Modality
          default: text
        status:
          type: string
          enum:
            - queued
            - preparing
            - training
            - completed
            - failed
            - unknown
          title: Status
          default: unknown
      type: object
      required:
        - job_id
      title: JobListEntry

````