Retrieve aggregated metrics
This endpoint will allow you to retrieve time-based and countable metrics like average watch time or the number of impressions over a certain period of time.
The request body when you want to retrieve data will look like this:
{
"from": 1726001314,
"to": 1726201314,
"filter_by": {
"media_ids": ["media123", "media456"],
"media_type": "video",
"continents": ["EU", "NA"],
"countries": ["FR", "US"],
"device_types": ["computer", "phone"],
"os": ["windows", "android"],
"browsers": ["chrome", "firefox"],
"tags": ["tag1", "tag2"]
}
}
For example, this would be a simplified body for this request:
{
"from": 1726001314,
"to": 1726201314
}
Path parameters:
- metric:
Use this path parameter to select a metric that you want
analytics for. - play : The number of times your content
has been played. Aggregations: count ,rate ,total
-
start: The number of times playback was started. Aggregation: count
-
end: The number of times playback has ended with the content watched until the end. Aggregation: count
-
impression: The number of times your content has been loaded and was ready for playback. Aggregation: count
-
watch_time: The cumulative time in seconds that the user has spent watching your content. Aggregations: average ,sum
-
view: The number of times your content has been watched in playback. Aggregations: count
- aggregation:
Use this path parameter to define a way of collecting
data for the metric that you want analytics for.
-
count: returns the overall number of events for the play metric.
-
rate: returns the ratio that calculates the number of plays your content receives divided by its impressions. This aggregation can be used only with the play metric.
-
total: calculates the total number of events for the play metric.
-
average: calculates an average value for the selected metric.
-
sum: adds up the total value of the select metric.
Body parameters:
- from:
Use this query parameter to define the starting date time
in UNIX timestamp format of the period you want analytics for.
- to:
Use this query parameter to define the ending date time in
UNIX timestamp format of the period you want analytics for.
- media_ids:
Returns analytics based on the unique identifiers of
a video or a live stream.
- media_type:
Returns analytics based on the type of content. Possible
values: video ,live-stream.
- continents:
Returns analytics based on the viewers' continent. The list of supported continent names is based on the GeoNames public database. Possible values: AS ,AF ,NA ,SA ,AN ,EU ,AZ.
- device_types:
Returns analytics based on the type of device used
by the viewers. Response values can include: computer ,phone ,tablet ,tv ,console ,wearable ,unknown.
- os:
Returns analytics based on the operating system used by the
viewers. Response values can include:windows ,mac osx ,android ,ios ,linux.
- os:
Returns analytics based on the operating system used by the viewers. Response values can include:windows ,mac osx ,android ,ios ,linux.
- browsers:
Returns analytics based on the browser used by the viewers. Response values can include: chrome ,firefox ,edge ,opera.
- tags:
Returns analytics for videos using this tag.
Parameters
Headers
Body
Response
curl --location 'https://api.aiozstream.network/api/analytics/metrics/data/start/count' \
--header 'accept: application/json' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer <YOUR_JWT_TOKEN>' \
--data '{
"from": 1726001314,
"to": 1726201314
}'
Retrieve metrics in a breakdown of dimensions
This endpoint will allow you to retrieve countable metrics like the number of plays or impressions, grouped by the time at which they occurred.
The request body when you want to retrieve data will look like this:
{
"from": 1726001314,
"to": 1726201314,
"sort_by": "metric_value",
"filter_by": {
"media_ids": ["media123", "media456"],
"media_type": "video",
"continents": ["EU", "NA"],
"countries": ["FR", "US"],
"device_types": ["computer", "phone"],
"os": ["windows", "android"],
"browsers": ["chrome", "firefox"],
"tags": ["tag1", "tag2"]
}
}
For example, this would be a simplified body for this request:
{
"from": 1726001314,
"to": 1726201314
}
Path parameters:
- metric:
Use this path parameter to select a metric that you want analytics for.
-
play : The number of times your content has been played.
-
play_rate : The ratio that calculates the number of plays your content receives divided by its impressions.
-
start: The number of times playback was started.
-
end: The number of times playback has ended with the content watched until the end.
-
impression: The number of times your content has been loaded and was ready for playback.
-
watch_time: The cumulative time in seconds that the user has spent watching your content.
-
retension: The total amount of time a user has continuously engaged with your content.
-
view: The number of times your content has been watched in playback.
- breakdown:
Use this path parameter to define a dimension for segmenting analytics data. You must
use kebab-case for path parameters.
-
media-id: Returns analytics based on the unique identifiers of a video or a live stream.
-
media-type: Returns analytics based on the type of content. Possible values: video ,live-stream.
-
continent: Returns analytics based on the viewers' continent. The list of supported continents names are based on the GeoNames public database. Possible values are: AS ,AF ,NA ,SA ,AN ,EU ,AZ.
-
country: Returns analytics based on the viewers' country. The list of supported country names are based on the GeoNames public database.
-
device-type: Returns analytics based on the type of device used by the viewers. Response values can include: computer ,phone ,tablet ,tv ,console ,wearable ,unknown.
-
operator-system: Returns analytics based on the operating system used by the viewers. Response values can include windows ,mac osx ,android ,ios ,linux.
-
browser: Returns analytics based on the browser used by the viewers. Response values can include chrome ,firefox ,edge ,opera.
Body parameters:
- from:
Use this query parameter to define the starting date time in UNIX timestamp format of the period you want analytics for.
- to:
Use this query parameter to define the ending date time in UNIX timestamp format of the period you want analytics for.
- limit:
Use this query parameter to define the maximum number of records to retrieve for the specified analytics period.
- offset:
Use this query parameter to specify the starting position (number of records to skip) for the analytics query.
- media_ids:
Returns analytics based on the unique identifiers of a video or a live stream.
- media_type:
Returns analytics based on the type of content. Possible values: video ,live-stream.
- sort_by:
Use this parameter to choose which field the API will use to sort the analytics data. These are the available fields to sort by: metric_value ,dimension_value.
- order_by:
Use this parameter to choose how the API orders the analytics data. These are the available fields to sort by: asc ,desc.
- continents:
Returns analytics based on the viewers' continent. The list of supported continent names is based on the GeoNames public database. Possible values: AS ,AF ,NA ,SA ,AN ,EU ,AZ.
- countries:
Returns analytics based on the viewers' country. The list of supported country names is based on the GeoNames public database.
- device_types:
Returns analytics based on the type of device used by the viewers. Response values can include: computer ,phone ,tablet ,tv ,console ,wearable ,unknown.
- os:
Returns analytics based on the operating system used by the viewers. Response values can include:windows ,mac osx ,android ,ios ,linux.
- browsers:
Returns analytics based on the browser used by the viewers. Response values can include: chrome ,firefox ,edge ,opera.
- tags:
Returns analytics for videos using this tag.
Parameters
Headers
Body
Response
curl --location 'https://api.aiozstream.network/api/analytics/metrics/bucket/impression/media_id' \
--header 'accept: application/json' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer <YOUR_JWT_TOKEN>' \
--data '{
"from": 1726001314,
"to": 1726201314
}'
Retrieve metrics over time
This endpoint will allow you to retrieve countable metrics like the number of plays or impressions, grouped by the time at which they occurred
The request body when you want to retrieve data will look like this:
{
"from": 1726001314,
"to": 1726201314,
"sort_by": "metric",
"filter_by": {
"media_ids": ["media123", "media456"],
"media_type": "video",
"continents": ["EU", "NA"],
"countries": ["FR", "US"],
"device_types": ["computer", "phone"],
"os": ["windows", "android"],
"browsers": ["chrome", "firefox"],
"tags": ["tag1", "tag2"]
}
}
For example, this would be a simplified body for this request:
{
"from": 1726001314,
"to": 1726201314,
"sort_by": "metric"
}
Path parameters:
- metric:
Use this path parameter to select a metric that you want
analytics for. - play : The number of times your content
has been played.
-
play_rate : The ratio that calculates the number of plays your content receives divided by its impressions.
-
start: The number of times playback was started.
-
end: The number of times playback has ended with the content watched until the end.
-
impression: The number of times your content has been loaded and was ready for playback.
-
retension: The total amount of time a user has continuously engaged with your content.
-
watch_time: The cumulative time in seconds that the user has spent watching your content.
-
-
view: The number of times your content has been watched in playback.
Body parameters:
- from:
Use this query parameter to define the starting date time
in UNIX timestamp format of the period you want analytics for.
- to:
Use this query parameter to define the ending date time in
UNIX timestamp format of the period you want analytics for.
- limit:
Use this query parameter to define the maximum number of records to retrieve for the specified analytics period.
- offset:
Use this query parameter to specify the starting position (number of records to skip) for the analytics query.
- interval:
Use this query parameter to define how granularity of the data. Possible values: hour ,day.
- media_ids:
Returns analytics based on the unique identifiers of
a video or a live stream.
- media_type:
Returns analytics based on the type of content. Possible
values: video ,live-stream.
- sort_by:
Use this parameter to choose which field the API will
use to sort the analytics data. These are the available fields to sort by: metric_value ,dimension_value.
- order_by:
Use this parameter to choose how the API orders the
analytics data. These are the available fields to sort by: asc ,desc.
- continents:
Returns analytics based on the viewers' continent.
The list of supported continent names is based on the GeoNames public database. Possible
values: AS ,AF ,NA ,SA ,AN ,EU ,AZ.
- countries:
Returns analytics based on the viewers' country. The
list of supported country names is based on the GeoNames public database.
- device_types:
Returns analytics based on the type of device used
by the viewers. Response values can include: computer ,phone ,tablet ,tv ,console ,wearable ,unknown.
- os:
Returns analytics based on the operating system used by the
viewers. Response values can include:windows ,mac osx ,android ,ios ,linux.
- browsers:
Returns analytics based on the browser used by the viewers.
Response values can include: chrome ,firefox ,edge ,opera.
- tags:
Returns analytics for videos using this tag.
Parameters
Headers
Body
Response
curl --location 'https://api.aiozstream.network/api/analytics/metrics/timeseries/impression/day' \
--header 'accept: application/json' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer <YOUR_JWT_TOKEN>' \
--data '{
"from": 1726001314,
"to": 1726201314,
}'