Enable to get more then 1000 videos from steam api

Type

Video

What is the issue you’re encountering

I am trying to use the /stream endpoint from the API to list all my videos but I can only get the first 1000 videos. I have 2000 videos , how can i get remaining 1000 videos ?

What steps have you taken to resolve the issue?

I did not get cursor pointer in api responds, as describe in documentation.

What specific call are you making?

This method should return all videos.

Dear cscharff,

Thank you for your response.

When you say the method should return all videos, do you mean that I will receive all 2000+ videos in a single API call? I would like to clarify this as it would greatly impact my implementation.

Best regards,
Nitin

cscharff’s link to Get Stream Videos is the correct way to get a list of videos. For performance reasons, this endpoint is paginated. Look for the optional properties to pull multiple pages. Frequently, using start/end to pull by ranges of video creation date is the way to go. If you add the include_counts argument, you can get a total count to help you track through pages.

No the request returns up to 1000 videos. There’s a couple of code samples linked there (typescript for example) which do the pagination.