Transaction

Fetch detailed information about a serialized transaction

Retrieves the transaction struct data for a given serialized transaction from the Nimiq RPC.

GET
/getRawTransactionInfo/{rawTx}
/getRawTransactionInfo/{rawTx}

Path Parameters

rawTx
Required
string

The serialized transaction string.

curl -X GET "https://test.nimiqhub.com/getRawTransactionInfo/string"

Transaction information retrieved successfully

{
  "data": {
    "hash": "string",
    "size": 0,
    "relatedAddresses": [
      "string"
    ],
    "from": "string",
    "fromType": 0,
    "to": "string",
    "toType": 0,
    "value": 0,
    "fee": 0,
    "senderData": "string",
    "recipientData": "string",
    "flags": 0,
    "validityStartHeight": 0,
    "proof": "string",
    "networkId": 0
  },
  "metadata": null
}