List country codes
curl --request GET \
--url https://api.sand.etherfuse.com/lookup/country-codesconst options = {method: 'GET'};
fetch('https://api.sand.etherfuse.com/lookup/country-codes', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.sand.etherfuse.com/lookup/country-codes"
response = requests.get(url)
print(response.text)[
{
"code": "MX",
"code3": "MEX",
"name": "Mexico"
}
]Lookup API
List country codes
Returns supported countries with ISO 3166-1 alpha-2 codes, alpha-3 codes, and
English names. Use these codes for birthCountryIsoCode and countryIsoCode
when registering bank accounts.
Public — no API key required.
GET
/
lookup
/
country-codes
List country codes
curl --request GET \
--url https://api.sand.etherfuse.com/lookup/country-codesconst options = {method: 'GET'};
fetch('https://api.sand.etherfuse.com/lookup/country-codes', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.sand.etherfuse.com/lookup/country-codes"
response = requests.get(url)
print(response.text)[
{
"code": "MX",
"code3": "MEX",
"name": "Mexico"
}
]