/v1/funding
Funding-rate history 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/apex-api/v1/funding" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/apex-api/v1/funding", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/apex-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/apex-api/v1/funding",
headers={"x-oanor-key": "oanor_test_..."}
)
Voorbeeldrespons
Een echte respons van dit endpoint, vastgelegd bij de laatste health check.
{
"data": {
"count": 10,
"symbol": "BTC-USDT",
"funding": [
{
"rate": -8.54e-6,
"price": 65909.2,
"funding_time": 1781521200000
},
{
"rate": -5.81e-6,
"price": 65597.5,
"funding_time": 1781517600000
},
{
"rate": 1.15e-6,
"price": 65663.49,
"funding_time": 1781514000000
},
{
"rate": -1.36e-6,
"price": 65672.77,
"funding_time": 1781510400000
},
{
"rate": -1.342e-5,
"price": 65814.49,
"funding_time": 1781506800000
},
{
"rate": -1.097e-5,
"price": 65861.95,
"funding_time": 1781503200000
},
{
"rate": -2.167e-5,
"price": 65646.8,
"funding_time": 1781499600000
},
{
"rate": -7.33e-6,
"price": 65904.22,
"funding_time": 1781496000000
},
{
"rate": -7.43e-6,
"price": 65456.05,
"funding_time": 1781492400000
},
{
"rate": -8.75e-6,
"price": 65500.73,
"funding_time": 1781488800000
}
]
},
"meta": {
"timestamp": "2026-06-15T11:15:58.215Z",
"request_id": "8d1f8e82-2698-4a95-abc2-6f0b59cdeae6"
},
"status": "ok",
"message": "Funding retrieved successfully",
"success": true
}