Hi @meklulose
This is the flow design i am taking about, to continue till skiptoken is not avaialble, i would recommend to try do until loop
Flow design
Step 1:

we will initialize two variables, first one is array Final_Data, which would storing responses from http request
second one is a boolean variable skiptokenavailable, which checks skiptoken is available or not in response of API.
Step 2:
will use a do until loop like below

In the loop, we will do as below
we will invoke http request to call that azure resource manager (arm) API using the HTTP Request using below action

Now using condition, we will check whether the skiptoken is present or not

expression used on left side
body('Invoke_an_HTTP_request')?['$skipToken']
expression used in right side : null
it is checking whether the skiptoken is present there or not
if it skiptoken is present, in yes branch, do like this

append the details from http request body to final_data variable and set skiptokenavailable variable as true
if the condition is false, do like below

append the body of http response to FinalData array variable and set skiptokenavailable variable as false
if the skiptokenavailable becomes false, then loop will be skipped as it runs until skiptokenavailable becomes false.
Hope this helps !
Mark it as solution if it resolves your query !