Get Single Deposit by Hash
This endpoint supports querying the deposit records of sub-accounts created by a Broker (excluding main account of nd broker)
HTTP REQUEST
GET /api/v3/broker/nd/deposit/detail
Example
GET /api/v3/broker/nd/deposit/detail?hash=30bb0e0b***4156c5188
{
"data" : {
"chain" : "trx",
"hash" : "30bb0e0b***4156c5188",
"walletTxId" : "30bb0***610d1030f",
"uid" : 201496341,
"updatedAt" : 1713429174000,
"amount" : "8.5",
"memo" : "",
"fee" : "0.0",
"address" : "THLPzUrbd1o***vP7d",
"remark" : "Deposit",
"isInner" : false,
"currency" : "USDT",
"status" : "SUCCESS",
"createdAt" : 1713429173000
},
"code" : "200000"
}
REQUEST URL
This endpoint supports Broker URL
.
REQUEST RATE LIMIT
Broker Weight
: 1
PARAMETERS
Param | Type | Mandatory | Description |
---|---|---|---|
hash | String | Yes | Hash Value |
currency | String | Yes | Currency |
RESPONSES
Param | Description |
---|---|
success | Total Pages |
code | Current Page |
data | Return List |
uid | UID |
hash | Hash |
address | Address |
memo | Memo |
amount | Amount |
fee | Fee |
currency | Currency |
isInner | Is Internal (true or false) |
walletTxId | Wallet Transaction ID |
status | Status (SUCCESS, PROCESSING, FAILURE) |
chain | Chain |
createdAt | Creation Time (milliseconds) |
updatedAt | Update Time (milliseconds) |
remark | Remark |