Cryptocurrency — entry 012 of 53

Blockchain.com

Verified Jul 2026

Blockchain.com's free Explorer API returns JSON data for Bitcoin blocks, transactions, and addresses with no signup or key, alongside a Statistics/Charts API, an Exchange Rates API, and a WebSocket feed for real-time block and mempool notifications. Browser callers can opt individual GET requests into CORS by appending a cors=true parameter; this read-only data API is a separate product from Blockchain.com's API-key-gated Exchange trading API.

Blockchain.com's Explorer API exposes raw Bitcoin blockchain data — addresses, transactions, and blocks — as free, keyless JSON endpoints (distinct from Blockchain.com's paid Exchange trading API).

bitcoinblock-explorerwalletwebsocketcharts
AuthenticationNone requiredCall it straight away — no key, no signup.
HTTPSSupportedTraffic is encrypted in transit.
CORSEnabledCallable directly from browser JavaScript.
PricingFreeNo paid tier — free for the documented use case.
FormatsJSON, WebSocketResponses can be requested as JSON or WebSocket.

GreatAPIs Score

Score94out of 100
Authentication25/25No authentication required
Pricing20/20Free to use
Docs14/20Documentation URL provided
Formats15/15Supports 2 response formats
Freshness20/20Verified within 6 months

Embed this badge

Scored 94 on greatapis.com
<a href="https://greatapis.com/api/blockchain/"><img src="https://greatapis.com/badge/blockchain.svg" alt="Scored 94 on greatapis.com"></a>

Auth quickstart

  1. No API key required — the Explorer endpoints are public and keyless
Stored keyNo key stored

Your key is stored only in this browser (localStorage) and sent directly to the API — never to greatapis.

Address balance and transaction history

GEThttps://blockchain.info/rawaddr/1A1zP1eP5QGefi2DMPTfTL5SLmv7DivfNa?limit=1

200 application/json

{
  "address": "1A1zP1eP5QGefi2DMPTfTL5SLmv7DivfNa",
  "n_tx": 63452,
  "total_received": 10723313025,
  "total_sent": 0,
  "final_balance": 10723313025,
  "txs": [
    {
      "hash": "...",
      "time": 1231469665,
      "block_height": 170,
      "fee": 0
    }
  ]
}

Developer reference

Gotchas & limits

  • Monetary values (`total_received`, `final_balance`, etc.) are returned in satoshis, not BTC — divide by 100,000,000
  • `txs` pagination is capped at `limit=50` per request — use `offset` to page through addresses with long histories
  • There's no published SLA or official rate-limit number for the free Explorer endpoints — excessive polling can get your IP throttled, so cache responses where possible