Get Sub-Wallet Deposit Address
GET
/open-api/v1/subwallet/deposit/addressThis method allows you to get deposit address of the requested Sub Wallet ID, coinSymbol and network. (Only applicable to Sub Wallet Id)
API Key permission group : Enable Enquiry
Request
Query Params
coinSymbol
string
required
Coin Symbol (in capital letters); Required for Prime wallet; Not required for Qualified wallet
Example:
BUSD
network
string
required
Network symbol
Example:
ETH
timestamp
integer
required
Current Timestamp in millisecond
Example:
1640995200000
walletId
string
required
Sub Wallet id
Example:
1325589336357780500
Header Params
open-apikey
string
required
OpenAPI key string
signature
string
required
Signature of the request
Request samples
Responses
The operation succeeded(200)
Business error(200)
The client request is invalid(400)
Authentication failed (e.g., invalid token specified by the Authorization header)(401)
Authentication failed, but the operation is not allowed(403)
Requested resource does not exist(404)
Client request rate exceeded the limit(429)
System error(500)
The operation succeeded
HTTP Code: 200
Content Type : JSONapplication/json
Data Schema
data
optional
response data, maybe null
Any of
memo
string
optional
walletAddress
string
optional
code
string
required
'000000' indicates success, while any others indicate failure.
message
string
required
When the code is '000000' (success), it represents the details of the response. Otherwise, it represents the details of the error.
Example
{
"data": {
"walletAddress": "0x000000000344f30e2aa0cbd5ee9fa936da3573ec",
"memo": ""
},
"code": "000000",
"message": "Success"
}
Last modified: 5 months ago