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

# List user's pipelines

> Retrieves a list of pipelines for the current user,
optionally filtered by project and other criteria.

Filter parameters support Supabase filter operators:
- Text fields (name, description, created_by_email): Use "ilike.%value%"
for partial match
- Status: Use exact match or "in.(val1,val2)" for multiple values
- Date fields (created_at, updated_at): Use "gte.value", "lte.value", etc.
- Date range: Use created_at_gt and created_at_lt
  (or updated_at_gt and updated_at_lt) for between queries



## OpenAPI

````yaml https://api.ionworks.com/openapi.json get /pipelines
openapi: 3.1.0
info:
  title: FastAPI
  version: 0.1.0
servers:
  - url: https://api.ionworks.com
    description: Production
security: []
paths:
  /pipelines:
    get:
      tags:
        - Pipeline
      summary: List user's pipelines
      description: >-
        Retrieves a list of pipelines for the current user,

        optionally filtered by project and other criteria.


        Filter parameters support Supabase filter operators:

        - Text fields (name, description, created_by_email): Use "ilike.%value%"

        for partial match

        - Status: Use exact match or "in.(val1,val2)" for multiple values

        - Date fields (created_at, updated_at): Use "gte.value", "lte.value",
        etc.

        - Date range: Use created_at_gt and created_at_lt
          (or updated_at_gt and updated_at_lt) for between queries
      operationId: list_pipelines_pipelines_get
      parameters:
        - name: project_id
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: Project Id
        - name: skip
          in: query
          required: false
          schema:
            type: integer
            default: 0
            title: Skip
        - name: limit
          in: query
          required: false
          schema:
            type: integer
            default: 100
            title: Limit
        - name: id
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: Id
        - name: name
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: Name
        - name: description
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: Description
        - name: status
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: Status
        - name: created_by_email
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: Created By Email
        - name: created_at
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: Created At
        - name: updated_at
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: Updated At
        - name: created_at_gt
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: Created At Gt
        - name: created_at_lt
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: Created At Lt
        - name: updated_at_gt
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: Updated At Gt
        - name: updated_at_lt
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: Updated At Lt
        - name: order_by
          in: query
          required: false
          schema:
            enum:
              - name
              - id
              - description
              - status
              - created_at
              - updated_at
              - created_by_email
            type: string
            default: created_at
            title: Order By
        - name: order
          in: query
          required: false
          schema:
            enum:
              - asc
              - desc
            type: string
            default: desc
            title: Order
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PipelineListResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    PipelineListResponse:
      properties:
        pipelines:
          items:
            $ref: '#/components/schemas/PipelineWithElementStatus'
          type: array
          title: Pipelines
        total:
          type: integer
          title: Total
      type: object
      required:
        - pipelines
        - total
      title: PipelineListResponse
      description: Schema for listing pipelines with pagination
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    PipelineWithElementStatus:
      properties:
        id:
          type: string
          title: Id
        project_id:
          type: string
          title: Project Id
        user_id:
          anyOf:
            - type: string
            - type: 'null'
          title: User Id
        name:
          type: string
          title: Name
        description:
          anyOf:
            - type: string
            - type: 'null'
          title: Description
        options:
          $ref: '#/components/schemas/PipelineOptions'
        status:
          $ref: '#/components/schemas/PipelineStatus'
        created_at:
          type: string
          format: date-time
          title: Created At
        updated_at:
          type: string
          format: date-time
          title: Updated At
        error:
          anyOf:
            - type: string
            - type: 'null'
          title: Error
        error_code:
          anyOf:
            - $ref: '#/components/schemas/JobErrorCode'
            - type: 'null'
        created_by_email:
          anyOf:
            - type: string
            - type: 'null'
          title: Created By Email
        organization_id:
          type: string
          title: Organization Id
          description: Organization this pipeline belongs to.
        elements:
          items:
            $ref: '#/components/schemas/PipelineElementStatusInfo'
          type: array
          title: Elements
          default: []
      type: object
      required:
        - id
        - project_id
        - name
        - status
        - created_at
        - updated_at
        - organization_id
      title: PipelineWithElementStatus
      description: Pipeline with element and job status for list/detailed status display.
    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
    PipelineOptions:
      properties:
        live_progress_updates:
          anyOf:
            - type: boolean
            - type: 'null'
          title: Live Progress Updates
          description: >-
            If True, save checkpoint progress to database during job execution.
            If None, the worker picks a default based on job type.
      type: object
      title: PipelineOptions
      description: Options for pipeline execution behavior.
    PipelineStatus:
      type: string
      enum:
        - pending
        - running
        - completed
        - failed
        - canceled
      title: PipelineStatus
    JobErrorCode:
      type: string
      enum:
        - CONFIGURATION_ERROR
        - MODEL_ERROR
        - SOLVER_ERROR
        - EXECUTION_TIMEOUT
        - SUBMISSION_FAILED
        - INTERNAL_ERROR
      title: JobErrorCode
      description: Machine-readable error codes for jobs.
    PipelineElementStatusInfo:
      properties:
        id:
          type: string
          title: Id
        name:
          type: string
          title: Name
        element_order:
          type: integer
          exclusiveMinimum: 0
          title: Element Order
        element_type:
          $ref: '#/components/schemas/ElementType'
        status:
          $ref: '#/components/schemas/PipelineElementStatus'
        job_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Job Id
        job_status:
          anyOf:
            - type: string
            - type: 'null'
          title: Job Status
          description: Job status via job_id (from jobs.status).
        anyscale_job_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Anyscale Job Id
          description: Anyscale prodjob id via job_id (from jobs.anyscale_job_id).
        anyscale_url:
          anyOf:
            - type: string
            - type: 'null'
          title: Anyscale Url
          description: Deep-link to this element's job on the Anyscale console, or None.
          readOnly: true
      type: object
      required:
        - id
        - name
        - element_order
        - element_type
        - status
        - anyscale_url
      title: PipelineElementStatusInfo
      description: >-
        Minimal element fields for pipeline list status display (element + job
        status).
    ElementType:
      type: string
      enum:
        - Direct Entry
        - Data Fit
        - Array Data Fit
        - Calculation
        - Validation
      title: ElementType
    PipelineElementStatus:
      type: string
      enum:
        - pending
        - running
        - completed
        - failed
        - skipped
        - canceled
      title: PipelineElementStatus

````