Portal Community

getInfo

Returns aggregate mempool statistics — no parameters beyond network.

FieldTypeRequiredDescription
networkselectNoDefaults to Bitcoin:DefaultNetwork.

Example response:

{
  "count": 84213,
  "vsizeBytes": 41250880,
  "totalFeeSats": 218400000
}
Response FieldMeaning
countNumber of unconfirmed transactions currently in the mempool.
vsizeBytesTotal virtual size of all mempool transactions.
totalFeeSatsSum of fees (satoshis) across all mempool transactions.

getTransactionIds

Returns the raw list of txids currently sitting unconfirmed in the mempool.

FieldTypeRequiredDescription
networkselectNoDefaults to Bitcoin:DefaultNetwork.

getRecent

Returns the most recently-added mempool transactions with more detail than a bare txid list.

FieldTypeRequiredDescription
networkselectNoDefaults to Bitcoin:DefaultNetwork.
Why check the mempool at all? A transaction can sit unconfirmed for minutes to hours depending on its fee rate relative to current network demand. Use mempool/getInfo alongside fee/getEstimates to judge whether a pending payment is likely to confirm soon, or address/getTransactionsMempool to watch a specific address for incoming unconfirmed payments.