Page size / multiple pages links

I have read that the page size is 15 objects. I am trying to test my multipage response processing, but I get as many as 28 objects back in a single page. I am working with /aeroapi/history/flights/{ident}. Would like to force a multipage (with links) response. Any ideas how to do?

Thanks, but much of what you said would require me to guess at how the api works. There is no documentation around the subject of how their links/next/offset works. So anything I mock up would be speculation. Filters would just cause me to avoid the scenario……potentially.

Yeah, I already have code. Still need to understand and test the next page functionality. Unfortunately there is not documentation on this and apparently I am the only one that seems to what the answer.

The max_pages argument specifies how many 15-object pages you want returned (at most). If you are getting 28 objects back then you are likely specifying a value other than 1 for max_pages already. Specifying a lower value (such as 1) for that argument will be more likely to cause a multipage response.

I am not specifying any max_pages value currently. I will try setting that to 1.