Get Single Deposit Address

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

Retrieve your crypto deposit address(es) for a currency.

Path Parameters

Name
Type
Description

currency required

string

Specify the currency you want to retrieve deposit address(es) for.

Response Body

Key
Description

currency

Crypto asset

address

Crypto address to use for deposits

Responses

200
[
  {
    "address": "0x123456789",
    "currency": "eth"     
  }
]

Example Requests

curl -H 'Authorization: Bearer <API_TOKEN>' \ 
-H 'Content-Type: application/json' \
-X GET \
'https://api.sfox.com/v1/user/deposit/address/btc'

Last updated