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

# Get Offer Product Feeds

Returns product feed URLs and configurations for a specific offer. Product feeds provide structured product data that affiliates can use for dynamic ad creation or product listing pages.


## OpenAPI

````yaml openapi/affiliate-product-feeds.yaml get /affiliates/offers/{offerId}/productfeeds
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:
    get:
      tags:
        - Affiliate Product Feeds
      summary: Get Offer Product Feeds
      parameters:
        - name: offerId
          in: path
          required: true
          description: The numeric ID of the offer.
          schema:
            type: integer
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  product_feeds:
                    type: array
                    description: Array of product feeds for the offer.
                    items:
                      $ref: '#/components/schemas/ProductFeed'
        '404':
          description: Offer not found or not visible to the affiliate.
      security:
        - API Key: []
components:
  schemas:
    ProductFeed:
      type: object
      properties:
        network_advertiser_product_feed_id:
          type: integer
          description: Unique identifier for the product feed.
        network_id:
          type: integer
          description: Network ID.
        network_advertiser_id:
          type: integer
          description: ID of the advertiser that owns this product feed.
        name:
          type: string
          description: Name of the product feed.
        status:
          type: string
          description: Status of the product feed.
        file_asset_id:
          type: integer
          description: ID of the associated file asset.
        date_valid_from:
          type: integer
          description: Unix timestamp for the start of the validity period. 0 if not set.
        date_valid_to:
          type: integer
          description: Unix timestamp for the end of the validity period. 0 if not set.
        date_valid_timezone_id:
          type: integer
          description: Timezone ID for the validity dates.
        time_created:
          type: integer
          example: 1734455015
          description: Unix timestamp of creation.
        time_saved:
          type: integer
          example: 1734455015
          description: Unix timestamp of last update.
        relationship:
          type: object
          properties:
            document_file_asset:
              type: object
              description: The associated file asset with URL and metadata.
              properties:
                network_asset_id:
                  type: integer
                content_type:
                  type: string
                filename:
                  type: string
                url:
                  type: string
                file_size:
                  type: integer
                image_width:
                  type: integer
                image_height:
                  type: integer
                optimized_thumbnail_url:
                  type: string
  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

````