High-Performance Blockchain for dApps
Build fast and scalable dApps with Solana's robust infrastructure.
High Throughput
Solana offers high transaction throughput, ideal for large-scale DApps.
Low Fees
Benefit from low transaction fees, making it cost-effective for developers and users.
Developer-Friendly Tools
Access a suite of development tools and resources, simplifying the smart contract development process.
Strong Security
Solana provides advanced security features, protecting your DApps and transactions.
High-Throughput SOL Price Feeds in One Call
Access Solana via Uniblock's unified blockchain API. High-Performance Blockchain for dApps Build fast and scalable dApps with Solana's robust infrastruc...
INPUT
const
options = {method: 'GET', headers: {accept: 'application/json'}};
fetch('https://api.uniblock.dev/uni/v1/market-data/price?symbol=SOL', options)
.then(
response
=>
response
.json())
.then(
response
=>
console.log(
response
))
.catch(
err
=>
console.error(
err
));
OUTPUT
{
"SOL"
: {
"btc"
: 0.00236749,
"eth"
: 0.05898419,
"bnb"
: 0.26588036,
"xrp"
: 244.525,
"usd"
: 147.01,
"aud"
: 213.98,
"cad"
: 198.57,
"eur"
: 132.99,
"gbp"
: 110.93,
"hkd"
: 1142.71,
"jpy"
: 21100,
"rub"
: 14090.99
}
}