Get Videos "first" parameter

Making a request for a user’s videos, wanting to get only the most recent one…

GET ‘https://api.twitch.tv/helix/videos?user_id=35780889
GET ‘https://api.twitch.tv/helix/videos?user_id=35780889?first=1

both return practically identical JSON’s containing 20 videos.

am I missing something?
does “first” bottom out at 20?

Multiple query string parameters are seperted with & not many ?

The correct is:

GET ‘https://api.twitch.tv/helix/videos?user_id=35780889&first=1’

Awesome, thanks for the fast reply!

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