> ## 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 pipeline run data (paginated)



## OpenAPI

````yaml /api-reference/openapi.json get /files/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:
  /files/pipeline-runs/{id}:
    get:
      tags:
        - Pipeline Runs
      summary: Get pipeline run data (paginated)
      operationId: getPipelineRunData
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
        - name: offset
          in: query
          schema:
            type: integer
            minimum: 0
        - name: limit
          in: query
          schema:
            type: integer
            minimum: 1
            maximum: 1000
      responses:
        '200':
          description: Processed data page
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PipelineRunDataResponse'
              example:
                data:
                  - id: '123'
                    email: a@b.com
                pagination:
                  total: 1
                  offset: 0
                  limit: 1000
                  returned: 1
components:
  schemas:
    PipelineRunDataResponse:
      type: object
      properties:
        data:
          type: array
          items:
            type: object
            additionalProperties: true
        pagination:
          type: object
          properties:
            total:
              type: integer
              description: Total number of records in the pipeline run.
            offset:
              type: integer
            limit:
              type: integer
            returned:
              type: integer
              description: Number of records returned in this page.
      required:
        - data
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key

````