Transaction
Returns the payload of a transaction currently in the mempool
Body
networkstringRequiredExample:
The logical name of the network
{{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
404
Not found error
application/json
500
Server error
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"
}
]
}