Mempool Fees
Retrieve statistics regarding the fee rates of transactions within estimated mempool blocks.
get
Retrieve stats for the projected blocks from the transactions in the mempool.
Authorizations
Responses
200
Default Response
application/json
400
Invalid input
application/json
401
Unauthorized
application/json
404
Not found
application/json
429
Rate limit exceeded
application/json
500
Internal server error
application/json
get
GET /v1/bitcoin/mempool/stats HTTP/1.1
Host: api.secretkeylabs.io
x-api-key: YOUR_API_KEY
Accept: */*
{
"currentBlockHeight": 1,
"projectedBlocks": [
{
"height": 1,
"weight": 1,
"vbytes": 1,
"txnCount": 1,
"totalFeesSats": 1,
"feeRates": {
"min": 1,
"max": 1,
"avg": 1,
"median": 1,
"p75": 1,
"p95": 1
}
}
]
}
Last updated