> ## 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 Product Feed

Download the contents of a product feed in standardized CSV format. Returns the product feed data with normalized columns regardless of the original upload format. Columns include: `sku`, `name`, `description`, `url_link`, `price`, `url_link_mobile`, `image_url`, `image_url_mobile`, `brand`, `availability`, `date_valid_from`, `date_valid_to`.


## OpenAPI

````yaml openapi/affiliate-product-feeds.yaml get /affiliates/offers/{offerId}/productfeeds/{productFeedId}/download
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:
    get:
      tags:
        - Affiliate Product Feeds
      summary: Download 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 standardized product feed data.
          content:
            text/csv:
              schema:
                type: string
                description: CSV data with standardized columns.
        '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

````