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

Responses

200
{
    "volume": 2302868.809741,
    "makerRate": 0.00021,
    "nprRate": 0.00035,
    "nprOffRate": 0.00105
}
401: Unauthorized
{ 
    "error": "invalid token. check authorization header."
}

Example Requests

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

Last updated