Video Engagement Data
Our Video REST APIs give you access to data that makes up the Chartbeat Video Dashboard. Make an HTTP GET request to the endpoints below to return data encoded in JSON.
Top Video
Query Parameters
Name
Type
Description
{
data: {
items: [
{
path: "video_content_id_12345", //The path that is being passed to Chartbeat to identify the video.
stats: {
visitors: 3063, //The number of people who have loaded the video.
watching: 2736 //The number of people who have loaded this video and are watching now
},
thumbnail: "https://www.mysite.com/thumbnail-11.jpg", //The URL being passed to Chartbeat for the thumbnail image.
title: "My Great Video!" //The video title.
},
{
path: "video_content_id_09876",
stats: {
visitors: 1695,
watching: 1523
},
thumbnail: "https://www.mysite.com/thumbnail-22.jpg",
title: "Must Watch: The President Said What?!"
},
{
path: "video_content_id_45678",
stats: {
visitors: 1588,
watching: 1412
},
thumbnail: "https://www.mysite.com/thumbnail-33.jpg",
title: "Our Top 10 Favorite Seinfeld Episodes"
},
{...} Video Metrics
Query Parameters
Name
Type
Description
Last updated
Was this helpful?