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

Documentation Index

Fetch the complete documentation index at: https://developers.everflow.io/llms.txt

Use this file to discover all available pages before exploring further.

Exports conversion and event data in the specified format (CSV or JSON). Accepts the same parameters as the conversion report endpoint with an additional format field.

Authorizations

X-Eflow-Api-Key
string
header
required

The affiliate's API key generated from the Affiliate Portal. Uses the same X-Eflow-Api-Key header as the Network API, but the key belongs to the affiliate user rather than the network admin.

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 identifier for the date range.

format
enum<string>
required

Export format.

Available options:
csv,
json
show_conversions
boolean
default:true

Include conversion records.

show_events
boolean
default:false

Include post-conversion event records.

query
object

Response

200

OK. Response format depends on the format parameter.