Simple API call

This should be pretty easy to solve for you guys.
I would like to display a crypto coin price on my remote - refreshing every 30mins or so.
API call is: “https://api.coingecko.com/api/v3/simple/price?ids=nemesis-dao&vs_currencies=usd
Return value in json is: {“nemesis-dao”:{“usd”:190.34}}
Just need a label showing: “190.34”
How?
THX!

Attached is a plugin showing how to display the value of “nemesis-dao” from CoinGecko.

CoinGecko.hrp (123.1 KB)
CoinGecko.plugin (1.1 KB)
CoinGeckoTile.xaml (1.1 KB)

plugin.Name = "CoinGecko";
plugin.OnChangeRequest = onChangeRequest;
plugin.OnConnect = onConnect;
plugin.OnDisconnect = onDisconnect;
plugin.OnPoll = onPoll;
plugin.OnSynchronizeDevices = onSynchronizeDevices;
plugin.PollingInterval = 1800000;
plugin.DefaultSettings = {};

var http = new HTTPClient();

function onChangeRequest(device, attribute, value) {
}

function onConnect() {
}

function onDisconnect() {
}

function onPoll() {
    for (var deviceId in plugin.Devices) {
        var device = plugin.Devices[deviceId];
        var response = http.get("https://api.coingecko.com/api/v3/simple/price?ids=" + deviceId + "&vs_currencies=usd");
        var json = response.data;
        device.usd = json[deviceId]["usd"];
    }
}

function onSynchronizeDevices() {
    var coinGeckoDevice = new Device();
    coinGeckoDevice.Id = "nemesis-dao";
    coinGeckoDevice.DisplayName = "Nemesis DAO";
    coinGeckoDevice.Capabilities = [];
    coinGeckoDevice.Attributes = ["usd"];
    coinGeckoDevice.TileTemplate = "CoinGeckoTile.xaml";
    plugin.Devices[coinGeckoDevice.Id] = coinGeckoDevice;
}

WOW! That was fast!
It works!
Thanks so much!

Again - thx for the plugin!
I was able to adopt that for BTC, BNB and Ethereum.
This has been working for four years now!!
Until it didn’t…
Checked the API - still works. Getting data.
Any suggestions?