Check if Wallet Exists
GET/admin/wallets/exists/:walletAddress
Check if the given walletAddress exists
Request
Path Parameters
walletAddress stringrequired
Example: 0x11Dd9c1293561044888F4edd96C9A372E6Eb7Cf9
Query Parameters
apiKey string
(Required) You Public API key
Example: {{publicKey}}
Header Parameters
API-SECRET string
(Required) You Secret API key
Example: {{secretKey}}
Content-Type string
Example: application/json
Accept string
Example: application/json
Responses
- 200
 
OK
- application/json
 
- Schema
 - Example (from schema)
 - example-0
 - example-1
 
Schema
object
{}
Wallet exists
{
  "data": true
}
Wallet does not exist
{
  "data": false
}
Loading...