curl --request GET \
--url https://xbt-mainnet.gomaestro-api.org/v0/rpc/mempool/info \
--header 'api-key: <api-key>'{
"data": {
"bytes": 123,
"fullrbf": true,
"incrementalrelayfee": 123,
"loaded": true,
"maxmempool": 123,
"mempoolminfee": 123,
"minrelaytxfee": 123,
"size": 123,
"total_fee": 123,
"unbroadcastcount": 123,
"usage": 123
},
"last_updated": {
"block_hash": "<string>",
"block_height": 123
}
}Get Bitcoin mempool information including size, bytes, usage, and fee statistics for transaction queue management.
curl --request GET \
--url https://xbt-mainnet.gomaestro-api.org/v0/rpc/mempool/info \
--header 'api-key: <api-key>'{
"data": {
"bytes": 123,
"fullrbf": true,
"incrementalrelayfee": 123,
"loaded": true,
"maxmempool": 123,
"mempoolminfee": 123,
"minrelaytxfee": 123,
"size": 123,
"total_fee": 123,
"unbroadcastcount": 123,
"usage": 123
},
"last_updated": {
"block_hash": "<string>",
"block_height": 123
}
}Project API Key
OK
Show child attributes
Total memory usage for the mempool (in bytes)
Whether full replace-by-fee (RBF) is enabled
The incremental relay fee setting (in BTC)
Whether the mempool is fully loaded
Maximum memory usage for the mempool (in bytes)
The minimum fee rate (in BTC/kB) for mempool transactions
The minimum fee rate (in BTC/kB) for relaying transactions
Number of transactions in the mempool
The total fees (in BTC) in the mempool
Number of transactions that have not been broadcast
Total usage of the mempool (in bytes)
Was this page helpful?