Skip to main content
POST
/
networks
/
traffic
/
usage
/
domains
Get Domain Usage
curl --request POST \
  --url https://api.eflow.team/v1/networks/traffic/usage/domains \
  --header 'Content-Type: application/json' \
  --header 'X-Eflow-Api-Key: <api-key>' \
  --data '
{
  "from": "<string>",
  "to": "<string>",
  "timezone_id": 123
}
'
{
  "network_domain_reporting": [
    {
      "tracking_domain_id": 1,
      "url": "track.acme.com",
      "offer_count": 3,
      "affiliate_count": 8,
      "reporting": {
        "total_click": 1240,
        "unique_click": 1180,
        "cv": 64,
        "revenue": 5120.5,
        "payout": 3280,
        "profit": 1840.5
      }
    }
  ]
}
Traffic-attributed reporting per tracking domain — how many offers, partners, and combinations route through each domain, with that domain’s performance metrics. The reporting object uses the standard Network Reporting metric set; see the Reporting endpoints for the full metric definitions.

Authorizations

X-Eflow-Api-Key
string
header
required

Body

application/json

Optional reporting window. Send an empty object {} for the default window.

from
string

Window start, YYYY-MM-DD.

to
string

Window end, YYYY-MM-DD.

timezone_id
integer

Reporting timezone ID.

Response

200 - application/json
network_domain_reporting
object[]