how to get the top streamed games by a specific user with the following information like below:
Average viewers
Max viewers
Followers
Total airtime
Dist
September 28, 2020, 2:59pm
2
As I already told you in your other thread User data details api
No endpoint gives all that data.
To know follower count you’d need to use https://dev.twitch.tv/docs/api/reference#get-users-follows
For view count you’d need to use Reference | Twitch Developers
And for the others you’d use the Get Streams endpoint Reference | Twitch Developers
All of those endpoints will show the current point in time, there is no historic data that is available through the API so you would need to periodically poll those endpoints yourself and store the data. So if you want 3 months of data you’ll need to start collecting the data now and in 3 months you’ll have 3 months of data.
Please stop spamming threads with this same question. You have 3 threads, and I’ve already pointed you to the relevant documentation and specific API endpoints you need to use.