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

# List Jobs



## OpenAPI

````yaml https://api.outerproduct.com/openapi.json get /v1/jobs
openapi: 3.1.0
info:
  title: OuterProduct API
  description: >-
    Public-facing REST API for OuterProduct model distillation, prediction, and
    explanation.
  version: 0.1.8
servers: []
security: []
paths:
  /v1/jobs:
    get:
      tags:
        - jobs
      summary: List Jobs
      operationId: list_jobs_v1_jobs_get
      parameters:
        - name: status
          in: query
          required: false
          schema:
            anyOf:
              - $ref: '#/components/schemas/JobStatus'
              - type: 'null'
            title: Status
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ListJobsResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - BearerAuth: []
components:
  schemas:
    JobStatus:
      type: string
      enum:
        - pending
        - running
        - completed
        - failed
        - cancelled
      title: JobStatus
    ListJobsResponse:
      properties:
        jobs:
          items:
            $ref: '#/components/schemas/JobResponse'
          type: array
          title: Jobs
      type: object
      required:
        - jobs
      title: ListJobsResponse
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    JobResponse:
      properties:
        id:
          $ref: '#/components/schemas/ID'
        job_type:
          type: string
          title: Job Type
        status:
          $ref: '#/components/schemas/JobStatus'
        progress:
          anyOf:
            - type: number
            - type: 'null'
          title: Progress
        error:
          anyOf:
            - $ref: '#/components/schemas/JobError'
            - type: 'null'
        created_at:
          type: string
          format: date-time
          title: Created At
        updated_at:
          type: string
          format: date-time
          title: Updated At
        metrics_url:
          type: string
          title: Metrics Url
        result_url:
          type: string
          title: Result Url
        artifacts_url:
          type: string
          title: Artifacts Url
      type: object
      required:
        - id
        - job_type
        - status
        - created_at
        - updated_at
        - metrics_url
        - result_url
        - artifacts_url
      title: JobResponse
      description: >-
        A job resource — the uniform, control-plane envelope over every job
        implementation.


        Stable across every status; status-specific fields (``error``) are
        present-but-null rather

        than added/removed. Heavy, high-frequency, or implementation-specific
        data lives behind

        the ``*_url`` sub-resources, never inline.
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
    ID:
      anyOf:
        - type: string
          format: uuid
        - type: string
    JobError:
      properties:
        code:
          type: string
          title: Code
        message:
          type: string
          title: Message
      type: object
      required:
        - code
        - message
      title: JobError
      description: >-
        Structured failure info; present on a ``JobResponse`` only when ``status
        == failed``.
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: API key or OAuth2/OIDC access token
      description: >-
        An API key or OAuth2/OIDC access token sent as `Authorization: Bearer
        <token>`.

````