Split out more than 100 items?

Hi @PrintEurope, pagination can be implemented using a loop like so for example:

I don’t have access to your API, but you should be able to adjust the example. I am using the $runIndex here to keep track of how often the loop has been running. Since your API expects an offset rather than a page number you probably want to use {{ $runIndex * 100 }} on the Set node and replace the page query parameter with the offset parameter required by your API. For the IF node you’d need to find a suitable comparison taking your data structure into account.

It should look like this when running:

Recording 2022-11-22 at 17.00.53

If you want to further process your data once the loop has finished, you might also want to take at this workflow which can make life easier: Merge multiple runs into one | n8n workflow template

Give me a shout if need further help with this :)f