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

# Search Product Feeds

Get all product feeds available to the authenticated affiliate. Optionally filter by offer IDs to narrow results. Returns product feed metadata including file assets and associated offers.


## OpenAPI

````yaml openapi/affiliate-product-feeds.yaml post /affiliates/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/productfeeds:
    post:
      tags:
        - Affiliate Product Feeds
      summary: Search Product Feeds
      requestBody:
        content:
          application/json:
            example:
              filters:
                network_offer_ids:
                  - 1
                  - 2
            schema:
              type: object
              properties:
                filters:
                  type: object
                  description: Optional filters to narrow results.
                  properties:
                    network_offer_ids:
                      type: array
                      items:
                        type: integer
                      description: Filter by specific offer IDs.
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  product_feeds:
                    type: array
                    items:
                      allOf:
                        - $ref: '#/components/schemas/ProductFeed'
                        - type: object
                          properties:
                            relationship:
                              type: object
                              properties:
                                offers:
                                  type: array
                                  description: Offers associated with this product feed.
                                  items:
                                    type: object
                                    properties:
                                      network_offer_id:
                                        type: integer
                                        description: Unique identifier for the offer.
                                      network_id:
                                        type: integer
                                        description: Network ID.
                                      name:
                                        type: string
                                        description: Name of the offer.
                                      offer_status:
                                        type: string
                                        description: Status of the offer.
                  paging:
                    type: object
                    properties:
                      page:
                        type: integer
                      page_size:
                        type: integer
                      total_count:
                        type: integer
      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

````