Skip to main content

GetShufflers

Retrieves shufflers (accounts running shuffling processing) for a specific account or shuffling.

Request

GET /nxt?requestType=getShufflers

All endpoints use port 22024 by default.

Parameters

NameTypeDescriptionRequired
accountstringAccount ID or SHAMWARI addressNo
shufflingFullHashstringShuffling transaction full hashNo
secretPhrasestringSecret phrase for authenticationNo
includeParticipantStatebooleanInclude participant stateNo

Response

{
"shufflers": [
{
"account": "1234567890123456789",
"accountRS": "SHAMWARI-ABCD-EFGH-IJKL-MNOPQ",
"shufflingFullHash": "abc123...",
"feeRateQNTPerFXT": 100000,
"recipientAccount": "9876543210123456789",
"recipientAccountRS": "SHAMWARI-WXYZ-ABCD-EFGH-IJKLM",
"lastBlockHeight": 123456
}
],
"errorCode": 0,
"errorDescription": ""
}

Example

curl "http://localhost:22024/nxt?requestType=getShufflers&account=SHAMWARI-ABCD-EFGH-IJKL-MNOPQ"