Automating Amazon product data from Keepa to Google Sheets — looking for feedback

Hi everyone :waving_hand:

I’m building a Make scenario to pull product data from the Keepa API and send it to Google Sheets for analysis.

It works with “perPage”: 50, but I’m still optimizing filters and the iterator to save credits.

Has anyone here built something similar? Any tips on best filters or pagination settings?

Thanks!

Hey there,

if that variable is just a number, then you can use a Repeater module to keep incrementing it until you have processed all pages. That is, if this can be done in a reasonable amount of time.

The other way is to use a data store and keep track of the page you are currently on inside. Then have the scenario keep retriggering it self until all pages have been processed.

1 Like

You must repeat the process as many times as there are pages with 50 results. Any page with fewer than 50 items will be the last one and it should stop repeating.
You can also use perPage parameter up to 10,000 with page=0 to avoid additional modules in Make.

1 Like

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.