Json result without paging

Is it possible to get json results without paging?

Making multiple requests, looping through the results to get the next page’s url and then concatenating the results for parsing doesn’t sound like an optimized solution.

It really is the best solution for both the server and the client and is a common behavior when parsing data returned from REST apis.

From the server side it allows us to not completely obliterate the database trying to assemble and return massive result sets. It also guarantees that we can return results within 10s of milliseconds which improves overall performance of the server.