GetShuffling
Retrieves shuffling details by transaction full hash.
Request
GET /nxt?requestType=getShuffling
All endpoints use port 22024 by default.
Parameters
| Name | Type | Description | Required |
|---|---|---|---|
shufflingFullHash | string | Shuffling transaction full hash | Yes |
includeHoldingInfo | boolean | Include holding information | No |
Response
{
"shufflingFullHash": "abc123...",
"holding": "1234567890123456789",
"holdingType": 1,
"amount": 100000000,
"participantCount": 3,
"registrationPeriod": 1440,
"stage": "REGISTRATION",
"assigneeAccount": "1234567890123456789",
"assigneeAccountRS": "SHAMWARI-ABCD-EFGH-IJKL-MNOPQ",
"errorCode": 0,
"errorDescription": ""
}
Example
curl "http://localhost:22024/nxt?requestType=getShuffling&shufflingFullHash=abc123..."