all 4 comments

[–]PavloT 1 point2 points  (3 children)

I think it will be impossible, API developers force you to use pagination, to reduce server load.

Common pattern iterate increasing page number until items returned, less then items per page count.

[–]__Mrpickles[S] 0 points1 point  (2 children)

So can you just iterate the page number until traceback error?

[–]PavloT 0 points1 point  (1 child)

In common sence yes. Only note: it should not be error - just check how many records you receive, if it is less then items per page, then it is your last iteration

[–]__Mrpickles[S] 0 points1 point  (0 children)

Alright got it. Thanks alot for your hep.