cURL
curl --request POST \
--url https://apidev.nusd.me/nps/address/verify \
--header 'Content-Type: application/json' \
--data '
{
"address": "0xdc2e6b357766aa4b66f41dc29598379ce7d61d46",
"chain_id": "BSC_BNB"
}
'import requests
url = "https://apidev.nusd.me/nps/address/verify"
payload = {
"address": "0xdc2e6b357766aa4b66f41dc29598379ce7d61d46",
"chain_id": "BSC_BNB"
}
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({address: '0xdc2e6b357766aa4b66f41dc29598379ce7d61d46', chain_id: 'BSC_BNB'})
};
fetch('https://apidev.nusd.me/nps/address/verify', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://apidev.nusd.me/nps/address/verify"
payload := strings.NewReader("{\n \"address\": \"0xdc2e6b357766aa4b66f41dc29598379ce7d61d46\",\n \"chain_id\": \"BSC_BNB\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://apidev.nusd.me/nps/address/verify")
.header("Content-Type", "application/json")
.body("{\n \"address\": \"0xdc2e6b357766aa4b66f41dc29598379ce7d61d46\",\n \"chain_id\": \"BSC_BNB\"\n}")
.asString();{
"status": 0,
"data": {
"is_valid": true,
"address": "0xdc2e6b357766aa4b66f41dc29598379ce7d61d46"
},
"msg": "<string>"
}{
"status": 0,
"data": {
"is_valid": true,
"address": "0xdc2e6b357766aa4b66f41dc29598379ce7d61d46"
},
"msg": "<string>"
}Basics
Address Verification
Verify the validity of a deposit address.
Note: Only EVM chains and TRON are currently supported.
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"
}
'import requests
url = "https://apidev.nusd.me/nps/address/verify"
payload = {
"address": "0xdc2e6b357766aa4b66f41dc29598379ce7d61d46",
"chain_id": "BSC_BNB"
}
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({address: '0xdc2e6b357766aa4b66f41dc29598379ce7d61d46', chain_id: 'BSC_BNB'})
};
fetch('https://apidev.nusd.me/nps/address/verify', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://apidev.nusd.me/nps/address/verify"
payload := strings.NewReader("{\n \"address\": \"0xdc2e6b357766aa4b66f41dc29598379ce7d61d46\",\n \"chain_id\": \"BSC_BNB\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://apidev.nusd.me/nps/address/verify")
.header("Content-Type", "application/json")
.body("{\n \"address\": \"0xdc2e6b357766aa4b66f41dc29598379ce7d61d46\",\n \"chain_id\": \"BSC_BNB\"\n}")
.asString();{
"status": 0,
"data": {
"is_valid": true,
"address": "0xdc2e6b357766aa4b66f41dc29598379ce7d61d46"
},
"msg": "<string>"
}{
"status": 0,
"data": {
"is_valid": true,
"address": "0xdc2e6b357766aa4b66f41dc29598379ce7d61d46"
},
"msg": "<string>"
}Body
application/json
⌘I