Search Conversions
curl --request POST \
--url https://api.eflow.team/v1/advertisers/reporting/conversions \
--header 'Content-Type: application/json' \
--header 'X-Eflow-Api-Key: <api-key>' \
--data '
{
"show_conversions": true,
"show_events": false,
"show_only_vt": false,
"show_only_ct": false,
"from": "2024-01-01",
"to": "2024-01-31",
"timezone_id": 67,
"currency_id": "USD",
"query": {
"filters": [],
"search_terms": []
}
}
'import requests
url = "https://api.eflow.team/v1/advertisers/reporting/conversions"
payload = {
"show_conversions": True,
"show_events": False,
"show_only_vt": False,
"show_only_ct": False,
"from": "2024-01-01",
"to": "2024-01-31",
"timezone_id": 67,
"currency_id": "USD",
"query": {
"filters": [],
"search_terms": []
}
}
headers = {
"X-Eflow-Api-Key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'X-Eflow-Api-Key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
show_conversions: true,
show_events: false,
show_only_vt: false,
show_only_ct: false,
from: '2024-01-01',
to: '2024-01-31',
timezone_id: 67,
currency_id: 'USD',
query: {filters: [], search_terms: []}
})
};
fetch('https://api.eflow.team/v1/advertisers/reporting/conversions', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.eflow.team/v1/advertisers/reporting/conversions",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'show_conversions' => true,
'show_events' => false,
'show_only_vt' => false,
'show_only_ct' => false,
'from' => '2024-01-01',
'to' => '2024-01-31',
'timezone_id' => 67,
'currency_id' => 'USD',
'query' => [
'filters' => [
],
'search_terms' => [
]
]
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"X-Eflow-Api-Key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.eflow.team/v1/advertisers/reporting/conversions"
payload := strings.NewReader("{\n \"show_conversions\": true,\n \"show_events\": false,\n \"show_only_vt\": false,\n \"show_only_ct\": false,\n \"from\": \"2024-01-01\",\n \"to\": \"2024-01-31\",\n \"timezone_id\": 67,\n \"currency_id\": \"USD\",\n \"query\": {\n \"filters\": [],\n \"search_terms\": []\n }\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("X-Eflow-Api-Key", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.eflow.team/v1/advertisers/reporting/conversions")
.header("X-Eflow-Api-Key", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"show_conversions\": true,\n \"show_events\": false,\n \"show_only_vt\": false,\n \"show_only_ct\": false,\n \"from\": \"2024-01-01\",\n \"to\": \"2024-01-31\",\n \"timezone_id\": 67,\n \"currency_id\": \"USD\",\n \"query\": {\n \"filters\": [],\n \"search_terms\": []\n }\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.eflow.team/v1/advertisers/reporting/conversions")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["X-Eflow-Api-Key"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"show_conversions\": true,\n \"show_events\": false,\n \"show_only_vt\": false,\n \"show_only_ct\": false,\n \"from\": \"2024-01-01\",\n \"to\": \"2024-01-31\",\n \"timezone_id\": 67,\n \"currency_id\": \"USD\",\n \"query\": {\n \"filters\": [],\n \"search_terms\": []\n }\n}"
response = http.request(request)
puts response.read_body{
"conversions": [
{
"conversion_id": "<string>",
"conversion_unix_timestamp": 123,
"cost_type": "<string>",
"cost": 123,
"sale_amount": 123,
"conversion_user_ip": "<string>",
"session_user_ip": "<string>",
"http_user_agent": "<string>",
"country": "<string>",
"region": "<string>",
"city": "<string>",
"dma": 123,
"carrier": "<string>",
"platform": "<string>",
"os_version": "<string>",
"device_type": "<string>",
"browser": "<string>",
"language": "<string>",
"isp": "<string>",
"adv1": "<string>",
"adv2": "<string>",
"adv3": "<string>",
"adv4": "<string>",
"adv5": "<string>",
"adv6": "<string>",
"adv7": "<string>",
"adv8": "<string>",
"adv9": "<string>",
"adv10": "<string>",
"transaction_id": "<string>",
"is_event": true,
"event": "<string>",
"click_unix_timestamp": 123,
"currency_id": "<string>",
"order_id": "<string>",
"brand": "<string>",
"coupon_code": "<string>",
"relationship": {
"offer": {
"network_offer_id": 123,
"network_id": 123,
"name": "<string>",
"offer_status": "<string>"
},
"affiliate": {
"network_affiliate_id": 123,
"network_id": 123,
"name": "<string>",
"account_status": "<string>"
},
"events_count": 123,
"offer_url": {},
"source_id": "<string>",
"affiliate_id": 123,
"sub1": "<string>",
"sub2": "<string>",
"sub3": "<string>",
"sub4": "<string>",
"sub5": "<string>",
"sub6": "<string>",
"sub7": "<string>",
"sub8": "<string>",
"sub9": "<string>",
"sub10": "<string>"
}
}
],
"paging": {
"page": 123,
"page_size": 123,
"total_count": 123
}
}Reporting
Search Conversions
POST
/
advertisers
/
reporting
/
conversions
Search Conversions
curl --request POST \
--url https://api.eflow.team/v1/advertisers/reporting/conversions \
--header 'Content-Type: application/json' \
--header 'X-Eflow-Api-Key: <api-key>' \
--data '
{
"show_conversions": true,
"show_events": false,
"show_only_vt": false,
"show_only_ct": false,
"from": "2024-01-01",
"to": "2024-01-31",
"timezone_id": 67,
"currency_id": "USD",
"query": {
"filters": [],
"search_terms": []
}
}
'import requests
url = "https://api.eflow.team/v1/advertisers/reporting/conversions"
payload = {
"show_conversions": True,
"show_events": False,
"show_only_vt": False,
"show_only_ct": False,
"from": "2024-01-01",
"to": "2024-01-31",
"timezone_id": 67,
"currency_id": "USD",
"query": {
"filters": [],
"search_terms": []
}
}
headers = {
"X-Eflow-Api-Key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'X-Eflow-Api-Key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
show_conversions: true,
show_events: false,
show_only_vt: false,
show_only_ct: false,
from: '2024-01-01',
to: '2024-01-31',
timezone_id: 67,
currency_id: 'USD',
query: {filters: [], search_terms: []}
})
};
fetch('https://api.eflow.team/v1/advertisers/reporting/conversions', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.eflow.team/v1/advertisers/reporting/conversions",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'show_conversions' => true,
'show_events' => false,
'show_only_vt' => false,
'show_only_ct' => false,
'from' => '2024-01-01',
'to' => '2024-01-31',
'timezone_id' => 67,
'currency_id' => 'USD',
'query' => [
'filters' => [
],
'search_terms' => [
]
]
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"X-Eflow-Api-Key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.eflow.team/v1/advertisers/reporting/conversions"
payload := strings.NewReader("{\n \"show_conversions\": true,\n \"show_events\": false,\n \"show_only_vt\": false,\n \"show_only_ct\": false,\n \"from\": \"2024-01-01\",\n \"to\": \"2024-01-31\",\n \"timezone_id\": 67,\n \"currency_id\": \"USD\",\n \"query\": {\n \"filters\": [],\n \"search_terms\": []\n }\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("X-Eflow-Api-Key", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.eflow.team/v1/advertisers/reporting/conversions")
.header("X-Eflow-Api-Key", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"show_conversions\": true,\n \"show_events\": false,\n \"show_only_vt\": false,\n \"show_only_ct\": false,\n \"from\": \"2024-01-01\",\n \"to\": \"2024-01-31\",\n \"timezone_id\": 67,\n \"currency_id\": \"USD\",\n \"query\": {\n \"filters\": [],\n \"search_terms\": []\n }\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.eflow.team/v1/advertisers/reporting/conversions")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["X-Eflow-Api-Key"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"show_conversions\": true,\n \"show_events\": false,\n \"show_only_vt\": false,\n \"show_only_ct\": false,\n \"from\": \"2024-01-01\",\n \"to\": \"2024-01-31\",\n \"timezone_id\": 67,\n \"currency_id\": \"USD\",\n \"query\": {\n \"filters\": [],\n \"search_terms\": []\n }\n}"
response = http.request(request)
puts response.read_body{
"conversions": [
{
"conversion_id": "<string>",
"conversion_unix_timestamp": 123,
"cost_type": "<string>",
"cost": 123,
"sale_amount": 123,
"conversion_user_ip": "<string>",
"session_user_ip": "<string>",
"http_user_agent": "<string>",
"country": "<string>",
"region": "<string>",
"city": "<string>",
"dma": 123,
"carrier": "<string>",
"platform": "<string>",
"os_version": "<string>",
"device_type": "<string>",
"browser": "<string>",
"language": "<string>",
"isp": "<string>",
"adv1": "<string>",
"adv2": "<string>",
"adv3": "<string>",
"adv4": "<string>",
"adv5": "<string>",
"adv6": "<string>",
"adv7": "<string>",
"adv8": "<string>",
"adv9": "<string>",
"adv10": "<string>",
"transaction_id": "<string>",
"is_event": true,
"event": "<string>",
"click_unix_timestamp": 123,
"currency_id": "<string>",
"order_id": "<string>",
"brand": "<string>",
"coupon_code": "<string>",
"relationship": {
"offer": {
"network_offer_id": 123,
"network_id": 123,
"name": "<string>",
"offer_status": "<string>"
},
"affiliate": {
"network_affiliate_id": 123,
"network_id": 123,
"name": "<string>",
"account_status": "<string>"
},
"events_count": 123,
"offer_url": {},
"source_id": "<string>",
"affiliate_id": 123,
"sub1": "<string>",
"sub2": "<string>",
"sub3": "<string>",
"sub4": "<string>",
"sub5": "<string>",
"sub6": "<string>",
"sub7": "<string>",
"sub8": "<string>",
"sub9": "<string>",
"sub10": "<string>"
}
}
],
"paging": {
"page": 123,
"page_size": 123,
"total_count": 123
}
}Search raw conversion data with flexible filtering. Each conversion is returned as a separate row with full details including geo-location, device info, and advertiser parameters (adv1-adv10).
Each request must contain
from and to dates, a timezone_id, and boolean flags for show_conversions and show_events.
The conversion report is limited to the prior 365 days and a maximum duration of one year. Requests outside of this range will result in an error.Authorizations
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.
Query Parameters
Page number (1-based).
Number of results per page.
Body
application/json
Whether to include base conversions in the results.
Whether to include post-conversion events in the results.
Start date. Format YYYY-MM-DD or YYYY-MM-DD hh:mm:ss.
End date. Format YYYY-MM-DD or YYYY-MM-DD hh:mm:ss.
Timezone identifier for the request.
Currency code for monetary values (e.g. "USD").
When true, only return view-through conversions.
When true, only return click-through conversions.
Query configuration for filtering.
Show child attributes
Show child attributes
Was this page helpful?
⌘I
