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

# List pipeline runs



## OpenAPI

````yaml /api-reference/openapi.json get /pipeline-runs
openapi: 3.0.3
info:
  title: FileFeed API
  version: '2026-05-25'
  description: >-
    Official FileFeed REST API for connections, pipelines, schemas, pipeline
    runs, webhooks, outbound uploads, documents, files, and notifications.
    Date-based API versioning is controlled by the `FileFeed-Version` request
    header (default `2024-09-01`; latest `2026-05-25`); this document describes
    the `2026-05-25` shape.
servers:
  - url: https://api.sftpsync.io
security:
  - ApiKeyAuth: []
tags:
  - name: Connections
  - name: Pipelines
  - name: Schemas
  - name: Pipeline Runs
  - name: Webhooks
  - name: Outbound Uploads
  - name: Documents
  - name: Files
  - name: Notifications
  - name: Clients (deprecated)
paths:
  /pipeline-runs:
    get:
      tags:
        - Pipeline Runs
      summary: List pipeline runs
      operationId: listPipelineRuns
      parameters:
        - name: page
          in: query
          schema:
            type: integer
            minimum: 1
        - name: limit
          in: query
          schema:
            type: integer
            minimum: 1
            maximum: 1000
        - name: clientId
          in: query
          schema:
            type: string
        - name: pipelineId
          in: query
          schema:
            type: string
        - name: status
          in: query
          schema:
            $ref: '#/components/schemas/PipelineRunStatus'
        - name: model
          in: query
          schema:
            type: string
        - name: connectionName
          in: query
          schema:
            type: string
          description: Filter by connection name (partial, case-insensitive).
        - name: clientName
          in: query
          schema:
            type: string
            deprecated: true
          description: 'Deprecated: use connectionName.'
        - name: pipelineName
          in: query
          schema:
            type: string
          description: Filter by pipeline name (partial, case-insensitive).
        - name: id
          in: query
          schema:
            type: array
            items:
              type: string
          style: form
          explode: true
      responses:
        '200':
          description: Paginated pipeline runs
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PaginatedPipelineRuns'
              example:
                data:
                  - id: run_123
                    status: completed
                pagination:
                  page: 1
                  limit: 50
                  total: 1
                  totalPages: 1
        '400':
          $ref: '#/components/responses/BadRequest'
components:
  schemas:
    PipelineRunStatus:
      type: string
      enum:
        - pending
        - processing
        - completed
        - delivered
        - failed
        - acknowledged
    PaginatedPipelineRuns:
      type: object
      properties:
        data:
          type: array
          items:
            $ref: '#/components/schemas/PipelineRun'
        pagination:
          $ref: '#/components/schemas/Pagination'
      required:
        - data
        - pagination
    PipelineRun:
      type: object
      properties:
        id:
          type: string
        filename:
          type: string
        path:
          type: string
        size:
          type: integer
        mimetype:
          type: string
        metadata:
          type: object
          additionalProperties: true
        status:
          $ref: '#/components/schemas/PipelineRunStatus'
        pipelineDirection:
          type: string
          enum:
            - inbound
            - outbound
          description: Direction of the pipeline that produced this run.
        errorMessage:
          type: string
        createdAt:
          type: string
          format: date-time
        updatedAt:
          type: string
          format: date-time
        processedAt:
          type: string
          format: date-time
        clientId:
          type: string
        schemaId:
          type: string
        pipelineId:
          type: string
        pipelineName:
          type: string
          nullable: true
          description: >-
            Name of the originating pipeline. `DELETED PIPELINE` when the
            pipeline was deleted.
        isPipelineDeleted:
          type: boolean
          description: True when the originating pipeline has been deleted.
        client:
          type: object
          nullable: true
          description: >-
            Originating connection's display name, resolved from the SFTP/email
            child connection.
          properties:
            name:
              type: string
              nullable: true
      required:
        - id
        - filename
        - status
        - createdAt
        - updatedAt
        - clientId
    Pagination:
      type: object
      properties:
        page:
          type: integer
        limit:
          type: integer
        total:
          type: integer
        totalPages:
          type: integer
    ErrorResponse:
      type: object
      properties:
        message:
          type: string
        statusCode:
          type: integer
        error:
          type: string
  responses:
    BadRequest:
      description: Bad request
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key

````