Overview

Mempool.space is a comprehensive platform designed for real-time observation and analysis of the Bitcoin blockchain and its unconfirmed transaction pool, known as the mempool. Launched in 2021, it serves a diverse audience including developers, traders, miners, and researchers who require detailed, up-to-the-minute information on network conditions. The platform's core offering is a visual block explorer that displays pending transactions, block confirmations, and overall network health, providing a granular view of Bitcoin's operational state. For developers and technical buyers, Mempool.space offers a powerful API that exposes data points on transactions, blocks, addresses, and the Lightning Network. This enables the creation of custom monitoring dashboards, automated transaction tracking systems, or integration into applications requiring real-time Bitcoin data. For example, a crypto exchange might use the API to estimate transaction fees and confirmation times accurately, while a payment processor could monitor the status of customer transactions as they propagate through the network. Beyond the primary Bitcoin blockchain, Mempool.space extends its monitoring capabilities to the Lightning Network, a layer-2 scaling solution for Bitcoin. This includes tracking channel openings, closings, and overall network capacity, offering insights into the liquidity and connectivity of the Lightning ecosystem. The platform also provides tools for analyzing mempool dynamics, such as fee rate distributions and transaction sizes, which are crucial for understanding network congestion patterns and forecasting future transaction costs. Users can also opt to self-host their own Mempool node, granting full control over data privacy and access speed.

Key features

  • Bitcoin Block Explorer: Provides detailed information on all confirmed Bitcoin blocks and transactions. Users can search by block height, hash, transaction ID, or address to view specifics like inputs, outputs, fee rates, and confirmation times.
  • Mempool Visualizer: Displays unconfirmed transactions in real-time, categorized by fee rate. This visual representation helps users understand current network congestion and estimate optimal transaction fees for faster confirmations.
  • Lightning Network Explorer: Offers insights into the Lightning Network's structure and activity, including channel capacity, node distribution, and payment routing statistics. This helps users assess the network's health and potential for efficient off-chain transactions.
  • Transaction Accelerator: During periods of high network congestion, this feature allows users to broadcast a transaction with a higher fee, potentially speeding up its confirmation.
  • Self-Hosted Mempool Node: Provides the option to run a local instance of Mempool.space, offering enhanced privacy, direct access to a full node's data, and customizable monitoring solutions. Setting up a local node requires technical proficiency in system administration and blockchain node operation, as detailed in the Mempool documentation for self-hosting.
  • Comprehensive REST API: Offers programmatic access to all public data available on the Mempool.space platform, allowing developers to build custom applications, analytics tools, or integrate real-time Bitcoin data into existing services. The API includes endpoints for blocks, transactions, addresses, and fee estimates.
  • Advanced Fee Estimator: Utilizes current mempool conditions to provide dynamic fee recommendations, helping users select an appropriate fee rate to achieve desired confirmation times, from immediate inclusion to lower-priority processing.

Pricing

Mempool.space operates primarily as a free public service for its hosted block explorer and API access. For users seeking enhanced control or specific configurations, self-hosting options are available, incurring infrastructure costs. These costs are dependent on the user's chosen hardware, network, and electricity providers, rather than direct licensing fees from Mempool.space.
Service Tier Description Cost
Public Instance Access Real-time Bitcoin and Lightning Network data via mempool.space website and public API endpoints. Free
Self-Hosted Node Deploying and running a dedicated Mempool.space instance on private infrastructure. Infrastructure costs (hardware, electricity, bandwidth)
Pricing as of May 2026. For details on self-hosting requirements, refer to the Mempool.space documentation on running a local node.

Common integrations

Mempool.space's API and self-hosting capabilities allow for integration into various technical environments and applications. Developers can leverage the provided endpoints to enhance existing systems or build new tools requiring real-time Bitcoin data.
  • Custom Wallets and Exchange Platforms: Integrate fee estimation and transaction status tracking to improve user experience in cryptocurrency wallets or trading platforms.
  • Payment Processors: Monitor incoming Bitcoin transactions for confirmation status, enabling timely service delivery or order fulfillment.
  • Analytics and Monitoring Dashboards: Incorporate mempool data, block statistics, and Lightning Network metrics into bespoke analytics platforms for market analysis or operational oversight.
  • Research Tools: Utilize historical and real-time data for academic or independent research into Bitcoin network behavior, transaction patterns, and economic models.
  • Alerting Systems: Build automated alerts for specific transaction confirmations, address activity, or significant changes in mempool conditions.

Alternatives

Users seeking alternatives to Mempool.space for Bitcoin blockchain exploration and monitoring have several options, each with distinct features and data presentation styles.
  • Blockchair: A multi-blockchain explorer that supports Bitcoin alongside numerous other cryptocurrencies, offering detailed transaction and block data.
  • Blockchain.com Explorer: A popular and long-standing Bitcoin block explorer providing a user-friendly interface for tracking transactions and network statistics.
  • BlockCypher: Offers a blockchain web services platform with APIs for Bitcoin and other cryptocurrencies, focusing on transaction reliability and developer tools. BlockCypher's API documentation provides examples for querying transaction data across various chains.

Getting started

To retrieve the current recommended fee estimates from the Mempool.space API, you can make a simple HTTP GET request. This example uses `curl` to fetch the data, which includes estimates for different confirmation targets.
curl https://mempool.space/api/v1/fees/recommended
This command will return a JSON object similar to the following, indicating the estimated fee rate in satoshis per virtual byte (sat/vB) for various confirmation targets:
{
  "fastestFee": 50,
  "halfHourFee": 30,
  "hourFee": 20,
  "economyFee": 10,
  "minimumFee": 1
}
Each key in the JSON object represents a confirmation speed target (e.g., `fastestFee` for next block, `halfHourFee` for within 30 minutes), and its corresponding value is the recommended fee rate (sat/vB). This data can be used programmatically to suggest optimal transaction fees to users or to dynamically adjust fee rates in applications. For more advanced API calls, refer to the Mempool.space API reference for transaction details and block information.