v1

latestOpenAPI 3.0.32026-07-267278168.1 KB
Funding Rate

Get Funding Rates

Get an estimate of the current-interval funding rate in a given market, as well as when the next funding is and what premium index measurements make up the funding rate. For how funding is calculated and applied, see Funding rates.

get/v1/perps/funding_rates

Query parameters

marketstring required
Example:AAPL-USD.P

Market to query

Response

Current funding rate estimate

successboolean required

Whether the request was successful

errorstring

Error message, present only on failure

error_codestring

Semantic error code. See each endpoint's error responses for the specific codes it can return.

deprecatedstring

Deprecation notice, if applicable

Example response

{
  "success": true,
  "result": {
    "market": "AAPL-USD.P",
    "rate": "0.0000125",
    "intervalEnds": "2022-06-16T12:35:10.123456Z",
    "premiums": [
      {
        "time": "2022-06-16T12:00:00Z",
        "premiumIndex": "0.000025"
      }
    ]
  }
}