chispasACS Price
Updated 2023-12-04Copy Reference Fork
99
1
2
3
4
5
6
7
8
9
10
11
›
⌄
SELECT
resp:data:"access-protocol":usd as usd_price,
resp:data:"access-protocol":usd_24h_change as usd_price_24h_change,
resp:data:"access-protocol":usd_24h_vol as usd_24h_vol
FROM
(
SELECT
livequery.live.udf_api(
'https://api.coingecko.com/api/v3/simple/price?ids=access-protocol&vs_currencies=usd&include_market_cap=true&include_24hr_vol=true&include_24hr_change=true&include_last_updated_at=true'
) as resp
)
Run a query to Download Data