So in the Kraken api, I would make a small thumbnail on my site with a background image taken from the “preview” in the streams response. I would then grab the “name” “logo” and “url” from the channel response and create a name plate in front of the previously grabbed preview image. All the data was within one object.
the request looked like this :
https://api.twitch.tv/kraken/streams?channel=snow_iwnl
However, in the Helix api, “channels” are now “users”. I’ve tried concatenating them on one request with no luck.
Ideally I want the request to look like this:
https://api.twitch.tv/helix/streams/users?login=fissure_ow
Essentially from what I’ve found so far is that I now need to make 2 requests to get the information Kraken gave me in one. Is it possible to join these two parameters so that I get all the information I need in on request?