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": "<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>",
  "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>"
  }
}
Retrieve a single conversion by its ID. Returns the full conversion object including cost, geo-location, device information, and related offer/affiliate details.

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
string
required

The unique conversion ID (UUID string, e.g. ed113548268141de8b4c4ad4a1d812a7).

Response

A single conversion record with full details.

conversion_id
string

Unique conversion ID (UUID string).

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.

conversion_user_ip
string

IP address of the converting user.

session_user_ip
string

IP address at time of the original click session.

http_user_agent
string

HTTP user agent string of the converting user.

country
string

Country of the converting user.

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

browser
string

Browser name.

language
string

Browser language.

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
string

Event identifier string.

click_unix_timestamp
integer

Unix timestamp of the original click.

currency_id
string

Currency code (e.g. "USD").

order_id
string

Order ID associated with this conversion.

brand
string

Device brand/manufacturer.

coupon_code
string

Coupon code used for this conversion.

relationship
object

Related entities for this conversion.