/v1/funding
Funding + derivatives data for a contract
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode snippets
curl "https://api.oanor.com/fundingrates-api/v1/funding" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/fundingrates-api/v1/funding", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/fundingrates-api/v1/funding");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
"https://api.oanor.com/fundingrates-api/v1/funding",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"contract": {
"symbol": "BTCUSDT",
"last_price": 62800.6,
"mark_price": 62800.6,
"volume_24h": 85295.789,
"index_price": 62831.8,
"funding_rate": -5.56e-6,
"turnover_24h": 5400095478.3836,
"open_interest": 54721.884,
"funding_rate_pct": -0.000556,
"next_funding_time": "2026-06-09T08:00:00.000Z",
"open_interest_value": 3436567148.33,
"price_change_24h_pct": -0.31,
"funding_rate_annualized_pct": -0.61
}
},
"meta": {
"timestamp": "2026-06-09T03:03:45.644Z",
"request_id": "1e38ed5d-367e-492e-b7fb-496bc4b98d30"
},
"status": "ok",
"message": "Funding rate retrieved successfully",
"success": true
}