Dashboard Stats
Operations to fetch the Dashboard Stats
Dashboard Summary
This endpoint is used to generate the cards at the top of the Everflow dashboard page in the UI. It lists comparative data for standard reporting metrics such as payout, revenue, number of clicks, etc. over time.
For every metric, values for current month vs total of last month and today vs total of yesterday are listed.
Performance values are computed by comparing yesterday value at the same moment of the day as now.
GET
/v1/networks/dashboard/summary
Request Example
cURL
curl --request GET 'https://api.eflow.team/v1/networks/dashboard/summary' \
--header 'X-Eflow-API-Key: <INSERT API KEY>'
Response
{
"revenue":
{
"today": 28576.65,
"yesterday": 41199.12,
"current_month": 270315.70,
"last_month": 929350.99,
"trending_percentage": -23.4
},
"payout":
{
"today": 8060.50,
"yesterday": 9692.5664,
"current_month": 76260.50,
"last_month": 258850.17,
"trending_percentage": -5.7
},
"profit":
{
"today": 20516.15,
"yesterday": 31506.55,
"current_month": 194055.19,
"last_month": 670500.82,
"trending_percentage": -28.6
},
"margin":
{
"today": 71.793,
"yesterday": 76.474,
"current_month": 71.788,
"last_month": 72.147
},
"click":
{
"today": 84386,
"yesterday": 112299,
"current_month": 780852,
"last_month": 3089428,
"trending_percentage": -16.9
},
"conversion":
{
"today": 1188,
"yesterday": 1320,
"current_month": 10674,
"last_month": 36741,
"trending_percentage": 1.7
},
"event":
{
"today": 619,
"yesterday": 837,
"current_month": 5887,
"last_month": 20056,
"trending_percentage": -17.6
},
"cvr":
{
"today": 1.408,
"yesterday": 1.175,
"current_month": 1.367,
"last_month": 1.189
},
"evr":
{
"today": 52.104,
"yesterday": 63.409,
"current_month": 55.153,
"last_month": 54.588
},
"cpc":
{
"today": 0.096,
"yesterday": 0.086,
"current_month": 0.098,
"last_month": 0.084
},
"epc":
{
"today": 0.243,
"yesterday": 0.281,
"current_month": 0.249,
"last_month": 0.217
},
"rpc":
{
"today": 0.339,
"yesterday": 0.367,
"current_month": 0.346,
"last_month": 0.301
},
"rpm":
{
"today": 0,
"yesterday": 0,
"current_month": 0,
"last_month": 0
},
"cpm":
{
"today": 0,
"yesterday": 0,
"current_month": 0,
"last_month": 0
},
"gross_sales":
{
"today": 87996,
"yesterday": 106358,
"current_month": 814262,
"last_month": 2819896,
"trending_percentage": -6.9
},
"gross_click":
{
"today": 136836,
"yesterday": 158173,
"current_month": 1245805,
"last_month": 4900458,
"trending_percentage": -2.4
},
"impression":
{
"today": 0,
"yesterday": 0,
"current_month": 0,
"last_month": 0,
"trending_percentage": 0
},
"ctr":
{
"today": 0,
"yesterday": 0,
"current_month": 0,
"last_month": 0
},
"invalid_click":
{
"today": 52450,
"yesterday": 45874,
"current_month": 464953,
"last_month": 1811030,
"trending_percentage": 35.4
},
"duplicate_click":
{
"today": 0,
"yesterday": 0,
"current_month": 20,
"last_month": 63,
"trending_percentage": 0
},
"unique_click":
{
"today": 84386,
"yesterday": 112299,
"current_month": 780832,
"last_month": 3089365,
"trending_percentage": -16.9
},
"view_through_conversion":
{
"today": 0,
"yesterday": 0,
"current_month": 0,
"last_month": 0,
"trending_percentage": 0
},
"approved_conversion":
{
"today": 1166,
"yesterday": 1304,
"current_month": 10510,
"last_month": 36156,
"trending_percentage": 1
},
"throttled_conversion":
{
"today": 22,
"yesterday": 16,
"current_month": 164,
"last_month": 585,
"trending_percentage": 57.1
}
}