Breakdown Reporting

The following routes provide fast serving data for immediate data visualization
This data will not accept any query parameters, and will be updated daily

GET /stats/[ID]/domains/breakdown

Get top 10 domains served to, along with their relative percentage and stats

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// Example Response
{
"id": [ID],
"last_updated": [UNIX Timestamp],
"breakdown": [
{
"name": [TLD],
"imps": 0,
"clicks": 0,
"actions": 0,
"ctr": 0,
"percentage": [For ease of use in charting]
},
{
"name": [TLD],
"imps": 0,
"clicks": 0,
"actions": 0,
"ctr": 0,
"percentage": [For ease of use in charting]
},
]
}

GET /stats/[ID]/apps/breakdown

Get top 10 apps served to, along with their relative percentage and stats

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// Example Response
{
"id": [ID],
"last_updated": [UNIX Timestamp],
"breakdown": [
{
"name": [APP NAME],
"imps": 0,
"clicks": 0,
"actions": 0,
"ctr": 0,
"percentage": [For ease of use in charting]
},
{
"name": [APP NAME],
"imps": 0,
"clicks": 0,
"actions": 0,
"ctr": 0,
"percentage": [For ease of use in charting]
},
]
}

GET /stats/[ID]/os/breakdown

Get stats of each of the OS served to at a high level

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// Example Response
{
"id": [ID],
"last_updated": [UNIX Timestamp],
"breakdown": [
{
"name": [OS NAME],
"imps": 0,
"clicks": 0,
"actions": 0,
"ctr": 0,
"percentage": [For ease of use in charting]
},
{
"name": [OS NAME],
"imps": 0,
"clicks": 0,
"actions": 0,
"ctr": 0,
"percentage": [For ease of use in charting]
},
]
}

GET /stats/[ID]/banners/breakdown

Get basic stats on top 10 banners, including its relative percentage of amount served

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// Example Response
{
"id": [ID],
"last_updated": [UNIX Timestamp],
"breakdown": [
{
"name": [Banner Name],
"imps": 0,
"clicks": 0,
"actions": 0,
"ctr": 0,
"percentage": [For ease of use in charting]
},
{
"name": [Banner Name],
"imps": 0,
"clicks": 0,
"actions": 0,
"ctr": 0,
"percentage": [For ease of use in charting]
},
]
}

GET /stats/[ID]/actions/breakdown

Get basic stats on actions to show the user funnel

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// Example Response
{
"id": [ID],
"last_updated": [UNIX Timestamp],
"breakdown": [
{
"name": [Action Name],
"hierarchy": [The lower the number, the earlier in the pipeline]
"imps": 0,
"clicks": 0,
"actions": 0,
"ctr": 0,
},
{
"name": [Action Name],
"hierarchy": [The lower the number, the earlier in the pipeline]
"imps": 0,
"clicks": 0,
"actions": 0,
"ctr": 0,
}
]
}