📊Single stream stats
The first call for stream's metrics costs 1 or 2 credits, depending on the set of metrics (see the difference below). All further requests to streams of specific channel within the next 30 days will cost 0.2 and 0.4 credits accordingly. On day 31, it will cost another credit or two again for the first API call.
Available data sets of metrics
Standard set of metrics
Available platforms
One request will provide you with data for one specific channel only. Since the channel can broadcast on different platforms with the same name, use the filter by platform: platform={name}
. Supported values:
twitch; youtube; kick; rumble; trovo; nimo; bigo; nonolive; afreecatv; mildom; chzzk; soop; steam
How to access the standard set of metrics for single stream stats
You will need a Client ID and a token to use Streams Charts API. Your Client ID is bound to your account and can never be changed, but you can change your access token anytime for security reasons.
Use the example request below to see how it works with a standard set of metrics for a single stream of a specific channel.
curl -X GET https://streamscharts.com/api/jazz/channels/shroud/streams/41976921163?platform=twitch \
-H 'Client-ID: XXXXXXXXXXXX' \
-H 'Token: YYYYYYYYYYYYYY'
Use your Client ID and token instead of "XXXXXXXXXXXX" and "YYYYYYYYYYYYYY", which you can find here.
The response you would get would be a JSON response that contains something like a sample response:
{
"data":{
"platform": "twitch",
"channel_name": "shroud",
"channel_display_name": "shroud",
"channel_id": "37402112",
"avatar_url": "https://static-cdn.jtvnw.net/jtv_user_pictures/7ed5e0c6-0191-4eef-8328-4af6e4ea5318-profile_image-300x300.png",
"stream_id": "41976921163",
"stream_status": "making my sorc NOW also check out !announcement",
"stream_start": "2023-03-18 19:05:30",
"stream_end": "2023-03-19 03:35:00",
"stream_language": "en",
"hours_watched": 115906,
"airtime_in_m": 515,
"peak_viewers": 17819,
"average_viewers": 13504,
"followers_gain": 676,
"top_game_by_hw": "Diablo IV",
"top_game_by_hw_%": 81.7
}
}
Excluding
NimoTV, Bigo LIVE, Nonolive, AfreecaTV, CHZZK, SOOP, SteamTV:
followers_gain
Rumble:
followers_gain; top_game_by_hw, top_game_by_hw_%
Supported time periods
If needed, you can select a stream time to get statistics only for a specific part of the stream (e.g., for a particular broadcast hours or even minutes). To do this, use the parameter time={value}
in the format YYYY-MM-DD HH:MM,YYYY-MM-DD HH:MM
Request example
curl -X GET https://streamscharts.com/api/jazz/channels/caedrel/streams/43526722936?platform=twitch&time=2025-01-07 10:00,2025-01-07 13:00 \
-H 'Client-ID: XXXXXXXXXXXX' \
-H 'Token: YYYYYYYYYYYYYY'
Extra set of metrics
By extra metrics, we mean that in return for the standard set of metrics, you will also get the following ones:
...
"extra_metrics":{
"live_views": 464087,
"unique_viewers": 176871,
"unique_auth_viewers": 147068,
"peak_auth_viewers": 13674,
"auth_viewers_average_view_duration_in_m": 43,
"authorized_to_all_viewers_ratio_%": 83,
"viewers_from_last_stream_%": 69.4,
"returned_viewers_%": 35.3,
"estimated_audience": 166405,
"estimated_audience_average_view_duration_in_m": 42
}
...
Available platforms
One request will provide you with data for one stream of a specific channel only. Since an extra set of metrics is available only for Twitch channels, use the filter platform=twitch
to get it.
How to access the extra set of metrics for single channel stats
You will need a Client ID and a token to use Streams Charts API. Your Client ID is bound to your account and can never be changed, but you can change your access token anytime for security reasons.
To get an extra set of metrics by one stream of a specific channel, use the next route: /api/jazz/channels/{name}/streams-extra/{stream-id}?platform=twitch
To see how it works with an extra set of metrics for a single stream of a specific channel, use the example request below.
curl -X GET https://streamscharts.com/api/jazz/channels/shroud/streams-extra/41976921163?platform=twitch \
-H 'Client-ID: XXXXXXXXXXXX' \
-H 'Token: YYYYYYYYYYYYYY'
Use your Client ID and token instead of "XXXXXXXXXXXX" and "YYYYYYYYYYYYYY", which you can find here.
The response you would get would be a JSON response that contains something like a sample response:
{
"data":{
"platform": "twitch",
"channel_name": "shroud",
"channel_display_name": "shroud",
"channel_id": "37402112",
"avatar_url": "https://static-cdn.jtvnw.net/jtv_user_pictures/7ed5e0c6-0191-4eef-8328-4af6e4ea5318-profile_image-300x300.png",
"stream_id": "41976921163",
"stream_status": "making my sorc NOW also check out !announcement",
"stream_start": "2023-03-18 19:05:30",
"stream_end": "2023-03-19 03:35:00",
"stream_language": "en",
"hours_watched": 115906,
"airtime_in_m": 515,
"peak_viewers": 17819,
"average_viewers": 13504,
"followers_gain": 676,
"top_game_by_hw": "Diablo IV",
"top_game_by_hw_%": 81.7,
"extra_metrics":{
"live_views": 464087,
"unique_viewers": 176871,
"unique_auth_viewers": 147068,
"peak_auth_viewers": 13674,
"auth_viewers_average_view_duration_in_m": 43,
"authorized_to_all_viewers_ratio_%": 83,
"viewers_from_last_stream_%": 69.4,
"returned_viewers_%": 35.3,
"estimated_audience": 166405,
"estimated_audience_average_view_duration_in_m": 42
}
}
}
Supported time periods
If needed, you can select a stream time to get statistics only for a specific part of the stream (e.g., for a particular broadcast hours or even minutes). To do this, use the parameter time={value}
in the format YYYY-MM-DD HH:MM,YYYY-MM-DD HH:MM
Request example
curl -X GET https://streamscharts.com/api/jazz/channels/caedrel/streams-extra/43526722936?platform=twitch&time=2025-01-07 10:00,2025-01-07 13:00 \
-H 'Client-ID: XXXXXXXXXXXX' \
-H 'Token: YYYYYYYYYYYYYY'
Paid subscribers set of metrics
Available platforms
One request will provide you with data for one stream of a specific channel only. Since a paid subscribers set of metrics is available only for Twitch channels, use the filter platform=twitch
to get it.
How to access the extra set of metrics for single channel stats
You will need a Client ID and a token to use Streams Charts API. Your Client ID is bound to your account and can never be changed, but you can change your access token anytime for security reasons.
To get a paid subscribers set of metrics by one stream of a specific channel, use the following route: /api/jazz/channels/{name}/streams-extra/{stream-id}/subs?platform=twitch
To see how it works with paid subscribers' set of metrics for a single stream of a specific channel, use the example request below.
curl -X GET https://streamscharts.com/api/jazz/channels/shroud/streams-extra/41976921163/subs?platform=twitch \
-H 'Client-ID: XXXXXXXXXXXX' \
-H 'Token: YYYYYYYYYYYYYY'
Use your Client ID and token instead of "XXXXXXXXXXXX" and "YYYYYYYYYYYYYY", which you can find here.
The response you would get would be a JSON response that contains something like a sample response:
{
"data":{
"platform": "twitch",
"channel_name": "shroud",
"channel_display_name": "shroud",
"channel_id": "37402112",
"avatar_url": "https://static-cdn.jtvnw.net/jtv_user_pictures/7ed5e0c6-0191-4eef-8328-4af6e4ea5318-profile_image-300x300.png",
"stream_id": "41976921163",
"stream_status": "making my sorc NOW also check out !announcement",
"stream_start": "2023-03-18 19:05:30",
"stream_end": "2023-03-19 03:35:00",
"stream_language": "en",
"total_subs": 78,
"min_income_from_subs_in_$": 147,
"max_income_from_subs_in_$": 210,
"new_subs": 34,
"re_subs": 39,
"paid_subs": 73,
"gifted_subs": 5,
"prime_subs": 48,
"tier_1_subs": 29,
"tier_2_subs": 0,
"tier_3_subs": 1
}
}
Supported time periods
If needed, you can select a stream time to get statistics only for a specific part of the stream (e.g., for a particular broadcast hours or even minutes). To do this, use the parameter time={value}
in the format YYYY-MM-DD HH:MM,YYYY-MM-DD HH:MM
Request example
curl -X GET https://streamscharts.com/api/jazz/channels/caedrel/streams-extra/43526722936/subs?platform=twitch&time=2025-01-07 10:00,2025-01-07 13:00 \
-H 'Client-ID: XXXXXXXXXXXX' \
-H 'Token: YYYYYYYYYYYYYY'
Chat analytics set of metrics
Available platforms
One request will provide you with data for one stream of a specific channel only. Since a chat analytics set of metrics is available only for Twitch channels, use the filter platform=twitch
to get it.
How to access the extra set of metrics for single channel stats
You will need a Client ID and a token to use Streams Charts API. Your Client ID is bound to your account and can never be changed, but you can change your access token anytime for security reasons.
To get a chat analytics set of metrics by one stream of a specific channel, use the following route: /api/jazz/channels/{name}/streams-extra/{stream-id}/chat?platform=twitch
To see how it works with a chat analytics set of metrics for a single stream of a specific channel, use the example request below.
curl -X GET https://streamscharts.com/api/jazz/channels/shroud/streams-extra/41976921163/chat?platform=twitch \
-H 'Client-ID: XXXXXXXXXXXX' \
-H 'Token: YYYYYYYYYYYYYY'
Use your Client ID and token instead of "XXXXXXXXXXXX" and "YYYYYYYYYYYYYY", which you can find here.
The response you would get would be a JSON response that contains something like a sample response:
{
"data":{
"platform": "twitch",
"channel_name": "shroud",
"channel_display_name": "shroud",
"channel_id": "37402112",
"avatar_url": "https://static-cdn.jtvnw.net/jtv_user_pictures/7ed5e0c6-0191-4eef-8328-4af6e4ea5318-profile_image-300x300.png",
"stream_id": "41976921163",
"stream_status": "making my sorc NOW also check out !announcement",
"stream_start": "2023-03-18 19:05:30",
"stream_end": "2023-03-19 03:35:00",
"stream_language": "en",
"total_messages": 9728,
"total_words_count": 64447,
"active_chatters": 3579,
"passive_chatters": 143478,
"messages_per_chatter": 2.7,
"chat_engagement_rate_%": 2.4337501785,
"chatters_with_1_message": 2198,
"chatters_with_2+_message": 1381,
"cheer_messages": 1,
"cheer_chatters": 1,
"total_bits": 1000,
"income_from_bits_in_$": 10,
"bits_per_cheered_message": 1000,
"bits_per_cheered_chatter": 1000
}
}
Supported time periods
If needed, you can select a stream time to get statistics only for a specific part of the stream (e.g., for a particular broadcast hours or even minutes). To do this, use the parameter time={value}
in the format YYYY-MM-DD HH:MM,YYYY-MM-DD HH:MM
Request example
curl -X GET https://streamscharts.com/api/jazz/channels/caedrel/streams-extra/43526722936/chat?platform=twitch&time=2025-01-07 10:00,2025-01-07 13:00 \
-H 'Client-ID: XXXXXXXXXXXX' \
-H 'Token: YYYYYYYYYYYYYY'
Last updated