Get historical funding
This endpoint retrieves the historical funding for a particular symbol
GET /api/v1/funding_rate/historyQuery Parameters
Field
Type
Need
Description
Example
/api/v1/funding_rate/history?symbol=BTC&limit=20&cursor=11115hVkaResponse
{
"success": true,
"data": [
{
"oracle_price": "117170.410304",
"bid_impact_price": "117126",
"ask_impact_price": "117142",
"funding_rate": "0.0000125",
"next_funding_rate": "0.0000125",
"created_at": 1753806934249
},
...
],
"next_cursor": "11114Lz77",
"has_more": true
}
Field
Type
Description
Code Example (Python)
Last updated