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

ParameterDescription

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

200
{ 
  "data": [ 
    { 
      "alias": "Satoshis Fund",
      "address": "1NLqQmwkGxxQmzS9uwtCGXxbxrcNW4FpYp",
      "currency_symbol": "btc",
      "date_created": "2021-09-15T15:12:13.000Z",
      "date_updated": "2021-09-15T15:12:13.000Z",
      "status":"Pending"
    }
  ]
}

Example Requests

curl -H 'Authorization: Bearer <API_TOKEN>' \
'https://api.sfox.com/v1/whitelisted-addresses'

Last updated