Get Single Withdrawal Fee
Path Parameters
Name
Type
Description
Response Body
Key
Description
Responses
Example Requests
curl -H 'Authorization: Bearer <API_TOKEN>' \
-H 'Content-Type: application/json' \
-X GET \
'https://api.sfox.com/v1/withdraw-fee/btc'curl -H 'Authorization: Bearer <API_TOKEN>' \
-H 'Content-Type: application/json' \
-X GET \
'https://api.sfox.com/v1/withdraw-fee/usd?channel=international'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)
})Last updated