Developer Portal

Funding RatesGET

Returns the live funding rate and next settlement for a perpetual symbol, scoped to the authenticated user's funding profile. Returns 404 if the symbol has no active funding rate or the account group has no funding profile.

View as Markdown
GET
/accounts/{account_id}/funding-rates/{symbol_id}

Authorization

AuthorizationRequiredBearer <token>

JWT token obtained from the login endpoint

In: header

Path Parameters

account_idRequiredstring

Account ID

symbol_idRequiredstring

Internal symbol ID

curl -X GET "http://localhost:8081/api/v1/accounts/<string>/funding-rates/<string>" \
  -H "Authorization: Bearer <token>"

Current funding rate

{
  "rate_percentage": "string",
  "debit_rate": "string",
  "credit_rate": "string",
  "projected_rate": "string",
  "quote_interval": "string",
  "next_payment_at": 0
}