> ## 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 Reporting Summary

Returns aggregated summary metrics without row-level detail. Provides a single summary object with totals for impressions, clicks, conversions, revenue, payout, profit, margin, and other key performance indicators. Uses the same request format as the entity/table endpoint.

<Note>The date range is limited to a maximum of one year (367 days). Requests exceeding this limit will return an error.</Note>


## OpenAPI

````yaml openapi/reporting-aggregated.yaml post /networks/reporting/entity/summary
openapi: 3.0.3
info:
  title: Everflow Network API - Aggregated Reporting
  description: >
    Aggregated reporting endpoints for the Everflow partner marketing platform.
    Retrieve grouped reporting data, summaries, variance reports,
    post-conversion event reports, and MTTI metrics.
  version: 1.0.0
servers:
  - description: Production Server
    url: https://api.eflow.team/v1
security: []
tags:
  - name: Reporting
    description: Aggregated reporting endpoints.
paths:
  /networks/reporting/entity/summary:
    post:
      tags:
        - Reporting
      summary: Get Reporting Summary
      requestBody:
        required: true
        content:
          application/json:
            example:
              from: '2026-03-01'
              to: '2026-03-08'
              timezone_id: 90
              currency_id: USD
              columns:
                - column: offer
            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 ID for the report.
                currency_id:
                  type: string
                  description: Currency code for reporting metrics.
                columns:
                  type: array
                  description: >
                    Columns to group/pivot data by. The summary totals are not
                    affected by the columns value; however, filters and
                    metric_filters still apply. This field is optional but
                    typically included when using this endpoint alongside the
                    entity/table endpoint.
                  items:
                    type: object
                    required:
                      - column
                    properties:
                      column:
                        type: string
                        description: The dimension to group by.
                query:
                  type: object
                  description: Optional filters to narrow the report scope.
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  imp:
                    type: integer
                    description: Total impressions.
                  total_click:
                    type: integer
                    description: Total clicks.
                  unique_click:
                    type: integer
                    description: Unique clicks.
                  invalid_click:
                    type: integer
                    description: Invalid clicks.
                  duplicate_click:
                    type: integer
                    description: Duplicate clicks.
                  gross_click:
                    type: integer
                    description: Gross clicks (total + invalid + duplicate).
                  ctr:
                    type: number
                    description: Click-through rate.
                  cv:
                    type: integer
                    description: Total conversions.
                  invalid_cv_scrub:
                    type: integer
                    description: Scrubbed/throttled conversions.
                  view_through_cv:
                    type: integer
                    description: View-through conversions.
                  total_cv:
                    type: integer
                    description: Total conversions including scrubbed and view-through.
                  event:
                    type: integer
                    description: Total events.
                  cvr:
                    type: number
                    description: Conversion rate.
                  evr:
                    type: number
                    description: Event rate.
                  cpc:
                    type: number
                    description: Cost per click.
                  cpm:
                    type: number
                    description: Cost per mille (thousand impressions).
                  cpa:
                    type: number
                    description: Cost per action.
                  epc:
                    type: number
                    description: Earnings per click.
                  rpc:
                    type: number
                    description: Revenue per click.
                  rpa:
                    type: number
                    description: Revenue per action.
                  rpm:
                    type: number
                    description: Revenue per mille (thousand impressions).
                  payout:
                    type: number
                    description: Total payout.
                  revenue:
                    type: number
                    description: Total revenue.
                  event_revenue:
                    type: number
                    description: Revenue from events.
                  gross_sales:
                    type: number
                    description: Gross sales amount.
                  profit:
                    type: number
                    description: Total profit.
                  margin:
                    type: number
                    description: Profit margin percentage.
                  roas:
                    type: number
                    description: Return on ad spend.
                  avg_sale_value:
                    type: number
                    description: Average sale value.
                  media_buying_cost:
                    type: number
                    description: Media buying cost.
                  on_hold_potential_revenue:
                    type: integer
                    description: Potential revenue from on-hold conversions.
                  on_hold_potential_payout:
                    type: integer
                    description: Potential payout from on-hold conversions.
                  on_hold_conversion_count:
                    type: integer
                    description: Number of on-hold conversions.
                  public_events:
                    type: integer
                    description: Total public events.
      security:
        - API Key: []
components:
  securitySchemes:
    API Key:
      description: The Everflow API key generated from the Control Center > Security.
      in: header
      name: X-Eflow-Api-Key
      type: apiKey

````