New Twitch API not filtering results correctly for game_id and language

I want to return streams that are in English and for Fortnite.
https://api.twitch.tv/helix/streams?language=en&game_id=33214

It’s missing some results such as for Symfuhny. He is currently streaming Fortnite and his stream is tagged as English but it’s not appearing in the results.

certain API’s on helix prefer the parameters (it’s a undocumented gotcha) to be in the order they are shown in the docs which also matches alphabetic

https://api.twitch.tv/helix/streams?game_id=33214&language=en

works where

https://api.twitch.tv/helix/streams?language=en&game_id=33214

does not

Thank you! That seems to be working now.

I have to say of all the API’s I’ve worked with this “new” Twitch API has a ton of quirks. V3 was rock solid.

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.