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

KeyDescription

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

Last updated