Skip to main content
POST
/
networks
/
reporting
/
entity
/
summary
Get Reporting Summary
curl --request POST \
  --url https://api.eflow.team/v1/networks/reporting/entity/summary \
  --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": [
    "offer"
  ],
  "query": {
    "filters": {}
  }
}
'
{
  "imp": 123,
  "total_click": 123,
  "unique_click": 123,
  "invalid_click": 123,
  "cv": 123,
  "event": 123,
  "revenue": 123,
  "payout": 123,
  "profit": 123,
  "margin": 123,
  "cpc": 123,
  "cpa": 123,
  "epc": 123,
  "rpc": 123,
  "rpa": 123,
  "cvr": 123
}

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

to
string
required

End date (format: YYYY-MM-DD).

timezone_id
integer
required

Timezone ID for the report.

currency_id
string
required

Currency code for reporting metrics.

columns
string[]

Columns to group by.

query
object

Optional filters to narrow the report scope.

Response

200 - application/json

OK

imp
integer

Total impressions.

total_click
integer

Total clicks.

unique_click
integer

Unique clicks.

invalid_click
integer

Invalid clicks.

cv
integer

Total conversions.

event
integer

Total events.

revenue
number

Total revenue.

payout
number

Total payout.

profit
number

Total profit.

margin
number

Profit margin percentage.

cpc
number

Cost per click.

cpa
number

Cost per action.

epc
number

Earnings per click.

rpc
number

Revenue per click.

rpa
number

Revenue per action.

cvr
number

Conversion rate.