Skip to main content
GET
/
api
/
btc
/
mempool
Get current mempool snapshot (count, vsize, fee histogram)
curl --request GET \
  --url https://nexus.gerowallet.io/api/btc/mempool \
  --header 'Authorization: Bearer <token>'
{
  "count": 123,
  "vsize": 123,
  "totalFee": 123,
  "feeHistogram": [
    {
      "feerate": 123,
      "vsize": 123
    }
  ]
}

Authorizations

Authorization
string
header
required

JWT Token Authentication

Query Parameters

network
enum<string>
Available options:
CARDANO_MAINNET,
CARDANO_PREPROD,
CARDANO_PREVIEW,
APEX_PRIME_MAINNET,
APEX_VECTOR_MAINNET,
APEX_VECTOR_TESTNET,
MIDNIGHT_MAINNET,
MIDNIGHT_PREPROD,
MIDNIGHT_PREVIEW,
BITCOIN_MAINNET,
BITCOIN_TESTNET4

Response

200 - */*

OK

count
integer<int64>
vsize
integer<int64>
totalFee
integer<int64>
feeHistogram
object[]