> ## 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 processed JSON file by name

> Retrieve a processed JSON file's content, located by connection name, file name, and pipeline. Supply offset/limit to page an array file.



## OpenAPI

````yaml /api-reference/openapi.json get /files/json
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/json:
    get:
      tags:
        - Files
      summary: Get a processed JSON file by name
      description: >-
        Retrieve a processed JSON file's content, located by connection name,
        file name, and pipeline. Supply offset/limit to page an array file.
      parameters:
        - name: clientName
          in: query
          required: true
          schema:
            type: string
          description: The connection's display name the file belongs to.
        - name: fileName
          in: query
          required: true
          schema:
            type: string
          description: File name, without extension.
        - name: pipelineId
          in: query
          required: true
          schema:
            type: string
        - name: offset
          in: query
          required: false
          schema:
            type: integer
        - name: limit
          in: query
          required: false
          schema:
            type: integer
      responses:
        '200':
          description: Processed JSON file content
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/JsonFileResponse'
        '404':
          $ref: '#/components/responses/NotFound'
components:
  schemas:
    JsonFileResponse:
      type: object
      description: >-
        When the stored file is a JSON array and offset/limit are supplied, a
        paginated envelope is returned; otherwise the raw parsed JSON is
        returned (pagination absent).
      properties:
        data:
          type: array
          items:
            type: object
            additionalProperties: true
        pagination:
          type: object
          properties:
            total:
              type: integer
            offset:
              type: integer
            limit:
              type: integer
            returned:
              type: integer
      required:
        - data
    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

````