Get Whitelisted Addresses
GET https://api.sfox.com/v1/whitelisted-addresses
Retrieve a list of the crypto withdrawal addresses you have whitelisted in your account.
Response Body
Parameter
Description
alias
Custom alias you have assigned to the address
address
Whitelisted withdraw address
currency_symbol
Currency that can be withdrawn to the address
date_created
ISO date string
date_updated
ISO date string
Responses
Example Requests
curl -H 'Authorization: Bearer <API_TOKEN>' \
'https://api.sfox.com/v1/whitelisted-addresses'const axios = require('axios');
axios({
method: 'get',
url: 'https://api.sfox.com/v1/whitelisted-addresses',
headers: {
'Authorization': 'Bearer <API_KEY>'
}
}).then(response => {
console.log(response)
}).catch(err => {
console.error(err)
});import requests
data = requests.get(
"https://api.sfox.com/v1/whitelisted-addresses",
headers={
"Authorization": "Bearer <API_KEY>",
}
)
print(data)Last updated