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

# Raw Clicks Stream

Extract a raw list of clicks for the authenticated affiliate. Each click is one element in the response. Maximum 5,000 clicks per request. The date range is limited to 14 days or less.


## OpenAPI

````yaml openapi/affiliate-reporting.yaml post /affiliates/reporting/clicks/stream
openapi: 3.0.3
info:
  title: Everflow Affiliate API - Reporting
  description: >
    Reporting endpoints for the Everflow Affiliate API. These endpoints are
    accessed by affiliate/partner users using their own API key and return data
    scoped to the authenticated affiliate's account only. For more detail, see
    [Essential Reports For New
    Partners](https://helpdesk.everflow.io/collaborator/essential-reports-for-new-partners)
    in the Help Center.
  version: 1.0.0
servers:
  - description: Production Server
    url: https://api.eflow.team/v1
security: []
tags:
  - name: Affiliate Reporting
    description: Reporting endpoints available to affiliate users.
paths:
  /affiliates/reporting/clicks/stream:
    post:
      tags:
        - Affiliate Reporting
      summary: Raw Clicks Stream
      requestBody:
        required: true
        content:
          application/json:
            example:
              from: '2026-03-01 00:00:00'
              to: '2026-03-14 23:59:59'
              timezone_id: 90
              query:
                filters:
                  - filter_id_value: '882'
                    resource_type: offer
            schema:
              type: object
              required:
                - from
                - to
                - timezone_id
              properties:
                from:
                  type: string
                  description: 'Start date (format: `YYYY-MM-DD HH:mm:SS`).'
                to:
                  type: string
                  description: >-
                    End date (format: `YYYY-MM-DD HH:mm:SS`). Maximum 14 days
                    from start.
                timezone_id:
                  type: integer
                  description: Timezone ID for the request.
                query:
                  type: object
                  description: Optional filters.
                  properties:
                    filters:
                      type: array
                      items:
                        type: object
                        properties:
                          filter_id_value:
                            type: string
                            description: The value to filter by.
                          resource_type:
                            type: string
                            enum:
                              - offer
                              - creative
                              - country
                              - carrier
                              - device_platform
                              - device_type
                              - device_make
                              - browser
                              - language
                              - connection_type
                              - campaign
                              - source_id
                              - offer_url
                              - device_model
                              - s1
                              - s2
                              - s3
                              - s4
                              - s5
                              - coupon_code
                            description: The dimension to filter on.
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  table:
                    type: array
                    description: Array of click records.
                    items:
                      type: object
                      properties:
                        transaction_id:
                          type: string
                          description: Unique 32-character transaction identifier.
                        is_unique:
                          type: integer
                          description: 1 if unique click, 0 if duplicate.
                        unix_timestamp:
                          type: integer
                        tracking_url:
                          type: string
                        source_id:
                          type: string
                        sub1:
                          type: string
                        sub2:
                          type: string
                        sub3:
                          type: string
                        sub4:
                          type: string
                        sub5:
                          type: string
                        sub6:
                          type: string
                        sub7:
                          type: string
                        sub8:
                          type: string
                        sub9:
                          type: string
                        sub10:
                          type: string
                        revenue_type:
                          type: string
                        revenue:
                          type: number
                        referer:
                          type: string
                        error_code:
                          type: integer
                        user_ip:
                          type: string
                        error_message:
                          type: string
                        currency_id:
                          type: string
                        coupon_code:
                          type: string
                        idfa:
                          type: string
                        idfa_md5:
                          type: string
                        idfa_sha1:
                          type: string
                        google_ad_id:
                          type: string
                        google_ad_id_md5:
                          type: string
                        google_ad_id_sha1:
                          type: string
                        android_id:
                          type: string
                        android_id_md5:
                          type: string
                        android_id_sha1:
                          type: string
                        relationship:
                          type: object
                          properties:
                            offer:
                              type: object
                              properties:
                                network_offer_id:
                                  type: integer
                                network_id:
                                  type: integer
                                network_tracking_domain_id:
                                  type: integer
                                name:
                                  type: string
                                offer_status:
                                  type: string
                            geolocation:
                              type: object
                              properties:
                                country_code:
                                  type: string
                                country_name:
                                  type: string
                                region_code:
                                  type: string
                                region_name:
                                  type: string
                                city_name:
                                  type: string
                                dma:
                                  type: integer
                                dma_name:
                                  type: string
                                carrier_name:
                                  type: string
                                carrier_code:
                                  type: integer
                                isp_name:
                                  type: string
                                organization:
                                  type: string
                                postal_code:
                                  type: string
                                timezone:
                                  type: string
                                is_mobile:
                                  type: boolean
                                is_proxy:
                                  type: boolean
                            device_information:
                              type: object
                              properties:
                                is_mobile:
                                  type: boolean
                                platform_name:
                                  type: string
                                os_version:
                                  type: string
                                brand:
                                  type: string
                                model:
                                  type: string
                                is_tablet:
                                  type: boolean
                                browser_name:
                                  type: string
                                browser_version:
                                  type: string
                                device_type:
                                  type: string
                                language:
                                  type: string
                                http_accept_language:
                                  type: string
                                is_robot:
                                  type: boolean
                                is_filter:
                                  type: boolean
                            query_parameters:
                              type: object
      security:
        - API Key: []
components:
  securitySchemes:
    API Key:
      description: >
        The affiliate's API key generated from the Affiliate Portal. Uses the
        same X-Eflow-Api-Key header as the Network API, but the key belongs to
        the affiliate user rather than the network admin.
      in: header
      name: X-Eflow-Api-Key
      type: apiKey

````