How can I split requested information?

Hello,

how can I divide the requested information into individual pieces without special characters?

requested api info (https://api.blockchain.com/v3/exchange/tickers/BTC-USD)

and i get this:
{"symbol":"BTC-USD","price_24h":38380.17,"volume_24h":350.22436923,"last_trade_price":38513.2}

so i build with jsontextdecode and i get this:
image

so far i have done it as shown in the picture:

How can i now show this like:

BTC - USD
Last trade price 38221.25
Price 24h 39155.4
Volume 24h 398.23739

i am a beginner and i would appreciate it for any help :slight_smile:

Greez Chris

You could do this:

which will return this in a single label:

image

1 Like

Thank you @TIMAI2

how can i rename volume_24h to 24h Volume ?

If the "key" is static (always the same) then you could do this:

image

1 Like

while building it just occurred to me myself, logic xD

how can i do math on this build, i want to divide some numbers

image

3b1fa936bd269a76c9cb7a6b83e45e27b3a0fecf

1 Like

thanks alot it work! :slight_smile:

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