How to work with lists without database

Hi, I am wondering if this can be done without using a database:
I use external API call to save lists of products, corresponding prices and offer ids. Then I run API workflow to save these lists into database so that I can sort the products by price. I also run API workflow which adds more data to each product from another external API call (offer id is a parameter).
I want to completly avoid to use database because it is very slow and all the data are temporary (it’s used in chrome extension). Is there any way how to do it?
Thanks!
Petr

You can call directly the API with API connector use as “data”
Store them into a state or into a RG

That works well, thanks

1 Like

There is a little problem with storing the data directly in the RG. It works well but it consumes 3 API calls instead of 1. I can’t figure out why.
image