How to use coronovirus api data

How can we use the open data available on https://thevirustracker.com/free-api?global=stats to display selective statistics
Can we use this api to write to tinywebdb or cloud Db and from there to MIT app?

Suggest you import it to a google sheet (=importdata()), organise the data to your liking on the sheet, then call down the data as csv to your app

There’s not a whole lot of data in that URL’s results:
{
“results”:[
{
“total_cases”:8036666,
“total_recovered”:4152546,
“total_unresolved”:2255875,
“total_deaths”:436449,
“total_new_cases_today”:52599,
“total_new_deaths_today”:1268,
“total_active_cases”:46321,
“total_serious_cases”:3044152,
“total_affected_countries”:213,
“source”:{
“url”:“https://thevirustracker.com/
}
}
],
“stat”:“ok”
}

You can use a Web Get and parse it as JSON into a dict.
Beware the [ ] level; it will require a select list item 1 block to get to the inner object.