Skip to main content
POST
/
networks
/
reporting
/
conversions
/
export
Export Conversions
curl --request POST \
  --url https://api.eflow.team/v1/networks/reporting/conversions/export \
  --header 'Content-Type: application/json' \
  --header 'X-Eflow-Api-Key: <api-key>' \
  --data '
{
  "from": "2026-03-01",
  "to": "2026-03-08",
  "timezone_id": 90,
  "currency_id": "USD",
  "format": "csv",
  "show_conversions": true,
  "show_events": true,
  "columns": [
    "offer",
    "affiliate"
  ]
}
'
Exports conversion and/or event data in the specified format (CSV or JSON). Accepts the same parameters as the Get Conversion Report endpoint with additional format and columns fields. The columns field lets you choose which data columns to include in the export. If omitted, all columns are included. The response is a file download with the appropriate Content-Type and Content-Disposition headers set.

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.

currency_id
string
required

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

show_conversions
boolean
default:true
required

Include base conversion records in the export.

format
enum<string>
required

The file format for the export.

Available options:
csv,
json
show_events
boolean
default:false

Include post-conversion event records in the export.

show_only_scrub
boolean
default:false

Only include scrubbed (rejected) conversions/events.

show_only_vt
boolean
default:false

Only include view-through conversions.

show_only_ct
boolean
default:false

Only include click-through conversions.

show_only_fail_traffic
boolean
default:false

Only include fail traffic conversions.

show_only_updated
boolean
default:false

Only include conversions that have been updated.

columns
enum<string>[]

Columns to include in the export. If omitted, all columns are included.

Available options:
offer,
affiliate,
advertiser,
offer_group,
campaign,
affiliate_manager,
creative,
offer_url,
category,
previous_offer,
source_id,
sub1,
sub2,
sub3,
sub4,
sub5,
adv1,
adv2,
adv3,
adv4,
adv5,
country,
region,
city,
platform,
os_version,
isp,
account_manager,
android_id,
android_id_md5,
android_id_sha1,
app_id,
brand,
browser,
carrier,
click_date,
conversion_id,
conversion_user_ip,
coupon_code,
currency,
delta_hours,
device,
email,
error_message,
event_name,
google_ad_id,
google_ad_id_md5,
google_ad_id_sha1,
http_user_agent,
idfa,
idfa_md5,
idfa_sha1,
language,
notes,
order_id,
order_line_items,
order_number,
payout,
payout_type,
referrer,
revenue,
revenue_type,
sale_amount,
session_ip,
transaction_id,
type,
status,
conversion_date,
origin,
network_id,
payout_revenue_id,
project_id,
dma,
is_cookie_based,
previous_transaction_id,
is_event_protected,
is_fired_pixel,
is_scrub,
is_view_through,
attribution_method,
country_code,
base_conversion_time
query
object

Query configuration with filters and search terms. Same structure as the conversion report endpoint.

Response

200

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