POST
/
nps
/
address
/
verify
cURL
curl --request POST \
  --url https://apidev.nusd.me/nps/address/verify \
  --header 'Content-Type: application/json' \
  --data '
{
  "address": "0xdc2e6b357766aa4b66f41dc29598379ce7d61d46",
  "chain_id": "BSC_BNB"
}
'
{
  "status": 0,
  "data": {
    "is_valid": true,
    "address": "0xdc2e6b357766aa4b66f41dc29598379ce7d61d46"
  },
  "msg": "<string>"
}

Body

application/json
address
string
required

Address to verify.

Example:

"0xdc2e6b357766aa4b66f41dc29598379ce7d61d46"

chain_id
string
required

Chain to verify against.

Example:

"BSC_BNB"

Response

Request succeeded. Returns the verification result.

status
integer

Status code. 0 indicates success.

Example:

0

data
object

Address verification result.

msg
string

Error message. Present when status is non-zero.