Sui
About
Develop and deploy secure smart contracts with Sui's advanced technology.
Partial Coverage
Stack
Symbol
SUI
Gas Token
Chain ID:
sui
Real-Time SUI Smart Contract Pricing Data
Access Sui via Uniblock's unified blockchain API. Blockchain for Secure Smart Contracts Develop and deploy secure smart contracts with Sui's advanced te...
Code Snippet
INPUT
const
options = {method: 'GET', headers: {accept: 'application/json'}};
fetch('https://api.uniblock.dev/uni/v1/market-data/price?symbol=SUI', options)
.then(
response
=>
response
.json())
.then(
response
=>
console.log(
response
))
.catch(
err
=>
console.error(
err
));
OUTPUT
{
"SUI": {
"btc": 0.00002811,
"eth": 0.00070048,
"bnb": 0.00316455,
"xrp": 2.910085,
"usd": 1.74,
"aud": 2.54,
"cad": 2.35,
"eur": 1.58,
"gbp": 1.31,
"hkd": 13.54,
"jpy": 249.77,
"rub": 166.92
}
}