Blockchain.info
Bitcoin price across dozens of fiat currencies
Blockchain.info's /ticker returns the current BTC price — 15-minute delayed plus buy/sell — across 30+ fiat currencies as JSON. Keyless and long-lived; the wider Blockchain Data API also exposes blocks and transactions for on-chain explorers.
GET https://blockchain.info/ticker
{
"ARS": {
"15m": 93466680.96,
"last": 93466680.96,
"buy": 93466680.96,
"sell": 93466680.96,
"symbol": "ARS"
},
"AUD": {
"15m": 90468.27,
"last": 90468.27,
"buy": 90468.27,
"sell": 90468.27,
"symbol": "AUD"
},
"BRL": {
"15m": 325630.82,
"last": 325630.82,
"buy": 325630.82,
"sell": 325630.82,
"symbol": "BRL"
},
"CAD": {
"15m": 89177.23,
"last": 89177.23,
"buy": 89177.23,
"sell": 89177.23,
"symbol": "CAD"
},
"CHF": {
"15m": 50306.27,
"last": 50306.27,
"buy": 50306.27,
"sell": 50306.27,
"symbol": "CHF"
},
"CLP": {
"15m": 58131606.78,
"last": 58131606.78,
"buy": 58131606.78,
"sell": 58131606.78,
"symbol": "CLP"
},
"CNY": {
"15m": 426074.92,
"last": 426074.92,
"buy": 426074.92,
"sell": 426074.92,
"symbol": "CNY"
},
"CZK": {
"15m": 1327952.25,
"last": 1327952.25,
"buy": 1327952.25,
"sell": 1327952.25,
"symbol": "CZK"
}
}curl "https://blockchain.info/ticker"const res = await fetch("https://blockchain.info/ticker");
const data = await res.json();
console.log(data);import requests
res = requests.get("https://blockchain.info/ticker")
print(res.json())/tickerPROBEDBitcoin price across dozens of fiat currencies
/ticker?limit=5Paginated variant with limit parameter.
We probe a documented GET and expect 2xx JSON — full uptime and health score. Export includes every documented route below.
Stable. No schema drift observed since monitoring began — the response shape has not changed under our checks.
Blockchain.info: common questions
Is Blockchain.info free to use?
Yes — Blockchain.info is a free crypto & web3 API. Free tier: Free — limits not published. Whether the free tier allows commercial use is unclear — check the provider docs.
Does Blockchain.info need an API key?
No — Blockchain.info needs no API key or signup. You can call it straight away; rate limits still apply (Unpublished).
Can I call Blockchain.info from the browser?
Yes — Blockchain.info returns CORS headers over HTTPS, so front-end code can fetch it directly with no backend proxy. Use the fetch snippet on this page, or hit "Run live" to try it now.
Is Blockchain.info up right now?
As of our last scheduled check, Blockchain.info is healthy with 100% uptime over 90 days and a 397 ms median response. We re-probe it every sweep — the status badge and uptime chart above always show the latest.