List restricted countries
curl --request GET \
--url https://api.sand.etherfuse.com/lookup/restricted-countriesconst options = {method: 'GET'};
fetch('https://api.sand.etherfuse.com/lookup/restricted-countries', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.sand.etherfuse.com/lookup/restricted-countries"
response = requests.get(url)
print(response.text){
"countries": [
{
"code": "AF",
"name": "Afghanistan",
"kyc": true,
"kyb": true
}
]
}Lookup API
List restricted countries
Returns the countries that are effectively restricted for KYC or KYB based on external consensus and internal overrides. Each entry shows whether KYC, KYB, or both are blocked.
Public — no API key required.
GET
/
lookup
/
restricted-countries
List restricted countries
curl --request GET \
--url https://api.sand.etherfuse.com/lookup/restricted-countriesconst options = {method: 'GET'};
fetch('https://api.sand.etherfuse.com/lookup/restricted-countries', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.sand.etherfuse.com/lookup/restricted-countries"
response = requests.get(url)
print(response.text){
"countries": [
{
"code": "AF",
"name": "Afghanistan",
"kyc": true,
"kyb": true
}
]
}Response
200 - application/json
Restricted countries
Show child attributes
Show child attributes