
Arc
About
Arc is Circle's EVM Layer 1 for stablecoin finance, with USDC as the gas asset and sub-second deterministic finality.
Full Coverage
Stack
Symbol
USDC
Gas Token
USDC
Real-Time USDC Pricing Across 12 Currencies
Access Arc via Uniblock's unified blockchain API. Circle's Stablecoin-Native Layer 1 Arc is Circle's EVM Layer 1 for stablecoin finance, with USDC as the gas asset and sub-second deterministic finality.
Code Snippet
INPUT
const options = {method: 'GET', headers: {accept: 'application/json'}};
fetch('https://api.uniblock.dev/uni/v1/market-data/price?symbol=USDC', options)
.then(response => response.json())
.then(response => console.log(response))
.catch(err => console.error(err));
OUTPUT
{
"USDC": {
"btc": 0.000016,
"eth": 0.000398,
"bnb": 0.00181,
"xrp": 1.67,
"usd": 1.00,
"aud": 1.45,
"cad": 1.35,
"eur": 0.903,
"gbp": 0.755,
"hkd": 7.78,
"jpy": 143.2,
"rub": 95.9
}
}