Skip to main content

Documentation Index

Fetch the complete documentation index at: https://staging-docs.orderly.network/llms.txt

Use this file to discover all available pages before exploring further.

Historical funding rates for a symbol. Rows are written at 8-hour epoch boundaries (00:00 / 08:00 / 16:00 UTC). Weight: 2

Request

{
  "type": "fundingRateHistory",
  "symbol": "PERP_BTC_USDC",
  "start_time": 1716100000000,
  "limit": 500
}
FieldTypeRequiredDefaultNotes
symbolstringYesTrading pair
start_timeint64Noms epoch
end_timeint64Noms epoch
limitintNo5001..5000
cursorstringNoOpaque cursor

Response

FieldTypeNotes
funding_ratestringPer-8h cycle decimal
mark_pricestringMark price snapped to the funding epoch
funding_rate_timestampint64Funding epoch (ms epoch UTC)

Notes

  • 30s cache
{
  "success": true,
  "data": {
    "rows": [
      {
        "funding_rate": "0.0001",
        "mark_price": "45678.90",
        "funding_rate_timestamp": 1716192000000
      }
    ],
    "next_cursor": null
  },
  "ts": 1779269143700
}