I was reading api and found that people can somehow grab chat messages, but didn’t see any code example or api call example.
I want to create dashboard for streams just for myself (like twitchalerts, but combined with my other things to stream).
This is what i’ve tried:
This link chat doesn’t provide chat messages 
Twitch.init({clientId: ‘xxx’}, function(error, status) {
Twitch.api({method: ‘/channels/pioncz’, verb: ‘GET’ }, function(error, response) {
console.log(response._links.chat);
} });
I saw Twitch.events.addListener but i couldn’t find any list of events that i could attach to.