Last updated 5 months ago
GET https://api.sfox.com/v1/withdraw-fee/:currency
GET
https://api.sfox.com/v1/withdraw-fee/:currency
Retrieve the withdrawal fee for a currency.
{ "fee": 0.001 }
curl -H 'Authorization: Bearer <API_TOKEN>' \ -H 'Content-Type: application/json' \ -X GET \ 'https://api.sfox.com/v1/withdraw-fee/btc'
const axios = require('axios'); axios({ method: 'get', url: 'https://api.sfox.com/v1/withdraw-fee/btc', headers: { 'Authorization': 'Bearer <API_KEY>' } }).then(response => { console.log(response) }).catch(err => { console.error(err) })
import requests data = requests.get( "https://api.sfox.com/v1/withdraw-fee/btc", headers={ "Authorization": "Bearer <API_KEY>", } ) print(data)
currency required
currency
string
Retrieve the withdrawal fee for this currency.
fee
number
The withdrawal fee for this currency. Fee is the quantity of the currency.