Skip to main content
GET
/
v1
/
perps
/
funding_rates
Get Funding Rates
curl --request GET \
  --url https://api.ondoperps.xyz/v1/perps/funding_rates \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "result": {
    "market": "AAPL-USD.P",
    "rate": "0.0000125",
    "intervalEnds": "2025-03-05T16:00:00Z",
    "premiums": [
      {
        "time": "2025-03-05T15:00:00Z",
        "premiumIndex": "0.000025"
      },
      {
        "time": "2025-03-05T15:30:00Z",
        "premiumIndex": "0.000015"
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

market
string
required

Market to query

Example:

"AAPL-USD.P"

Response

Current funding rate estimate

success
boolean
required

Whether the request was successful

Example:

true

error
string

Error message, present only on failure

Example:

""

error_code
string

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

deprecated
string

Deprecation notice, if applicable

Example:

""

result
object