For the complete documentation index, see llms.txt. This page is also available as Markdown.

Get All Funding Rates

GET 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

200
{
    "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
    }
}

Example Requests

curl -H 'Authorization: Bearer <API_TOKEN>' \
https://api.sfox.com/v1/post-trade-settlement/interest
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)
});
import requests

data = requests.get(
  "https://api.sfox.com/v1/post-trade-settlement/interest",
  headers={
    "Authorization": "Bearer <API_KEY>",
  }
)
print(data)

Last updated