List with 2 data sources, API and Xano

I have two data sources:

One from Xano is called “tools,” which is just a list of websites.
One from an API that gets data from the “tool” in the Xano database.

I am using a formula to take the website in the Xano database to make the API call.

I added a “List” element on the front end.
The list is populated from the Xano DB of tools, which works.

What I want to do is add some additional text fields to the list that are results from the API dataset. I bound this text to the API data point but it’s showing the same result for each item.

How can I make it dynamic so that it’s essentially making the API called for each item in the lust and pulling the correct corresponding data?

Thanks so much!

Hi @nocodedevs :wave:

One idea that comes to mind: on page load, create a workflow with a loop that goes through each item in your tools collection, makes an api call to Xano to get each tool info, and updates an array variable with that info.

Then, you can bind to the data in your variable.

Does that make sense?