Zum Inhalt springen
GET /v1/funding

Perp mark price, funding rate & open interest

Live testen

10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.

Eigene Header (optional)
api.oanor.com/backpack-api

Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.

API-Key holen

Code-Snippets

curl "https://api.oanor.com/backpack-api/v1/funding" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/backpack-api/v1/funding", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/backpack-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/backpack-api/v1/funding",
    headers={"x-oanor-key": "oanor_test_..."}
)

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.

{
    "data": {
        "note": "Perpetual-futures funding for one Backpack perp market — the mark price, index price, current funding rate, next funding time and open interest. Pass symbol (a perp, e.g. SOL_USDC_PERP; a _PERP suffix is added if omitted).",
        "source": "Backpack",
        "symbol": "SOL_USDC_PERP",
        "mark_price": 67.49,
        "index_price": 67.52583831,
        "funding_rate": -7.899852273856142e-6,
        "open_interest": 234808.32,
        "next_funding_timestamp": 1781460000000,
        "open_interest_timestamp": 1781456615786
    },
    "meta": {
        "timestamp": "2026-06-14T17:03:35.906Z",
        "request_id": "bde60d0d-b449-4549-86ad-939ba85fa9b7"
    },
    "status": "ok",
    "message": "Funding retrieved successfully",
    "success": true
}