Blockchain.info

Bitcoin price across dozens of fiat currencies

AUTH NONECORS AGENT ?HTTPS COMMERCIAL ?

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.

HOW IT'S SCORED ⓘ
Status badge · for your READMEshipapis health badge: — · unmonitored
ON PROBE SCHEDULE

We probe a documented GET and expect 2xx JSON — full uptime and health score. Open provider docs ↗

Uptime historystarts after first probe

On our probe schedule. Uptime charts appear after the first check lands.

Example responsefrom provider docs — not verified by us
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"
  }
}
Call itcurl · fetch · python
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())
Endpoints · 2On scheduleFULL DOCS ↗
On schedule — GET /ticker awaits first probe
GET/tickerPROBED

Bitcoin price across dozens of fiat currencies

GET/ticker?limit=5

Paginated variant with limit parameter.

Machine-readable spec

We probe a documented GET and expect 2xx JSON — full uptime and health score. Export includes every documented route below.

Response-shape history

Not tracked yet. Shape-change history starts once this API joins our probe schedule.

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?

Blockchain.info is catalogued but not yet on our probe schedule, so we don't publish a live status for it. Check the provider's own status page or docs for its current state.