v32

latestOpenAPI 3.1.0raw.githubusercontent.com2026-05-151,1412,2144.5 MB
Streaming Statistics

Get unique viewers in built-in player

Get the number of unique viewers in the built-in player.

Counts the number of unique IPs.

Allows flexible grouping and filtering. The fields in the response depend on the selected grouping.

Note. This method operates only on data collected by the built-in HTML player. It will not show statistics if you are using another player or viewing in native OS players through direct .m3u8/.mpd/.mp4 links. For such cases, use calculations through CDN (look at method /statistics/cdn/uniqs) or statistics of the players you have chosen.

get/streaming/statistics/uniqs

Query parameters

date_fromstring required

Start of time frame. Datetime in ISO 8601 format.

date_tostring required

End of time frame. Datetime in ISO 8601 format.

type'live' | 'vod' | 'playlist'

filter by entity's type

idstring

filter by entity's id

event'init' | 'start' | 'watch'

filter by event's name

hoststring

filter by host

countrystring

filter by country

groupstring[]

group=1,2,4 OR group=1&group=2&group=3

Response

OK

Example response

{
  "data": [
    {
      "unique_ips": 100,
      "date": "2022-10-15",
      "type": "vod"
    },
    {
      "unique_ips": 300,
      "date": "2022-10-15",
      "type": "live"
    }
  ]
}