I'm working with an API atm whose pagination is se...
# random
f
I'm working with an API atm whose pagination is seriously broken. One of the endpoints I'm calling with &page=NUM&limit=50. Page=1 returns 50 items, 2 returns 100, 3 returns 50 and 4 returns 20. If I put &page=1&limit=10 it doesn't return anything on the first page. On another endpoint if I use &page=1&limit=10 I get items from somewhere halfway in the list and at &page=2&limit=10 it starts returning the right items (or well, the first 20 items)...
2