How does futures API transaction history pagination work?

Let’s say I’ve got 100 records, and if I send /fapi/v1/income with a limit=10

I only get back 10 records, there’s no indication of how many for total pages and what’s the page anchor from the response?

What’s the proper way of working with /fapi/v1/income for pagination?

The limit and page parameters are sufficient for iterating through your income history. You can increment the page parameter and continue calling the endpoint until no more results are returned.

thanks for the clarification.