Withdraw From Account
POST
https://api.sfox.com/v1/user/withdraw
Initiate a withdrawal from your sFOX account to a crypto address or wire transfer to your linked bank account.
Body Parameters
Name
Type
Description
currency
required
string
The currency to withdraw
amount
required
number
The amount of the currency to withdraw
address
string
The crypto address to withdraw to. Required if currency
is NOT usd
isWire
boolean
Specify the bank withdrawal method. Possible values:
1
: Wire Transfer
0
: ACH Transfer (default)
Note, if isWire
is not sent in the JSON body, the sFOX system will default to ACH Transfer.
memo
string
Optional description/memo field
Responses
Example Requests
curl -H 'Authorization: Bearer <API_TOKEN>' \
-H 'Content-Type: application/json' \
-X POST \
--data '{"amount": 1, "currency": "eth", "address": "0x123456"}' \
'https://api.sfox.com/v1/user/withdraw'
Last updated