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
Example Requests
curl -H 'Authorization: Bearer <API_TOKEN>' \
https://api.sfox.com/v1/post-trade-settlement/interestconst 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