Skip to main content
POST
/
networks
/
reporting
/
entity
/
table
/
export
Export Aggregated Reporting Data
curl --request POST \
  --url https://api.eflow.team/v1/networks/reporting/entity/table/export \
  --header 'Content-Type: application/json' \
  --header 'X-Eflow-Api-Key: <api-key>' \
  --data '
{
  "from": "2025-01-01",
  "to": "2025-01-31",
  "timezone_id": 67,
  "currency_id": "USD",
  "columns": [
    {
      "column": "offer"
    }
  ],
  "format": "csv",
  "query": {
    "filters": []
  }
}
'

Authorizations

X-Eflow-Api-Key
string
header
required

The Everflow API key generated from the Control Center > Security.

Body

application/json
from
string
required

Start date (format: YYYY-MM-DD or YYYY-MM-DD HH:mm:SS).

to
string
required

End date (format: YYYY-MM-DD or YYYY-MM-DD HH:mm:SS).

timezone_id
integer
required

Timezone identifier for the date range. See /meta/timezones for supported values.

currency_id
string
required

Currency code for monetary values. Currently only USD is supported.

columns
object[]
required

Columns to group/pivot data by. Same column options as the entity table endpoint.

format
enum<string>
required

The file format for the export.

Available options:
csv,
json
metrics
enum<string>[]

Optional list of specific metric columns to include in the export. If omitted, all available metrics are included.

Available options:
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
string[]

Optional list of additional USM (user session metric) columns to include in the export.

query
object

Query configuration with optional filters and exclusions. Same structure as the entity table endpoint.

Response

200

File download. Content-Type is text/csv or application/json depending on the requested format. Content-Disposition header includes the filename.