← Marketplace

Bitcoin Mempool

Bitcoin network intelligence: recommended fees, recent blocks, and address activity. Powered by mempool.space, machine-payable per request.

Robinhood Chain

Offers

OfferEndpointPrice
Address activity
Append a bitcoin address to the path, e.g. address/bc1q... Returns funded and spent totals plus tx counts.
/m/mempool/address0.005 USDG
Recent blocks
The last 15 blocks with size, tx count, and fee stats. Append a start height to the path for history.
/m/mempool/blocks0.005 USDG
Recommended fees
Current sat/vB fee estimates for next-block, half-hour, hour, and economy confirmation.
/m/mempool/fees0.005 USDG

Machine-readable: openapi.json with x-payment-info offers.

Try it live

Run the full MPP flow from your browser: catch the 402, sign the payment with your wallet, and watch it settle on-chain.

Sign in with your wallet to try an endpoint straight from the browser.

Pay with an agent

Any MPP or x402-compatible client works. With mppx, payment is automatic:

// x402 exact scheme (permit2) on Robinhood Chain
// 1. GET the endpoint, read the payment-required header (base64 JSON)
// 2. Sign PermitWitnessTransferFrom against Permit2 for the advertised offer
//    (spender = x402ExactPermit2Proxy, witness.to = merchant wallet)
// 3. Retry with the payment-signature header; settlement tx arrives
//    in the payment-response header
const res = await fetch('https://api.meshgateway.co/m/mempool/address', {
  headers: { 'payment-signature': signedPaymentPayload },
})

Or inspect the challenge yourself:

curl -i https://api.meshgateway.co/m/mempool/address
# HTTP/1.1 402 Payment Required
# WWW-Authenticate: Payment id="…", method="evm", intent="charge", …