GetBinders
Retrieves binders for a specific account, beta chain, or all binders on the network.
Request
GET /nxt?requestType=getBinders
All endpoints use port 22024 by default.
Parameters
| Name | Type | Description | Required |
|---|---|---|---|
account | string | Account ID | No |
secretPhrase | string | Secret passphrase for account | No |
adminPassword | string | Admin password | No |
betaChain | string | Beta chain name | No |
Response
{
"binders": [
{
"account": "1234567890123456789",
"accountRS": "SHAMWARI-ABCD-EFGH-IJKL-MNOPQ",
"betaChain": "SHAMWARI_TEST",
"minRateQNTPerFXT": "100000000000",
"totalFeesLimitFQT": "50000000000000",
"overpayFQTPerFXT": "10000000000",
"feeCalculatorName": "standard",
"rules": [
{
"minRateQNTPerFXT": "100000000000",
"overpayFQTPerFXT": "10000000000",
"feeCalculatorName": "standard",
"filters": []
}
],
"nextUpdateTime": 1700000000
}
],
"errorCode": 0,
"errorDescription": ""
}
Example
curl "http://localhost:22024/nxt?requestType=getBinders&account=1234567890123456789"