Language and offset

Hi guys,

A small question for you, I want use an URL to list all channels in French on Twitch.

I found on the discussion that I can use https://api.twitch.tv/kraken/streams?language=fr for the language but it’s limited to the first 15 channels or something like that.
I found an other API to setup a number of result : https://api.twitch.tv/kraken/streams/featured?limit=3000&offset=0 .

My question is, can I merge these two URLs in a unique URL ?

An other question is to know if there is a limit of the offset ?

Thank you in advance for your help.

Regards

GET /streams supports all 3: language, limit and offset. You can start with https://api.twitch.tv/kraken/streams?language=fr&limit=100&offset=0 (100 is the max limit for streams) and then follow _links.next until you have all of them.

1 Like

thank you for your help, exactly what I need.

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