API Data Source

I’m trying to use an API that returns JSON. The schema is such that it takes parameters to return the values:

https://api.coingecko.com/api/v3/simple/price?ids=tron&vs_currencies=usd

i’ve created my query parameters but how can i modify the schema dynamically?

https://api.coingecko.com/api/v3/simple/price?ids={{param1}}$vs_currencies={{param2}}

okay, so would these be variables instead of actual defined parameters for the API data source? As soon as I define them the code starts to change.

I think you are new to wappers, so you can learn more by reading the document below

Yes, you can achieve the result you want.

thank you and yes, I am new to wappler. So I followed the document and it seems fairly straight forward. calling the API with the parameters seems to be working fine, however, how do I actually return the value from the call? As you can see here the value seems to be hard coded. How do I actually traverse the API result using my variables?:

{{coingeckoeth.data.bitcoin.usd}}

paste url
https://api.coingecko.com/api/v3/simple/price?ids=tron&vs_currencies=usd
then click to fetch schema

thats it

Thank you, I appreciate you responding, I’m deciding to manually build this application with PHP, unfortunately this seems to contrived. I could have built this already just coding it. Wappler seems like a great product, but not for me.