Skip to main content
POST
/
networks
/
reporting
/
variance
Get Variance Report
curl --request POST \
  --url https://api.eflow.team/v1/networks/reporting/variance \
  --header 'Content-Type: application/json' \
  --header 'X-Eflow-Api-Key: <api-key>' \
  --data '
{
  "from": "2025-02-01",
  "to": "2025-02-28",
  "compare_from": "2025-01-01",
  "compare_to": "2025-01-31",
  "timezone_id": 67,
  "currency_id": "USD",
  "columns": [
    "offer"
  ],
  "query": {
    "filters": {}
  }
}
'
{
  "table": [
    {
      "variance_percentage": 123,
      "current": {},
      "comparison": {}
    }
  ]
}

Authorizations

X-Eflow-Api-Key
string
header
required

The Everflow API key generated from the Control Center > Security.

Body

application/json
from
string
required

Current period start date (format: YYYY-MM-DD).

to
string
required

Current period end date (format: YYYY-MM-DD).

compare_from
string
required

Comparison period start date (format: YYYY-MM-DD).

compare_to
string
required

Comparison period end date (format: YYYY-MM-DD).

timezone_id
integer
required

Timezone ID for the report.

currency_id
string
required

Currency code for reporting metrics.

columns
string[]

Columns to group by.

query
object

Optional filters to narrow the report scope.

Response

200 - application/json

OK

table
object[]