Transaction

Get Mempool Transaction

post

Returns the payload of a transaction currently in the mempool

Body
networkstringRequired

The logical name of the network

Example: {{network}}
payload_hashesstring[]Required

A list of payload hashes to attempt to read. Each hash must be either hex, or in Bech32m format.

Responses
200
Mempool Transaction Response
application/json
post
POST /mempool/transaction HTTP/1.1
Host: xrd.nownodes.io
Content-Type: application/json
Accept: */*
Content-Length: 51

{
  "network": "{{network}}",
  "payload_hashes": [
    "text"
  ]
}
{
  "count": 1,
  "payloads": [
    {
      "hash": "text",
      "hash_bech32m": "text",
      "hex": "text",
      "error": "text"
    }
  ]
}