/v1/funding
Latest funding rate with mark/oracle/index price
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/edgex-api/v1/funding" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/edgex-api/v1/funding", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/edgex-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/edgex-api/v1/funding",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"name": "BTCUSD",
"mark_price": 65951.95000059903,
"contract_id": "10000001",
"index_price": 65934.268332833,
"funding_rate": 5.0e-5,
"funding_time": "1781510400000",
"oracle_price": 65951.95000059903,
"funding_timestamp": "1781522100000"
},
"meta": {
"timestamp": "2026-06-15T11:15:59.647Z",
"request_id": "d9115afc-8b6d-424c-9207-ab1e48359cfb"
},
"status": "ok",
"message": "Funding retrieved successfully",
"success": true
}