Citrea
About
Bring EVM programmability, DeFi, and stablecoins to Bitcoin with a zero-knowledge rollup that settles directly on Bitcoin.
Full Coverage
Stack
Symbol
CBTC
Gas Token
CBTC
Chain ID:
4114
Testnet Chain ID:
5115
Socials
Real-Time CBTC Pricing Across 12 Currencies
Access Citrea via Uniblock's unified blockchain API. The First ZK Rollup Secured by Bitcoin Bring EVM programmability, DeFi, and stablecoins to Bitcoin with a zero-knowledge rollup that settles directly on Bitcoin.
Code Snippet
INPUT
const options = {method: ‘GET’, headers: {accept: ‘application/json’}};
fetch(‘https://api.uniblock.dev/uni/v1/market-data/price?symbol=CBTC’, options)
.then(response => response.json())
.then(response => console.log(response))
.catch(err => console.error(err));
OUTPUT
{
“CBTC”: {
“btc”: 1,
“eth”: 24.80,
“bnb”: 112.73,
“xrp”: 103333.33,
“usd”: 62000.00,
“aud”: 89838.00,
“cad”: 83514.00,
“eur”: 56048.00,
“gbp”: 46407.00,
“hkd”: 481120.00,
“jpy”: 8892660.00,
“rub”: 5931540.00
}
}