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 Unspent Transaction (TX) Outputs

GET
/getutxos/checkmempool/{txHash}-{txOutput}.{format}
memory-pool
Last modified:2024-05-27 22:00:31
Only supports JSON as output format.

Request

Path Params
txHash
string 
required
The transaction hash
txOutput
string 
required
The transaction output
format
enum<string> 
required
The expected format
Allowed values:
jsonbinhex
Default:
json

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 '/getutxos/checkmempool/-.'

Responses

🟢200successful operation
text/plain
Body
chainHeight
integer 
optional
chaintipHash
string 
optional
bitmap
string 
optional
utxos
array[object (UTxO) {4}] 
optional
txvers
integer 
optional
height
integer 
optional
value
number <float>
optional
scriptPubKey
object (ScriptPubKey) 
optional
Previous
Returns headers.
Built with