Decoding JSON to remove $XX

Good Evening,

What would be the best way to decode JSON to removed the $<> values between what's supposed to be white spaces?

You can use the text replacement block
example:
image

1 Like

A bigger question I would have here is why is the server returning content with some of the data URL-encoded? This shouldn't be necessary for the body of a GET operation. If you control the code running on the server, you probably want to change it to be more sane.

I'm not entirely sure. The uni wanted us to use Open Trivia DB: (opentdb.com) for the API data fetching.

Simple Way :

I got this working by removing the &encode=url3986 from the end of the URL

4 Likes

Wow, Nice :wink: