Analytics Data
curl -X POST "https://api.5centscdn.com/v2/players/5centscdn/analytics/data" \
-H "Content-Type: application/json" \
-H "X-API-Key: YOUR_API_KEY" \
-d '{
"r": "2026-01-01 00:00:00 - 2026-01-31 23:59:59",
"type": "play",
"data_type": "country"
}'
import requests
import json
url = "https://api.5centscdn.com/v2/players/5centscdn/analytics/data"
headers = {
"Content-Type": "application/json",
"X-API-Key": "YOUR_API_KEY"
}
data = {
"r": "2026-01-01 00:00:00 - 2026-01-31 23:59:59",
"type": "play",
"data_type": "country"
}
response = requests.post(url, headers=headers, json=data)
print(response.json())
const response = await fetch("https://api.5centscdn.com/v2/players/5centscdn/analytics/data", {
method: "POST",
headers: {
"Content-Type": "application/json",
"X-API-Key": "YOUR_API_KEY"
},
body: JSON.stringify({
"r": "2026-01-01 00:00:00 - 2026-01-31 23:59:59",
"type": "play",
"data_type": "country"
})
});
const data = await response.json();
console.log(data);
package main
import (
"fmt"
"net/http"
"bytes"
"encoding/json"
)
func main() {
data := []byte(`{
"r": "2026-01-01 00:00:00 - 2026-01-31 23:59:59",
"type": "play",
"data_type": "country"
}`)
req, err := http.NewRequest("POST", "https://api.5centscdn.com/v2/players/5centscdn/analytics/data", bytes.NewBuffer(data))
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/players/5centscdn/analytics/data')
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = true
request = Net::HTTP::Post.new(uri)
request['Content-Type'] = 'application/json'
request['X-API-Key'] = 'YOUR_API_KEY'
request.body = '{
"r": "2026-01-01 00:00:00 - 2026-01-31 23:59:59",
"type": "play",
"data_type": "country"
}'
response = http.request(request)
puts response.body
[
{
"data": "India",
"count": 15
},
{
"data": "Chrome",
"count": 10
},
{
"data": "Windows",
"count": 6
},
{
"data": "sample-video.mp4",
"count": 5
}
]
/players/5centscdn/analytics/data
Target server for requests. Edit to use your own host.
API key (sent in header)
The media type of the request body
Date range string in UTC format: "YYYY-MM-DD HH:mm:ss - YYYY-MM-DD HH:mm:ss". Defines the reporting window.
Event type to aggregate. One of: play (view started), unique (unique viewer), impression (player visible).
Dimension to break down the data by. One of: country, browser, os, device, title.
Request Preview
Response
Response will appear here after sending the request
Authentication
API Key for authentication. Provide your API key in the header.
Body
Date range string in UTC format: "YYYY-MM-DD HH:mm:ss - YYYY-MM-DD HH:mm:ss". Defines the reporting window.
2026-01-01 00:00:00 - 2026-01-31 23:59:59Event type to aggregate. One of: play (view started), unique (unique viewer), impression (player visible).
playuniqueimpressionDimension to break down the data by. One of: country, browser, os, device, title.
countrybrowserosdevicetitleResponses
Dimension value label such as a country name, browser name, OS name, device type, or title identifier.
Number of events recorded for this dimension value within the requested date range.