> ## 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.

# Get a pipeline run



## OpenAPI

````yaml /api-reference/openapi.json get /pipeline-runs/{id}
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/{id}:
    get:
      tags:
        - Pipeline Runs
      summary: Get a pipeline run
      operationId: getPipelineRun
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Pipeline run
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PipelineRun'
              example:
                id: run_123
                status: completed
                filename: employees.csv
        '404':
          $ref: '#/components/responses/NotFound'
components:
  schemas:
    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
    PipelineRunStatus:
      type: string
      enum:
        - pending
        - processing
        - completed
        - delivered
        - failed
        - acknowledged
    ErrorResponse:
      type: object
      properties:
        message:
          type: string
        statusCode:
          type: integer
        error:
          type: string
  responses:
    NotFound:
      description: Not found
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key

````