Interchain API
  1. Memory Pool
Interchain API
Bitcoin
  • Overview
  • Bitcoin
  • Ethereum
  • Transaction
    • Get transaction by hash.
      GET
  • Block
    • Get block by hash.
      GET
    • Get block by hash.
      GET
  • Chain
    • Returns various state info regarding block chain processing.
      GET
  • Memory Pool
    • Returns various information about the TX mempool.
      GET
    • Returns transactions in the TX mempool.
      GET
    • Returns headers.
      GET
    • Returns Unspent Transaction (TX) Outputs
      GET
  1. Memory Pool

Returns various information about the TX mempool.

GET
/mempool/info.json
memory-pool
Last modified:2024-05-27 22:00:31
Only supports JSON as output format.

Request

None

Request samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/mempool/info.json'

Responses

🟢200successful operation
application/json
Body
size
integer <int64>
optional
the number of transactions in the TX mempool
bytes
integer <int64>
optional
size of the TX mempool in bytes
usage
integer <int64>
optional
total TX mempool memory usage
maxmempool
integer <int64>
optional
maximum memory usage for the mempool in bytes
mempoolminfee
number <float>
optional
minimum feerate (BTC per KB) for tx to be accepted
minrelaytxfee
number <float>
optional
Example
{
  "size": 0,
  "bytes": 0,
  "usage": 0,
  "maxmempool": 0,
  "mempoolminfee": 0,
  "minrelaytxfee": 0
}
Previous
Returns various state info regarding block chain processing.
Next
Returns transactions in the TX mempool.
Built with