Skip to main content

funding_rate_history

Get historical funding rate data for perpetual futures. Useful for analyzing funding rate trends, identifying periods of extreme rates, and backtesting funding rate arbitrage strategies.

Usage hints:

  • Both exchange and symbol are required
  • Use from/to date filters for specific time ranges
  • Combine with cex_candle to correlate funding rates with price movements
  • High absolute funding rates often precede price reversals

REST endpoint

GET /api/v1/funding-rate/history — see REST reference.

Parameters

NameTypeRequiredDefaultDescriptionExample
exchangestringyesSpecifes exchange"..."
symbolstringyesSpecifies symbol"..."
pagestringno1Specifies page (default: 1)"1"
limitstringno1000Specifies limit (default: 1000)"1000"
fromstringnoSpecifies from"..."
tostringnoSpecifies to"..."
sortstringnoascSpecifies sort (asc, desc) (default: asc)"asc"

Example invocation

JSON-RPC tools/call payload:

{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "funding_rate_history",
"arguments": {
"exchange": "...",
"symbol": "...",
"page": "1",
"limit": "1000",
"sort": "asc"
}
}
}