Skip to main content
POST
Get Click Report
Extract a raw list of clicks. Limited to 10,000 clicks per request and a maximum date range of 14 days. Requires from/to dates in YYYY-MM-DD HH:MM:SS format and a timezone_id.
Exceeding the 14-day limit returns 200 with {"table": []}, not an error — indistinguishable from a period that genuinely has no clicks.With date-only values to is the end of that day, so the range must span at most 14 calendar days inclusive: 2026-08-16 to 2026-08-29 is accepted; 2026-08-15 to 2026-08-29 comes back empty.
The 10,000-click limit truncates silently. If a request returns exactly 10,000 clicks, narrow the range and page through.

Examples

Filter by country and sub1 value:
Filter by multiple offers:

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 in YYYY-MM-DD HH:MM:SS format.

to
string
required

End date in YYYY-MM-DD HH:MM:SS format.

timezone_id
integer
required

Timezone ID for the report.

query
object

Response

200 - application/json
clicks
object[]

Array of click records. NOTE: this key is named clicks on a populated response; the endpoint emits table only when the result set is empty ({"table": []}). Handle both.