Get Single Withdrawal Fee

GET https://api.sfox.com/v1/withdraw-fee/:currency

Retrieve the withdrawal fee for a currency.

Query Parameters

NameTypeDescription

currency required

string

Retrieve the withdrawal fee for this currency.

Response Body

KeyDescription

fee

The withdrawal fee for this currency. Fee is the quantity of the currency.

Responses

200
{
      "fee": 0.001
}

Example Requests

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

Last updated