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

# Export Aggregated Reporting Data

Exports aggregated reporting data in the specified format (CSV or JSON). Accepts the same parameters as the [Get Aggregated Reporting Data](/api-reference/post-networksreportingentitytable) endpoint with additional `format`, `metrics`, and `usm_columns` fields.

The response is a file download with the appropriate Content-Type and Content-Disposition headers set.


## OpenAPI

````yaml openapi/reporting-exports.yaml post /networks/reporting/entity/table/export
openapi: 3.0.3
info:
  title: Everflow Network API - Reporting Exports
  description: >
    Export endpoints for the Everflow reporting system. These endpoints allow
    you to download reporting data as CSV or JSON files. They mirror the request
    parameters of their corresponding report endpoints, with an added format
    field. For more detail, see [How to Export Your
    Data](https://helpdesk.everflow.io/customer/how-to-export-your-data) in the
    Help Center.
  version: 1.0.0
servers:
  - description: Production Server
    url: https://api.eflow.team/v1
security: []
tags:
  - name: Reporting Exports
    description: Endpoints for exporting reporting data as downloadable files.
paths:
  /networks/reporting/entity/table/export:
    post:
      tags:
        - Reporting Exports
      summary: Export Aggregated Reporting Data
      requestBody:
        required: true
        content:
          application/json:
            example:
              from: '2026-03-01'
              to: '2026-03-08'
              timezone_id: 90
              currency_id: USD
              columns:
                - column: offer
              format: csv
            schema:
              type: object
              required:
                - from
                - to
                - timezone_id
                - currency_id
                - columns
                - format
              properties:
                from:
                  type: string
                  description: 'Start date (format: `YYYY-MM-DD` or `YYYY-MM-DD HH:mm:SS`).'
                to:
                  type: string
                  description: 'End date (format: `YYYY-MM-DD` or `YYYY-MM-DD HH:mm:SS`).'
                timezone_id:
                  type: integer
                  description: >-
                    Timezone identifier for the date range. See
                    `/meta/timezones` for supported values.
                currency_id:
                  type: string
                  description: >-
                    Currency code for monetary values. Currently only `USD` is
                    supported.
                columns:
                  type: array
                  description: >
                    Columns to group/pivot data by. Same column options as the
                    entity table endpoint.
                  items:
                    type: object
                    required:
                      - column
                    properties:
                      column:
                        type: string
                        description: >
                          The dimension to group by. See the [Get Aggregated
                          Reporting
                          Data](/api-reference/post-networksreportingentitytable)
                          endpoint for the full list of supported columns.
                        enum:
                          - unix_timestamp
                          - offer
                          - offer_group
                          - affiliate
                          - advertiser
                          - creative
                          - category
                          - affiliate_manager
                          - account_manager
                          - country
                          - carrier
                          - platform
                          - os_version
                          - device_type
                          - browser
                          - device_make
                          - language
                          - sub1
                          - sub2
                          - sub3
                          - sub4
                          - sub5
                          - sub6
                          - sub7
                          - sub8
                          - sub9
                          - sub10
                          - event_name
                          - region
                          - city
                          - dma
                          - connection_type
                          - campaign
                          - source_id
                          - hour
                          - date
                          - week
                          - month
                          - year
                          - offer_url
                          - device_model
                          - project_id
                          - referer
                          - offer_id
                          - offer_group_id
                          - affiliate_id
                          - advertiser_id
                          - campaign_id
                          - creative_id
                          - payout_type
                          - payout_amount
                          - revenue_type
                          - revenue_amount
                          - currency
                          - sales_manager
                          - account_executive
                          - derived_affiliate_manager
                          - derived_account_manager
                          - derived_sales_manager
                          - derived_project_id
                          - derived_account_executive
                          - isp
                          - adv1
                          - adv2
                          - adv3
                          - adv4
                          - adv5
                          - adv6
                          - adv7
                          - adv8
                          - adv9
                          - adv10
                          - offer_status
                          - hourly
                          - originating_offer
                          - is_proxy
                          - affiliate_status
                          - coupon_code
                          - advertiser_campaign_name
                          - app_identifier
                          - bundle_id
                          - meta_platform
                          - score_rating
                          - total_rating
                          - size
                          - developer
                          - version
                          - advertiser_event_name
                          - tracking_domain
                          - postal_code
                          - order_id
                          - attribution_method
                          - custom_payout_revenue
                          - custom_payout_revenue_id
                          - country_code
                          - day_of_week
                          - transaction_id
                          - derived_referred_by
                format:
                  type: string
                  enum:
                    - csv
                    - json
                  description: The file format for the export.
                metrics:
                  type: array
                  description: >
                    Optional list of specific metric columns to include in the
                    export. If omitted, all available metrics are included.
                  items:
                    type: string
                    enum:
                      - impression
                      - total_click
                      - gross_click
                      - unique_click
                      - invalid_click
                      - duplicate_click
                      - ctr
                      - cv
                      - invalid_cv_scrub
                      - view_through_cv
                      - total_cv
                      - event
                      - cvr
                      - evr
                      - cpc
                      - cpa
                      - epc
                      - rpc
                      - rpa
                      - cpm
                      - rpm
                      - payout
                      - revenue
                      - event_revenue
                      - gross_sales
                      - profit
                      - margin
                      - roas
                      - gross_sales_vt
                      - event_vt
                      - redirect_traffic_revenue
                      - avg_sale_value
                      - gross_sales_cv
                      - gross_sales_event
                      - cost
                      - media_buying_cost
                usm_columns:
                  type: array
                  description: >
                    Optional list of additional USM (user session metric)
                    columns to include in the export.
                  items:
                    type: string
                query:
                  type: object
                  description: >
                    Query configuration with optional filters and exclusions.
                    Same structure as the entity table endpoint.
                  properties:
                    filters:
                      type: array
                      description: Filters to narrow results.
                      items:
                        type: object
                        properties:
                          filter_id_value:
                            type: string
                          resource_type:
                            type: string
                            enum:
                              - offer
                              - offer_group
                              - affiliate
                              - advertiser
                              - creative
                              - network
                              - account_manager
                              - affiliate_manager
                              - category
                              - billing_frequency
                              - country
                              - region
                              - city
                              - dma
                              - carrier
                              - device_platform
                              - device_type
                              - device_make
                              - browser
                              - s1
                              - s2
                              - s3
                              - s4
                              - s5
                              - event_name
                              - language
                              - connection_type
                              - campaign
                              - source_id
                              - transaction_id
                              - error_code
                              - offer_url
                              - device_model
                              - business_unit
                              - label
                              - sales_manager
                              - account_executive
                              - everflow_account_manager
                              - adv1
                              - adv2
                              - adv3
                              - adv4
                              - adv5
                              - adv6
                              - adv7
                              - adv8
                              - adv9
                              - adv10
                              - currency
                              - revenue_type
                              - revenue_amount
                              - payout_type
                              - payout_amount
                              - os_version
                              - project_id
                              - isp
                              - offer_status
                              - sub1
                              - sub2
                              - sub3
                              - sub4
                              - sub5
                              - sub6
                              - sub7
                              - sub8
                              - sub9
                              - sub10
                              - channel
                              - coupon_code
                              - affiliate_tier
                              - tracking_domain
                              - network_status
                              - partner_type
                              - country_code
                              - customer_billing_item_type
                              - advertiser_billing_frequency
                    exclusions:
                      type: array
                      description: Exclusion filters. Same resource_type values as filters.
                      items:
                        type: object
                        properties:
                          filter_id_value:
                            type: string
                          resource_type:
                            type: string
      responses:
        '200':
          description: >
            File download. Content-Type is `text/csv` or `application/json`
            depending on the requested format. Content-Disposition header
            includes the filename.
      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

````