
Stellar Soroban
About
Soroban is the Rust and WASM smart contract environment on Stellar, running alongside the payment ledger.
Full Coverage
Stack
Symbol
XLM
Gas Token
XLM
Real-Time XLM Pricing Across 12 Currencies
Access Stellar Soroban via Uniblock's unified blockchain API. Smart Contracts on Stellar Soroban is the Rust and WASM smart contract environment on Stellar, running alongside the payment ledger.
Code Snippet
INPUT
const options = {method: 'GET', headers: {accept: 'application/json'}};
fetch('https://api.uniblock.dev/uni/v1/market-data/price?symbol=XLM', options)
.then(response => response.json())
.then(response => console.log(response))
.catch(err => console.error(err));
OUTPUT
{
"XLM": {
"btc": 0.0000041,
"eth": 0.000102,
"bnb": 0.000464,
"xrp": 0.427,
"usd": 0.256,
"aud": 0.371,
"cad": 0.346,
"eur": 0.231,
"gbp": 0.193,
"hkd": 1.99,
"jpy": 36.6,
"rub": 24.5
}
}