Naar de inhoud
GET /v1/funding

Latest funding rate with mark/oracle/index price

Probeer het live

10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.

Aangepaste headers (optioneel)
api.oanor.com/edgex-api

Het werkt. Haal een API-key op en gebruik hem in je project.

Verkrijg een API-sleutel

Codefragmenten

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_..."}
)

Voorbeeldrespons

Een echte respons van dit endpoint, vastgelegd bij de laatste 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
}