Create Deposit Address

POST https://api.sfox.com/v1/user/deposit/address/:currency

Create a new deposit address for the crypto asset of your specified in your request.

Path Parameters

NameTypeDescription

currency required

string

Create a deposit address for this currency e.g. eth

Response Body

KeyDescription

currency

Crypto asset

address

Crypto address to use for deposits

Responses

200
{
    "address":"<eth_address>",
    "currency":"eth"
}

Example Requests

curl -H 'Authorization: Bearer <API_TOKEN>' \
-X POST \
'https://api.sfox.com/v1/user/deposit/address/eth'

Last updated