> ## 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 Daily Report

Returns daily aggregated metrics for the authenticated affiliate. Each row in the response represents a single day with its associated performance metrics including clicks, conversions, and revenue.


## OpenAPI

````yaml openapi/affiliate-reporting.yaml post /affiliates/reporting/daily
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/daily:
    post:
      tags:
        - Affiliate Reporting
      summary: Get Daily Report
      requestBody:
        required: true
        content:
          application/json:
            example:
              from: '2026-03-01'
              to: '2026-03-31'
              timezone_id: 67
              currency_id: USD
            schema:
              type: object
              required:
                - from
                - to
                - timezone_id
                - currency_id
              properties:
                from:
                  type: string
                  description: Start date. Format `YYYY-MM-DD`.
                to:
                  type: string
                  description: End date. Format `YYYY-MM-DD`.
                timezone_id:
                  type: integer
                  description: Timezone identifier for the date range.
                currency_id:
                  type: string
                  description: Currency code for monetary values.
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  summary:
                    $ref: '#/components/schemas/FullReportingMetrics'
                  performance:
                    type: array
                    description: >-
                      Array of daily performance data points over the requested
                      date range.
                    items:
                      type: object
                      properties:
                        unix:
                          type: integer
                          description: Unix timestamp for the day.
                        reporting:
                          $ref: '#/components/schemas/FullReportingMetrics'
                  table:
                    type: array
                    description: Array of daily reporting rows.
                    items:
                      type: object
                      properties:
                        columns:
                          type: array
                          description: Dimension values for this row.
                          items:
                            type: object
                            properties:
                              column_type:
                                type: string
                                description: The column/dimension type (e.g. "date").
                              id:
                                type: string
                                description: Dimension value identifier.
                              label:
                                type: string
                                description: Human-readable label for the dimension value.
                        reporting:
                          $ref: '#/components/schemas/FullReportingMetrics'
                  incomplete_results:
                    type: boolean
                    description: True if results exceeded the row limit and were truncated.
      security:
        - API Key: []
components:
  schemas:
    FullReportingMetrics:
      type: object
      description: Full set of aggregated reporting metrics.
      properties:
        imp:
          type: integer
          description: Impression count.
        total_click:
          type: integer
          description: Total click count.
        unique_click:
          type: integer
          description: Unique click count.
        invalid_click:
          type: integer
          description: Invalid/filtered click count.
        duplicate_click:
          type: integer
          description: Duplicate click count.
        ctr:
          type: number
          description: Click-through rate (impressions to clicks).
        cv:
          type: integer
          description: Conversion count.
        view_through_cv:
          type: integer
          description: View-through conversion count.
        event:
          type: integer
          description: Post-conversion event count.
        cvr:
          type: number
          description: Conversion rate (percentage).
        evr:
          type: number
          description: Event rate.
        rpc:
          type: number
          description: Revenue per click.
        rpm:
          type: number
          description: Revenue per mille (per 1,000 impressions).
        revenue:
          type: number
          description: Total revenue (affiliate payout amount).
        redirect_traffic_revenue:
          type: number
          description: Revenue from redirect/fallback traffic.
        on_hold_conversion_count:
          type: integer
          description: Number of conversions currently on hold.
        on_hold_potential_revenue:
          type: number
          description: Potential revenue from on-hold conversions.
  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

````