# Get All Funding Rates

<mark style="color:green;">**`GET`**</mark> `https://api.sfox.com/v1/post-trade-settlement/interest`

Retrieve the current PTS funding rates and terms per currency.

### Response Body

| Key                                 | Description                                                                                                  |
| ----------------------------------- | ------------------------------------------------------------------------------------------------------------ |
| **`interest_rate`**                 | Annualized interest rate as decimal (i.e. `0.02` = 2%)                                                       |
| **`interest_grace_period_minutes`** | The amount of time in minutes after a position has been opened that interest will not accrue to the position |
| **`interest_frequency_minutes`**    | The frequency in minutes at which a position will accrue interest after the grace period has ended           |

### Responses

<details>

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

```json
{
    "usd": {
        "interest_rate":0.02,
        "interest_frequency_minutes":60,
        "interest_grace_period_minutes":1440
    },
    "btc": {
        "interest_rate":0.03,
        "interest_frequency_minutes":60,
        "interest_grace_period_minutes":1440
    }
}
```

</details>

### Example Requests

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

```bash
curl -H 'Authorization: Bearer <API_TOKEN>' \
https://api.sfox.com/v1/post-trade-settlement/interest
```

{% endtab %}

{% tab title="NodeJS" %}

```javascript
const axios = require('axios');

axios({
  method: 'get',
  url: 'https://api.sfox.com/v1/post-trade-settlement/interest',
  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/post-trade-settlement/interest",
  headers={
    "Authorization": "Bearer <API_KEY>",
  }
)
print(data)
```

{% endtab %}
{% endtabs %}
