Get Fees
GET https://api.sfox.com/v1/account/fee-rates
Retrieve your account's current trading fee rates and trailing 14-day notional volume.
Response your account's current taker fee rates, maker fee rate for trades in the sFOX Ox and Dark Pool order books, and your trailing 14-day notional trading volume used to determine your rates.
Response Body
Field
Description
volume
Your 14-day trailing volume in USD
makerRate
Your maker fee rate for trades executed as a maker in the Ox and Dark Pool order books
nprRate
Your taker fee rate when trading with routing type = NetPrice (NPR)
nprOffRate
Your taker fee rate when trading with routing type = Smart (NPR-Off)
Responses
Example Requests
curl -H 'Authorization: Bearer <API_TOKEN>' \
-H 'Content-Type: application/json' \
-X GET \
'https://api.sfox.com/v1/account/fee-rates'const axios = require('axios');
axios({
method: 'get',
url: 'https://api.sfox.com/v1/account/fee-rates',
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/account/fee-rates",
headers={
"Authorization": "Bearer <API_KEY>",
}
)
print(data)Last updated