Skip to main content
GET
/
api
/
v1
/
funding
/
current
Current Funding Rates
curl --request GET \
  --url https://api.example.com/api/v1/funding/current
Returns the most recent funding rate settlement for every tracked symbol. Funding rates are collected every 8 hours from Binance Futures and indicate the cost of holding long vs short positions.

Parameters

No parameters required.

Example Request

curl -X GET "https://krovn.io/api/v1/funding/current" \
  -H "X-API-Key: your_api_key"

Example Response

{
  "data": [
    {
      "symbol": "BTCUSDT",
      "rate": "0.00031200",
      "annualized": "34.16",
      "timestamp": "2026-03-21T08:00:00.000Z"
    },
    {
      "symbol": "ETHUSDT",
      "rate": "0.00012500",
      "annualized": "13.69",
      "timestamp": "2026-03-21T08:00:00.000Z"
    },
    {
      "symbol": "SOLUSDT",
      "rate": "-0.00021000",
      "annualized": "-23.00",
      "timestamp": "2026-03-21T08:00:00.000Z"
    }
  ]
}
Positive rates mean longs pay shorts (bullish sentiment). Negative rates mean shorts pay longs (bearish sentiment). Annualized values are calculated as rate * 3 * 365 * 100.