Skip to main content
POST
/
advertisers
/
reporting
/
conversions
/
export
Export Conversions
curl --request POST \
  --url https://api.eflow.team/v1/advertisers/reporting/conversions/export \
  --header 'Content-Type: application/json' \
  --header 'X-Eflow-Api-Key: <api-key>' \
  --data '
{
  "show_conversions": true,
  "show_events": false,
  "from": "2024-01-01",
  "to": "2024-01-31",
  "timezone_id": 67,
  "currency_id": "USD",
  "format": "csv",
  "query": {
    "filters": []
  }
}
'
"<string>"

Authorizations

X-Eflow-Api-Key
string
header
required

The advertiser's API key generated from the Advertiser Portal. Uses the same X-Eflow-Api-Key header as other Everflow APIs, but the key belongs to the advertiser user rather than the network admin.

Body

application/json
show_conversions
boolean
required

Whether to include base conversions in the export.

show_events
boolean
required

Whether to include post-conversion events in the export.

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

currency_id
string
required

Currency code for monetary values (e.g. "USD").

format
enum<string>
required

Export format. csv for comma-separated values, json for newline-delimited JSON.

Available options:
csv,
json
show_only_vt
boolean

When true, only export view-through conversions.

show_only_ct
boolean

When true, only export click-through conversions.

query
object

Query configuration for filtering.

Response

OK — Returns the exported data in the requested format.

CSV-formatted conversion data.