Hello and welcome to Microsoft Q&A @Dervishi, Erald .
I've seen similar requests before. For an older solution, you might want to look into this thread link.
However, there is a new pagination option: Range!
The range pagination option is one I haven't had a chance to play with yet. However it appears to be exactly what you need. The following excerpt is taken from pagination support page. I am working now to make a more relatable explanation.
Example: Pagination rules
If you want to send multiple sequence requests with one variable in a range, you can define a variable such as {offset}, {id} in AbsoluteUrl, Headers, QueryParameters, and define the range rule in pagination rules. See the following examples of pagination rules:
Example 1
You have multiple requests:
Copy
baseUrl/api/now/table/incident?sysparm_limit=1000&sysparm_offset=0,baseUrl/api/now/table/incident?sysparm_limit=1000&sysparm_offset=1000,
......
baseUrl/api/now/table/incident?sysparm_limit=1000&sysparm_offset=10000
You need to specify the range pagination:AbosoluteUrl = baseUrl/api/now/table/incident?sysparm_limit=1000&sysparm_offset={offset}
The pagination rule is: QueryParameter.{offset} = RANGE:0:10000:1000