Dynamic Initialization of APIs

I am looking to add a feature to my app that allows users to interact with their own API. Idea is they can type in the URL, then my Bubble app will display the results.

In Bubble I am making the entire URL dynamic but the returned data is not initialized, so I can not nicely display the outputs for the users. I do not want to have to initialize each API for each user.

I am thinking that I could use another API to parse the returned raw data (so I can turn name: “Name” into just Name). Does anyone know of something that could do this or know of another solution?

Did you ever figure this out? :small_airplane:

I’ve done a similar process before, but the problem is the response of the data in Bubble. What we did was receive the data through n8n, parse it there, and return it as text to Bubble. Then we handled it using regex and find-and-replace operations so we could do whatever we wanted with it there.