
Centrifuge
About
Centrifuge brings tokenized real-world assets and fund structures onto public rails with an EVM-compatible execution layer.
Full Coverage
Stack
Symbol
CFG
Gas Token
CFG
Tools
Real-Time CFG Pricing Across 12 Currencies
Access Centrifuge via Uniblock's unified blockchain API. Onchain Infrastructure for Tokenized Funds Centrifuge brings tokenized real-world assets and fund structures onto public rails with an EVM-compatible execution layer.
Code Snippet
INPUT
const options = {method: 'GET', headers: {accept: 'application/json'}};
fetch('https://api.uniblock.dev/uni/v1/market-data/price?symbol=CFG', options)
.then(response => response.json())
.then(response => console.log(response))
.catch(err => console.error(err));
OUTPUT
{
"CFG": {
"btc": 0.0000002,
"eth": 0.00000497,
"bnb": 0.0000226,
"xrp": 0.0208,
"usd": 0.0125,
"aud": 0.0181,
"cad": 0.0169,
"eur": 0.0113,
"gbp": 0.00944,
"hkd": 0.0972,
"jpy": 1.79,
"rub": 1.20
}
}