Cryptocurrency — entry 043 of 53

Mempool

Verified Jul 2026

mempool.space runs an open-source Bitcoin block explorer and fee-estimation API — originally forked from Blockstream's Esplora backend and now maintained as its own mempool/electrs fork — answering over REST and WebSocket with no signup needed to read blocks, transactions, addresses, and the Lightning Network graph. It's free for public use, with a paid Mempool Enterprise tier adding unmetered access and multi-datacenter SLAs for heavier commercial traffic.

mempool.space runs an open-source Bitcoin block explorer and fee-estimation service, forked from Blockstream's Esplora backend and extended with its own fee, mining-pool, and Lightning Network endpoints — all keyless JSON (and some plain-text) over a single `/api` path.

bitcoinmempoolblock-explorerfee-estimationlightning-network
AuthenticationNone requiredCall it straight away — no key, no signup.
HTTPSSupportedTraffic is encrypted in transit.
CORSEnabledCallable directly from browser JavaScript.
PricingFreemiumA usable free tier exists, with paid plans for more volume.
FormatsJSON, WebSocketResponses can be requested as JSON or WebSocket.

GreatAPIs Score

Score91out of 100
Authentication25/25No authentication required
Pricing17/20Freemium tier available
Docs14/20Documentation URL provided
Formats15/15Supports 2 response formats
Freshness20/20Verified within 6 months

Embed this badge

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

Auth quickstart

  1. No API key required — requests are public and keyless. There's no published fixed rate ceiling for the free public instance; the docs simply warn that exceeding an unpublished threshold returns a 429, and suggest an Enterprise sponsorship (or self-hosting your own mempool/electrs instance) if you need guaranteed higher throughput.
Stored keyNo key stored

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

Get the current recommended transaction fees

GEThttps://mempool.space/api/v1/fees/recommended

200 application/json; charset=utf-8

{"fastestFee":1,"halfHourFee":1,"hourFee":1,"economyFee":1,"minimumFee":1}

Developer reference

Base URLhttps://mempool.space/api

Gotchas & limits

  • Esplora-inherited routes sit directly under `/api/...` (e.g. `/api/blocks/tip/height`) while mempool.space's own fee-estimation additions sit under `/api/v1/...` (e.g. `/api/v1/fees/recommended`) — same host, two versioning conventions on one base path.
  • Several endpoints return `text/plain`, not JSON: a live `GET /api/blocks/tip/height` came back `200 text/plain` with a bare numeric body (`959656`), no braces to parse.
  • Fee values are already-rounded sat/vB integers for display, not high-precision floats — don't expect fractional sat/vB estimates.
  • There's no documented fixed rate limit; the docs only promise a 429 once you cross an unpublished threshold and point to an Enterprise tier for higher, contracted limits.