Get a list of all product skus and images

I am trying to use Microsoft Power Automate to get all products from a shop using API.

I want a list with a syntax like this:

SKU, Image1, Image2, Image3, Image4, Image5

I see the max image qty is 250. But I guess we can settle with max 5 images.

I am guessing I need to use GraphQL to do so, but I expect to meet max API bucket if I tried to do just one query. How would I handle that?

Thanks

Do multiple queries! Paginate over the results and build up the total list until done. You’d be able to use either GraphQL or REST for this.