# Get Fees

<mark style="color:green;">**`GET`**</mark> `https://api.sfox.com/v1/account/fee-rates`

Retrieve your account's current trading fee rates and trailing 14-day notional volume.&#x20;

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

<table><thead><tr><th width="218.33333333333331">Field</th><th>Description</th></tr></thead><tbody><tr><td><strong><code>volume</code></strong></td><td>Your 14-day trailing volume in USD</td></tr><tr><td><strong><code>makerRate</code></strong></td><td>Your maker fee rate for trades executed as a maker in the Ox and Dark Pool order books</td></tr><tr><td><strong><code>nprRate</code></strong></td><td>Your taker fee rate when trading with routing type = <code>NetPrice</code> (NPR)</td></tr><tr><td><strong><code>nprOffRate</code></strong></td><td>Your taker fee rate when trading with routing type = <code>Smart</code> (NPR-Off)</td></tr></tbody></table>

### Responses

<details>

<summary><mark style="color:green;">200</mark></summary>

```json
{
    "volume": 2302868.809741,
    "makerRate": 0.00021,
    "nprRate": 0.00035,
    "nprOffRate": 0.00105
}
```

</details>

<details>

<summary><mark style="color:red;">401</mark>: Unauthorized</summary>

```json
{ 
    "error": "invalid token. check authorization header."
}
```

</details>

### Example Requests

{% tabs %}
{% tab title="Shell" %}

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

{% endtab %}

{% tab title="NodeJS" %}

```javascript
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)
});
```

{% endtab %}

{% tab title="Python" %}

```python
import requests

data = requests.get(
  "https://api.sfox.com/v1/account/fee-rates",
  headers={
    "Authorization": "Bearer <API_KEY>",
  }
)
print(data)
```

{% endtab %}
{% endtabs %}
