Skip to main content
POST
/
affiliates
/
dashboard
/
offertrend
Get Offer Trend
curl --request POST \
  --url https://api.eflow.team/v1/affiliates/dashboard/offertrend \
  --header 'Content-Type: application/json' \
  --header 'X-Eflow-Api-Key: <api-key>' \
  --data '
{
  "timezone_id": 67,
  "currency_id": "USD"
}
'
{
  "trends": [
    {
      "offer": {
        "network_offer_id": 123,
        "name": "<string>"
      },
      "revenue": 123,
      "conversions": 123,
      "clicks": 123
    }
  ]
}

Authorizations

X-Eflow-Api-Key
string
header
required

The affiliate's API key generated from the Affiliate Portal. Uses the X-Eflow-Api-Key header.

Body

application/json
timezone_id
integer
required

Timezone identifier for the trend calculations.

currency_id
string

Currency code for monetary values.

Response

200 - application/json

OK

Array of offer trend data points.