Get Dashboard Summary
curl --request GET \
--url https://api.eflow.team/v1/networks/dashboard/summary \
--header 'X-Eflow-Api-Key: <api-key>'import requests
url = "https://api.eflow.team/v1/networks/dashboard/summary"
headers = {"X-Eflow-Api-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-Eflow-Api-Key': '<api-key>'}};
fetch('https://api.eflow.team/v1/networks/dashboard/summary', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.eflow.team/v1/networks/dashboard/summary",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-Eflow-Api-Key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.eflow.team/v1/networks/dashboard/summary"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-Eflow-Api-Key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.eflow.team/v1/networks/dashboard/summary")
.header("X-Eflow-Api-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.eflow.team/v1/networks/dashboard/summary")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-Eflow-Api-Key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"revenue": {
"today": 123,
"yesterday": 123,
"current_month": 123,
"last_month": 123,
"trending_percentage": 123
},
"payout": {
"today": 123,
"yesterday": 123,
"current_month": 123,
"last_month": 123,
"trending_percentage": 123
},
"profit": {
"today": 123,
"yesterday": 123,
"current_month": 123,
"last_month": 123,
"trending_percentage": 123
},
"click": {
"today": 123,
"yesterday": 123,
"current_month": 123,
"last_month": 123,
"trending_percentage": 123
},
"conversion": {
"today": 123,
"yesterday": 123,
"current_month": 123,
"last_month": 123,
"trending_percentage": 123
},
"event": {
"today": 123,
"yesterday": 123,
"current_month": 123,
"last_month": 123,
"trending_percentage": 123
},
"gross_sales": {
"today": 123,
"yesterday": 123,
"current_month": 123,
"last_month": 123,
"trending_percentage": 123
},
"gross_click": {
"today": 123,
"yesterday": 123,
"current_month": 123,
"last_month": 123,
"trending_percentage": 123
},
"impression": {
"today": 123,
"yesterday": 123,
"current_month": 123,
"last_month": 123,
"trending_percentage": 123
},
"invalid_click": {
"today": 123,
"yesterday": 123,
"current_month": 123,
"last_month": 123,
"trending_percentage": 123
},
"duplicate_click": {
"today": 123,
"yesterday": 123,
"current_month": 123,
"last_month": 123,
"trending_percentage": 123
},
"unique_click": {
"today": 123,
"yesterday": 123,
"current_month": 123,
"last_month": 123,
"trending_percentage": 123
},
"view_through_conversion": {
"today": 123,
"yesterday": 123,
"current_month": 123,
"last_month": 123,
"trending_percentage": 123
},
"approved_conversion": {
"today": 123,
"yesterday": 123,
"current_month": 123,
"last_month": 123,
"trending_percentage": 123
},
"throttled_conversion": {
"today": 123,
"yesterday": 123,
"current_month": 123,
"last_month": 123,
"trending_percentage": 123
},
"margin": {
"today": 123,
"yesterday": 123,
"current_month": 123,
"last_month": 123
},
"cvr": {
"today": 123,
"yesterday": 123,
"current_month": 123,
"last_month": 123
},
"evr": {
"today": 123,
"yesterday": 123,
"current_month": 123,
"last_month": 123
},
"cpc": {
"today": 123,
"yesterday": 123,
"current_month": 123,
"last_month": 123
},
"epc": {
"today": 123,
"yesterday": 123,
"current_month": 123,
"last_month": 123
},
"rpc": {
"today": 123,
"yesterday": 123,
"current_month": 123,
"last_month": 123
},
"rpm": {
"today": 123,
"yesterday": 123,
"current_month": 123,
"last_month": 123
},
"cpm": {
"today": 123,
"yesterday": 123,
"current_month": 123,
"last_month": 123
},
"ctr": {
"today": 123,
"yesterday": 123,
"current_month": 123,
"last_month": 123
},
"total_conversion": {
"today": 123,
"yesterday": 123,
"current_month": 123,
"last_month": 123,
"trending_percentage": 123
},
"on_hold_potential_revenue": {
"today": 123,
"yesterday": 123,
"current_month": 123,
"last_month": 123,
"trending_percentage": 123
},
"on_hold_potential_payout": {
"today": 123,
"yesterday": 123,
"current_month": 123,
"last_month": 123,
"trending_percentage": 123
},
"on_hold_conversion_count": {
"today": 123,
"yesterday": 123,
"current_month": 123,
"last_month": 123,
"trending_percentage": 123
}
}Dashboard
Get Dashboard Summary
GET
/
networks
/
dashboard
/
summary
Get Dashboard Summary
curl --request GET \
--url https://api.eflow.team/v1/networks/dashboard/summary \
--header 'X-Eflow-Api-Key: <api-key>'import requests
url = "https://api.eflow.team/v1/networks/dashboard/summary"
headers = {"X-Eflow-Api-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-Eflow-Api-Key': '<api-key>'}};
fetch('https://api.eflow.team/v1/networks/dashboard/summary', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.eflow.team/v1/networks/dashboard/summary",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-Eflow-Api-Key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.eflow.team/v1/networks/dashboard/summary"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-Eflow-Api-Key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.eflow.team/v1/networks/dashboard/summary")
.header("X-Eflow-Api-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.eflow.team/v1/networks/dashboard/summary")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-Eflow-Api-Key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"revenue": {
"today": 123,
"yesterday": 123,
"current_month": 123,
"last_month": 123,
"trending_percentage": 123
},
"payout": {
"today": 123,
"yesterday": 123,
"current_month": 123,
"last_month": 123,
"trending_percentage": 123
},
"profit": {
"today": 123,
"yesterday": 123,
"current_month": 123,
"last_month": 123,
"trending_percentage": 123
},
"click": {
"today": 123,
"yesterday": 123,
"current_month": 123,
"last_month": 123,
"trending_percentage": 123
},
"conversion": {
"today": 123,
"yesterday": 123,
"current_month": 123,
"last_month": 123,
"trending_percentage": 123
},
"event": {
"today": 123,
"yesterday": 123,
"current_month": 123,
"last_month": 123,
"trending_percentage": 123
},
"gross_sales": {
"today": 123,
"yesterday": 123,
"current_month": 123,
"last_month": 123,
"trending_percentage": 123
},
"gross_click": {
"today": 123,
"yesterday": 123,
"current_month": 123,
"last_month": 123,
"trending_percentage": 123
},
"impression": {
"today": 123,
"yesterday": 123,
"current_month": 123,
"last_month": 123,
"trending_percentage": 123
},
"invalid_click": {
"today": 123,
"yesterday": 123,
"current_month": 123,
"last_month": 123,
"trending_percentage": 123
},
"duplicate_click": {
"today": 123,
"yesterday": 123,
"current_month": 123,
"last_month": 123,
"trending_percentage": 123
},
"unique_click": {
"today": 123,
"yesterday": 123,
"current_month": 123,
"last_month": 123,
"trending_percentage": 123
},
"view_through_conversion": {
"today": 123,
"yesterday": 123,
"current_month": 123,
"last_month": 123,
"trending_percentage": 123
},
"approved_conversion": {
"today": 123,
"yesterday": 123,
"current_month": 123,
"last_month": 123,
"trending_percentage": 123
},
"throttled_conversion": {
"today": 123,
"yesterday": 123,
"current_month": 123,
"last_month": 123,
"trending_percentage": 123
},
"margin": {
"today": 123,
"yesterday": 123,
"current_month": 123,
"last_month": 123
},
"cvr": {
"today": 123,
"yesterday": 123,
"current_month": 123,
"last_month": 123
},
"evr": {
"today": 123,
"yesterday": 123,
"current_month": 123,
"last_month": 123
},
"cpc": {
"today": 123,
"yesterday": 123,
"current_month": 123,
"last_month": 123
},
"epc": {
"today": 123,
"yesterday": 123,
"current_month": 123,
"last_month": 123
},
"rpc": {
"today": 123,
"yesterday": 123,
"current_month": 123,
"last_month": 123
},
"rpm": {
"today": 123,
"yesterday": 123,
"current_month": 123,
"last_month": 123
},
"cpm": {
"today": 123,
"yesterday": 123,
"current_month": 123,
"last_month": 123
},
"ctr": {
"today": 123,
"yesterday": 123,
"current_month": 123,
"last_month": 123
},
"total_conversion": {
"today": 123,
"yesterday": 123,
"current_month": 123,
"last_month": 123,
"trending_percentage": 123
},
"on_hold_potential_revenue": {
"today": 123,
"yesterday": 123,
"current_month": 123,
"last_month": 123,
"trending_percentage": 123
},
"on_hold_potential_payout": {
"today": 123,
"yesterday": 123,
"current_month": 123,
"last_month": 123,
"trending_percentage": 123
},
"on_hold_conversion_count": {
"today": 123,
"yesterday": 123,
"current_month": 123,
"last_month": 123,
"trending_percentage": 123
}
}Retrieve dashboard statistics with time-period comparisons (today vs yesterday, current month vs last month). Returns trending percentages for key metrics.
Authorizations
The Everflow API key generated from the Control Center > Security.
Response
200 - application/json
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Was this page helpful?
⌘I
