Skip to main content
GET
/
advertisers
/
reporting
/
conversions
/
{conversionId}
Get Conversion By ID
curl --request GET \
  --url https://api.eflow.team/v1/advertisers/reporting/conversions/{conversionId} \
  --header 'X-Eflow-Api-Key: <api-key>'
{
  "conversion_id": 123,
  "conversion_unix_timestamp": 123,
  "cost_type": "<string>",
  "cost": 123,
  "sale_amount": 123,
  "ip": "<string>",
  "click_ip": "<string>",
  "user_agent": "<string>",
  "country": "<string>",
  "country_code": "<string>",
  "region": "<string>",
  "city": "<string>",
  "dma": 123,
  "carrier": "<string>",
  "platform": "<string>",
  "os_version": "<string>",
  "device_type": "<string>",
  "device_model": "<string>",
  "device_make": "<string>",
  "browser": "<string>",
  "language": "<string>",
  "connection_type": "<string>",
  "isp": "<string>",
  "adv1": "<string>",
  "adv2": "<string>",
  "adv3": "<string>",
  "adv4": "<string>",
  "adv5": "<string>",
  "transaction_id": "<string>",
  "is_event": true,
  "event_name": "<string>",
  "is_view_through": true,
  "is_unique": true,
  "coupon_code": "<string>",
  "time_created": 123,
  "relationship": {
    "offer": {
      "network_offer_id": 123,
      "name": "<string>"
    },
    "affiliate": {
      "network_affiliate_id": 123,
      "name": "<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.

Path Parameters

conversionId
integer
required

The unique conversion ID.

Response

OK

A single conversion record with full details.

conversion_id
integer

Unique conversion ID.

conversion_unix_timestamp
integer

Unix timestamp of when the conversion occurred.

cost_type
string

Cost type for this conversion (e.g. cpa, cpc).

cost
number

Cost amount for this conversion.

sale_amount
number

Sale amount associated with this conversion.

ip
string

IP address of the converting user.

click_ip
string

IP address at time of the original click.

user_agent
string

User agent string of the converting user.

country
string

Country of the converting user.

country_code
string

ISO country code.

region
string

Region/state of the converting user.

city
string

City of the converting user.

dma
integer

Designated Market Area code.

carrier
string

Mobile carrier name.

platform
string

Operating system platform.

os_version
string

Operating system version.

device_type
string

Device type (e.g. desktop, mobile, tablet).

device_model
string

Device model name.

device_make
string

Device manufacturer.

browser
string

Browser name.

language
string

Browser language.

connection_type
string

Connection type (e.g. wifi, cellular).

isp
string

Internet service provider.

adv1
string

Advertiser sub-parameter 1.

adv2
string

Advertiser sub-parameter 2.

adv3
string

Advertiser sub-parameter 3.

adv4
string

Advertiser sub-parameter 4.

adv5
string

Advertiser sub-parameter 5.

transaction_id
string

Click transaction ID associated with this conversion.

is_event
boolean

Whether this is a post-conversion event (true) or base conversion (false).

event_name
string

Name of the post-conversion event (if is_event is true).

is_view_through
boolean

Whether this is a view-through conversion.

is_unique
boolean

Whether this conversion is unique.

coupon_code
string

Coupon code used for this conversion.

time_created
integer

Unix timestamp of when the conversion record was created.

relationship
object

Related entities for this conversion.