Get Whitelisted Address List
GET
/open-api/v1/wallet/pageWhitelistThis method allows you to get a whitelisted address list.
API Key permission group : Enable Enquiry
Request
Query Params
pageLimit
integer
optional
Page limit, min: 1, max: 500
Example:
25
pageNo
integer
optional
Page number, min: 1
Example:
1
addressType
enum<integer>
optional
Address type, 1 (standard) or 2 (universal)
Allowed values:
12
Example:
1
address
string
optional
Blockchain address
label
string
optional
Custom label of address on system
symbol
string
optional
Coin symbol
Example:
ETH
network
string
optional
Network symbol
Example:
ETH
memo
string
optional
Address memo
whitelistId
string
optional
Whitelisted address id on system
startTime
integer
optional
Start time (timestamp in milliseconds)
Example:
1640995200000
endTime
integer
optional
End time (timestamp in milliseconds)
Example:
1640995200000
timestamp
integer
required
Current timestamp in millisecond
Example:
1640995200000
Request samples
Responses
OK(200)
HTTP Code: 200
Content Type : JSONapplication/json
Data Schema
data
object
required
data
array[object (WhitelistAddress) {14}]
required
totalPage
integer
required
pageNo
integer
required
pageLimit
integer
required
code
string
required
message
string
required
Example
{
"data": {
"data": [
{
"whitelistId": "123456789",
"symbol": "BTC",
"label": "Satoshi",
"address": "1A1zP1eP5QGefi2DMPTfTL5SLmv7DivfNa",
"memo": "",
"network": "BTC",
"protocol": "null",
"institutionId": "123456789",
"createTime": 1743436800000,
"updateTime": 1743436800000,
"currentAddressStatus": 30,
"addressStatus": null,
"addressType": 1,
"correspondentDetail": null
}
],
"totalPage": 1,
"pageNo": 1,
"pageLimit": 25
}
}
Last modified: 2 months ago