Ad Manager Stats
Service-wide project, advertiser, campaign, and creative counters plus the shared billing tenant's monthly hits, hourly throughput, and usage-this-month allowances. Backs the projects landing page stat tiles.
curl -X GET "https://api.5centscdn.com/v2/ad-manager/stats" \
-H "Content-Type: application/json" \
-H "X-API-Key: YOUR_API_KEY"
import requests
import json
url = "https://api.5centscdn.com/v2/ad-manager/stats"
headers = {
"Content-Type": "application/json",
"X-API-Key": "YOUR_API_KEY"
}
response = requests.get(url, headers=headers)
print(response.json())
const response = await fetch("https://api.5centscdn.com/v2/ad-manager/stats", {
method: "GET",
headers: {
"Content-Type": "application/json",
"X-API-Key": "YOUR_API_KEY"
}
});
const data = await response.json();
console.log(data);
package main
import (
"fmt"
"net/http"
)
func main() {
req, err := http.NewRequest("GET", "https://api.5centscdn.com/v2/ad-manager/stats", nil)
if err != nil {
panic(err)
}
req.Header.Set("Content-Type", "application/json")
req.Header.Set("X-API-Key", "YOUR_API_KEY")
client := &http.Client{}
resp, err := client.Do(req)
if err != nil {
panic(err)
}
defer resp.Body.Close()
fmt.Println("Response Status:", resp.Status)
}
require 'net/http'
require 'json'
uri = URI('https://api.5centscdn.com/v2/ad-manager/stats')
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = true
request = Net::HTTP::Get.new(uri)
request['Content-Type'] = 'application/json'
request['X-API-Key'] = 'YOUR_API_KEY'
response = http.request(request)
puts response.body
{
"result": "success",
"projects": {
"count": 3,
"limit": 10,
"percent": 30
},
"advertisers": {
"total": 128
},
"campaigns": {
"total": 128
},
"creatives": {
"total": 128
},
"monthly_hits": {
"limit": 1000000,
"limit_formatted": "1M",
"used_percent": 42.5
},
"hourly_throughput": {
"current": 3200,
"current_formatted": "3.2k",
"limit": 10000,
"limit_formatted": "10k",
"percent": 32
},
"usage_this_month": {
"ad_requests": 128430,
"ad_requests_formatted": 0,
"impressions": 96210,
"impressions_formatted": 0,
"avg_fill_rate": 87.4,
"avg_fill_rate_formatted": "87.4%",
"avg_completion_rate": 71.2,
"avg_completion_rate_formatted": "71.2%"
},
"generated_at": "2026-09-21T07:41:31+00:00"
}
GET
/ad-manager/stats
GET
Base URLstring
Target server for requests. Edit to use your own host.
API Key (header: X-API-Key)
X-API-Keystring
RequiredAPI key (sent in header)
Request Preview
Response
Response will appear here after sending the request
Authentication
header
X-API-Keystring
RequiredAPI Key for authentication. Provide your API key in the header.
Responses
resultstring
Operation outcome.
Allowed values:
successerrorprojectsobject
A count measured against a plan limit, with a pre-computed percentage.
advertisersobject
campaignsobject
creativesobject
monthly_hitsobject
hourly_throughputobject
usage_this_monthobject
generated_atstring
Was this page helpful?