Bitcoin Mempool Scraper (mempool.space) avatar

Bitcoin Mempool Scraper (mempool.space)

Pricing

from $0.99 / 1,000 results

Go to Apify Store
Bitcoin Mempool Scraper (mempool.space)

Bitcoin Mempool Scraper (mempool.space)

$0.5/1K ๐Ÿ”ฅ Bitcoin mempool scraper! Live sat/vB fee estimates, mempool size, recent blocks & BTC price. No key. JSON, CSV, Excel or API in seconds. Time transactions & build wallet apps โšก

Pricing

from $0.99 / 1,000 results

Rating

0.0

(0)

Developer

ninhothedev

ninhothedev

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

2 days ago

Last modified

Share

Live Bitcoin fee estimates, mempool congestion, BTC price and recent blocks โ€” no API key, no login, no proxy.

This Actor pulls real-time on-chain data from the public mempool.space API and turns it into clean, flat rows you can export as JSON, CSV, Excel or feed straight into your app via the Apify API. It is the fastest way to answer the two questions every Bitcoin builder has: "What fee should I pay right now?" and "What just happened on-chain?"


What you get

Mode fees โ€” one summary row

A single, wide row with everything you need to price a transaction:

FieldMeaning
fastest_feesat/vB for next-block confirmation
half_hour_feesat/vB for ~30 min confirmation
hour_feesat/vB for ~1 h confirmation
economy_feesat/vB low-priority rate
minimum_feecurrent mempool minimum relay fee
mempool_tx_countunconfirmed transactions waiting
mempool_vsizetotal mempool virtual size (vB)
mempool_total_feetotal fees sitting in the mempool (sats)
price_usd / price_eurBTC spot price
difficulty_progress_pctprogress through the current retarget period
difficulty_change_pctprojected difficulty change
remaining_blocksblocks left until the next retarget
source, scraped_atprovenance + ISO-8601 UTC timestamp

Mode blocks โ€” one row per block

FieldMeaning
heightblock height
block_idblock hash
timestampmined-at, normalised to ISO-8601 UTC
tx_counttransactions in the block
size / weightraw size (bytes) and weight units
median_feemedian fee rate in the block (sat/vB)
rewardtotal block reward incl. fees (sats)
poolmining pool name (F2Pool, Foundry USA, AntPool, โ€ฆ)

Input

FieldTypeDefaultDescription
modeselect (fees | blocks)feesWhat to scrape
maxItemsinteger (1โ€“500)50Max rows; only relevant in blocks mode
{
"mode": "blocks",
"maxItems": 100
}

Sample output

{
"type": "summary",
"fastest_fee": 2,
"half_hour_fee": 1,
"hour_fee": 1,
"economy_fee": 1,
"minimum_fee": 1,
"mempool_tx_count": 89311,
"mempool_vsize": 43669432,
"mempool_total_fee": 10174874,
"price_usd": 63138,
"price_eur": 55506,
"difficulty_progress_pct": 14.43,
"difficulty_change_pct": -4.58,
"remaining_blocks": 1725,
"source": "mempool.space",
"scraped_at": "2026-07-28T01:45:07+00:00"
}
{
"type": "block",
"height": 959907,
"block_id": "000000000000000000022c1b91e29e784e85d7942b424ae0dcd246b36cf19600",
"timestamp": "2026-07-28T01:39:51+00:00",
"tx_count": 3676,
"size": 1707989,
"weight": 3997688,
"median_fee": 2.0033,
"reward": 314445022,
"pool": "F2Pool",
"source": "mempool.space",
"scraped_at": "2026-07-28T01:45:07+00:00"
}

Use cases

  • BTC fee estimation โ€” stop guessing sat/vB. Schedule the Actor every few minutes and always quote a fee that actually confirms.
  • Wallet apps โ€” power a "Slow / Normal / Fast" fee selector with live network data instead of a hard-coded table.
  • On-chain analytics โ€” track mempool backlog, block fullness, mining-pool market share and difficulty drift over time.
  • Trading bots โ€” combine BTC spot price with mempool congestion as a market-stress signal, or time on-chain settlement for cheap fee windows.

Other things people build with it: fee-alert Telegram bots, exchange withdrawal-fee calculators, mining-pool dashboards, Bitcoin ETF/treasury reporting, and academic congestion research.


Why this Actor

  • No API key, ever. mempool.space's public API is open. Nothing to sign up for, nothing to rotate, nothing to leak.
  • No proxy required. Runs on the free Apify datacenter tier โ€” keeps your cost at the compute floor.
  • Two modes, one clean schema. Flat rows with snake_case fields โ€” no nested extras object to unwrap.
  • Fully null-tolerant. If a single upstream endpoint hiccups, the Actor logs a warning and still returns everything else instead of failing the run.
  • Real ISO-8601 timestamps. UNIX seconds and milliseconds are both normalised to UTC ISO strings, so spreadsheets and BI tools just work.
  • Fast. All four fees-mode endpoints are fetched concurrently; a run finishes in a couple of seconds.

Pricing

Roughly $0.50 per 1,000 results. A fees run produces exactly one row, so continuous fee monitoring costs fractions of a cent per check. A 500-block history pull is well under a cent.

Scheduling tips

  • mode: fees every 5โ€“10 minutes โ†’ a rolling fee + price + congestion time series.
  • mode: blocks, maxItems: 20 every hour โ†’ a complete block/mining-pool log with natural de-duplication on height.

How it works

The Actor calls the documented public endpoints /v1/fees/recommended, /mempool, /v1/prices, /v1/difficulty-adjustment and /v1/blocks. Only public, non-personal blockchain data is collected โ€” no accounts, no wallets, no personal information. Block history is paginated backwards from the chain tip with a polite delay between pages.


Keywords: bitcoin fee estimator API, mempool.space scraper, BTC transaction fee sat/vB, bitcoin mempool size API, bitcoin block explorer data, mining pool statistics, bitcoin difficulty adjustment, on-chain analytics, crypto data API without key.