Skip to main content
GET
/
advertisers
/
reporting
/
clicks
/
{transactionId}
Get Click
curl --request GET \
  --url https://api.eflow.team/v1/advertisers/reporting/clicks/{transactionId} \
  --header 'X-Eflow-Api-Key: <api-key>'
{
  "transaction_id": "<string>",
  "unix_timestamp": 123,
  "user_ip": "<string>",
  "is_unique": 123,
  "is_view_through": true,
  "has_conversion": true,
  "cost": 123,
  "cost_type": "<string>",
  "currency_id": "<string>",
  "tracking_url": "<string>",
  "url": "<string>",
  "server_side_url": "<string>",
  "coupon_code": "<string>",
  "project_id": 123,
  "idfa": "<string>",
  "idfa_md5": "<string>",
  "idfa_sha1": "<string>",
  "google_ad_id": "<string>",
  "google_ad_id_md5": "<string>",
  "google_ad_id_sha1": "<string>",
  "android_id": "<string>",
  "android_id_md5": "<string>",
  "android_id_sha1": "<string>",
  "relationship": {
    "offer": {
      "network_offer_id": 123,
      "network_id": 123,
      "network_advertiser_id": 123,
      "name": "<string>",
      "offer_status": "<string>",
      "network_tracking_domain_id": 123
    },
    "affiliate": {
      "network_affiliate_id": 123,
      "network_id": 123,
      "name": "<string>",
      "account_status": "<string>"
    },
    "geolocation": {
      "country_code": "<string>",
      "country_name": "<string>",
      "region_code": "<string>",
      "region_name": "<string>",
      "city_name": "<string>",
      "dma": 123,
      "dma_name": "<string>",
      "timezone": "<string>",
      "carrier_name": "<string>",
      "carrier_code": "<string>",
      "organization": "<string>",
      "isp_name": "<string>",
      "is_mobile": true,
      "is_proxy": true,
      "postal_code": "<string>"
    },
    "device_information": {
      "is_mobile": true,
      "platform_name": "<string>",
      "os_version": "<string>",
      "brand": "<string>",
      "model": "<string>",
      "is_tablet": true,
      "browser_name": "<string>",
      "browser_version": "<string>",
      "device_type": "<string>",
      "language": "<string>",
      "http_accept_language": "<string>",
      "is_robot": true,
      "is_filter": true
    },
    "sub1": "<string>",
    "sub2": "<string>",
    "sub3": "<string>",
    "sub4": "<string>",
    "sub5": "<string>",
    "source_id": "<string>",
    "affiliate_id": 123
  }
}

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.

Retrieve click details by transaction ID. Returns the full click object including geo-location, device information, and sub-placement values.

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

transactionId
string
required

The click transaction ID.

Response

transaction_id
string

The click transaction ID.

unix_timestamp
integer

Unix timestamp of when the click occurred.

user_ip
string

IP address of the clicking user.

is_unique
integer

Whether this click is unique (1 = unique, 0 = not unique).

is_view_through
boolean

Whether this is a view-through click.

has_conversion
boolean

Whether this click resulted in a conversion.

cost
number

Cost amount for this click.

cost_type
string

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

currency_id
string

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

tracking_url
string

The tracking URL used for this click.

url
string

The destination URL.

server_side_url
string

Server-side tracking URL.

coupon_code
string

Coupon code associated with this click.

project_id
integer

Project ID.

idfa
string

Apple Identifier for Advertisers.

idfa_md5
string

MD5 hash of IDFA.

idfa_sha1
string

SHA1 hash of IDFA.

google_ad_id
string

Google Advertising ID.

google_ad_id_md5
string

MD5 hash of Google Advertising ID.

google_ad_id_sha1
string

SHA1 hash of Google Advertising ID.

android_id
string

Android device ID.

android_id_md5
string

MD5 hash of Android ID.

android_id_sha1
string

SHA1 hash of Android ID.

relationship
object

Related entities for this click.