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

# Download Original Product Feed

Download the product feed contents in the original format as uploaded by the advertiser. Returns the CSV file without normalization. All product feeds contain at least the required columns: `price`, `name`, `url_link`, and `sku`. Additional columns may vary depending on the advertiser's upload.


## OpenAPI

````yaml openapi/affiliate-product-feeds.yaml get /affiliates/offers/{offerId}/productfeeds/{productFeedId}/download/original
openapi: 3.0.3
info:
  title: Everflow Affiliate API - Product Feeds
  description: >
    Product feed endpoints for the Everflow Affiliate API. These endpoints allow
    affiliates to retrieve product feed data for offers and search across feeds.
    For product feed details, see the [Product Feeds
    guide](https://helpdesk.everflow.io/customer/product-feeds).
  version: 1.0.0
servers:
  - description: Production Server
    url: https://api.eflow.team/v1
security: []
tags:
  - name: Affiliate Product Feeds
    description: Endpoints for retrieving product feed data as an affiliate.
paths:
  /affiliates/offers/{offerId}/productfeeds/{productFeedId}/download/original:
    get:
      tags:
        - Affiliate Product Feeds
      summary: Download Original Product Feed
      parameters:
        - name: offerId
          in: path
          required: true
          description: The numeric ID of the offer.
          schema:
            type: integer
        - name: productFeedId
          in: path
          required: true
          description: The numeric ID of the product feed.
          schema:
            type: integer
      responses:
        '200':
          description: CSV file with original product feed data (after following redirect).
          content:
            text/csv:
              schema:
                type: string
                description: CSV data in original format.
        '302':
          description: >
            Redirect to the original file URL. The client should follow the
            redirect to download the CSV file.
        '404':
          description: Product feed not found or not visible to the affiliate.
      security:
        - API Key: []
components:
  securitySchemes:
    API Key:
      description: >
        The affiliate's API key generated from the Affiliate Portal. Uses the
        X-Eflow-Api-Key header.
      in: header
      name: X-Eflow-Api-Key
      type: apiKey

````