GetTransaction
Returns detailed information about a transaction.
Request
GET /nxt?requestType=getTransaction
Parameters
| Name | Type | Description |
|---|---|---|
transaction | string | Transaction ID (required) |
fullHash | string | Transaction full hash |
Response
{
"transaction": "1234567890123456789",
"fullHash": "abc123...",
"type": 0,
"subtype": 0,
"timestamp": 12345678,
"deadline": 1440,
"senderPublicKey": "abc123...",
"sender": "NXT-...",
"recipient": "NXT-...",
"amountFQT": "100000000",
"feeFQT": "100000000",
"height": 12345,
"block": "1234567890123456789",
"confirmations": 100,
"errorCode": 0,
"errorDescription": ""
}
Example
curl "http://localhost:22024/nxt?requestType=getTransaction&transaction=1234567890123456789"