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

# List Jobs

> List and filter jobs for your organization.

Returns a paginated list of molecular simulation jobs with comprehensive filtering options.
Use this endpoint to track job progress, retrieve results, and manage your computational workloads.

**Common Use Cases:**
- Monitor job status and progress
- Filter jobs by algorithm type or batch
- Paginate through large job lists
- Find specific jobs by name or user

**Job Statuses:**
- `QUEUED`: Job accepted and waiting for resources
- `RUNNING`: Job currently executing
- `COMPLETED`: Job finished successfully
- `FAILED`: Job encountered an error

**Response includes:**
- Job metadata and current status
- Algorithm type and version
- Execution timestamps and metrics
- Pagination information for large result sets



## OpenAPI

````yaml openapi.json get /jobs
openapi: 3.1.0
info:
  title: Nano Helix API
  description: Protein AI model API platform.
  contact:
    name: Nano Helix Support
    email: support@nanohelix.ai
  license:
    name: Commercial License
  version: 1.0.0
servers: []
security: []
paths:
  /jobs:
    get:
      tags:
        - Job Management
      summary: List Jobs
      description: >-
        List and filter jobs for your organization.


        Returns a paginated list of molecular simulation jobs with comprehensive
        filtering options.

        Use this endpoint to track job progress, retrieve results, and manage
        your computational workloads.


        **Common Use Cases:**

        - Monitor job status and progress

        - Filter jobs by algorithm type or batch

        - Paginate through large job lists

        - Find specific jobs by name or user


        **Job Statuses:**

        - `QUEUED`: Job accepted and waiting for resources

        - `RUNNING`: Job currently executing

        - `COMPLETED`: Job finished successfully

        - `FAILED`: Job encountered an error


        **Response includes:**

        - Job metadata and current status

        - Algorithm type and version

        - Execution timestamps and metrics

        - Pagination information for large result sets
      operationId: get_jobs_jobs_get
      parameters:
        - name: jobName
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: Filter by specific job name
            title: Jobname
          description: Filter by specific job name
        - name: limit
          in: query
          required: false
          schema:
            type: integer
            maximum: 100
            minimum: 1
            description: Maximum number of jobs to return
            default: 50
            title: Limit
          description: Maximum number of jobs to return
        - name: startKey
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: Pagination cursor for next page
            title: Startkey
          description: Pagination cursor for next page
        - name: batch
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: Filter by batch ID
            title: Batch
          description: Filter by batch ID
        - name: organization
          in: query
          required: false
          schema:
            type: boolean
            description: Return all jobs in organization
            default: false
            title: Organization
          description: Return all jobs in organization
        - name: includeSubjobs
          in: query
          required: false
          schema:
            type: boolean
            description: Include subjob details
            default: false
            title: Includesubjobs
          description: Include subjob details
        - name: jobEmail
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: Filter by user email
            title: Jobemail
          description: Filter by user email
        - name: algorithm
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: Filter by algorithm type (e.g., 'boltz', 'rfdiffusion')
            title: Algorithm
          description: Filter by algorithm type (e.g., 'boltz', 'rfdiffusion')
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError

````