Skip to main content

Documentation Index

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

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

Per-symbol funding rate comparison across major exchanges. Reports the last observed funding rate and 1-day / 7-day / 30-day averages for each venue. Weight: 2

Request

{
  "type": "fundingComparison",
  "symbol": "PERP_BTC_USDC"
}
FieldTypeRequiredDefaultNotes
symbolstringNonullOmit → returns all symbols

Response

FieldTypeNotes
next_funding_timeint64ms epoch
exchanges[].namestringVenue identifier (e.g. binance, bybit, orderly)
exchanges[].laststringLast observed funding rate
exchanges[].1d / .7d / .30dstringRolling-window averages

Notes

  • 60s per-symbol cache, bounded at 256 entries
  • No pagination
{
  "success": true,
  "data": {
    "rows": [
      {
        "symbol": "PERP_BTC_USDC",
        "next_funding_time": 1716220800000,
        "exchanges": [
          {
            "name": "binance",
            "last": "0.00012",
            "1d": "0.00011",
            "7d": "0.00010",
            "30d": "0.00009"
          },
          {
            "name": "orderly",
            "last": "0.00010",
            "1d": "0.00009",
            "7d": "0.00008",
            "30d": "0.00007"
          }
        ]
      }
    ]
  },
  "ts": 1779269143700
}