Search Channels returning only 500 results

I’m using the Helix search channel endpoint with the following params:

url=‘https://api.twitch.tv/helix/search/channels
params = { “query”: “fortnite”, “first”:“100” }

Then I have a loop to run through the pagination.

if (‘cursor’ in response[‘pagination’]):
while (‘cursor’ in response[‘pagination’]):

It works well with other endpoints like the streams endpoint.
However the search channel always return a maximum of 500 results (5 pages).
I don’t find any reference to such limit in the doc, any idea?

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