- Introduction
- Get Started
- Signature
- What is WUSD
- Webhook Service
- Sandbox Environment
- Blockchain Confirmations
- Appendix
- API Keys
- Core Functionality
- Api Reference
- Authentication
- Wallet
- Address
- Remit Info
- Transaction
Get Whitelist Address
Developing
POST
/openapi/v1/wallet-address/whitelist/list
mainNet.
Request
Body Params text/plain
Example
Field | Type | Required | Max Length | Description |
---|---|---|---|---|
query | Object | Y | ||
mainNet | String | N | Not required, will retrieve all MainNet Type: ETHEREUM,POLYGON,VICTION |
Example:{
"query": {
}
}
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://wallet.test.wspn.io/openapi/v1/wallet-address/whitelist/list' \
--header 'Content-Type: text/plain' \
--data-raw '{
"query": {
}
}'
Responses
🟢200成功
application/json
Body
header
object
required
success
boolean
required
resultList
array [object {7}]
required
id
integer
required
address
string
required
label
string
required
mainNet
string
required
riskLevel
string
required
createdTime
string
required
lastUpdatedTime
string
required
Example
{
"header": {
"success": true
},
"resultList": [
{
"id": 1856,
"address": "0xDDDD40DD84D577254C2F9B9DC1498C339866ED1C",
"label": "gerry",
"mainNet": "POLYGON",
"riskLevel": "LOW_RISK",
"createdTime": "2025-01-03 11:19:31",
"lastUpdatedTime": "2025-01-03 11:19:31"
},
{
"id": 1857,
"address": "0xDDDD40DD84D577254C2F9B9DC1456C339866ED1C",
"label": "gerry",
"mainNet": "POLYGON",
"riskLevel": "LOW_RISK",
"createdTime": "2025-01-03 11:20:26",
"lastUpdatedTime": "2025-01-03 11:20:25"
},
{
"id": 1858,
"address": "0xDDDD40DD84D356254C2F9B9DC1456C339866ED1C",
"label": "gerry",
"mainNet": "POLYGON",
"riskLevel": "LOW_RISK",
"createdTime": "2025-01-03 11:21:13",
"lastUpdatedTime": "2025-01-03 11:21:13"
}
]
}