ah, think I follow. You can set the limit higher than 10 in your request (docs suggest 500 is the limit but if you have a huge amount of changes in each session you might want to scale it back to maybe 50). If the changes ever exceeded the 'limit' then you would have to page your requests using a loop and an offset.
So in request one - you would need to store the total (lets say there were 35 changes). I would build a loop along these lines
-> make initial request. Limit set to 10, offset set to 0.
<- 35 changes reported by API, first 10 returned as per limit setting.
-> Store these and loop while offset < total. Add limit to offset.
If you're using Postman, just manually increase the offset by the value of the limit you specify for each request.