/v1/funding
Funding + derivatives data for a contract
Probeer het live
10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.
Het werkt. Haal een API-key op en gebruik hem in je project.
Verkrijg een API-sleutelCodefragmenten
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_..."}
)
Voorbeeldrespons
Een echte respons van dit endpoint, vastgelegd bij de laatste 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
}