Zum Inhalt springen
GET /v1/funding

Historical funding-rate series

Live testen

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

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

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

API-Key holen

Code-Snippets

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

Beispiel-Response

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

{
    "data": {
        "count": 30,
        "source": "Bybit",
        "symbol": "BTCUSDT",
        "funding": [
            {
                "time": "2026-06-09T16:00:00.000Z",
                "symbol": "BTCUSDT",
                "funding_rate": 1.714e-5,
                "funding_rate_pct": 0.001714
            },
            {
                "time": "2026-06-09T08:00:00.000Z",
                "symbol": "BTCUSDT",
                "funding_rate": 3.712e-5,
                "funding_rate_pct": 0.003712
            },
            {
                "time": "2026-06-09T00:00:00.000Z",
                "symbol": "BTCUSDT",
                "funding_rate": 1.644e-5,
                "funding_rate_pct": 0.001644
            },
            {
                "time": "2026-06-08T16:00:00.000Z",
                "symbol": "BTCUSDT",
                "funding_rate": 3.697e-5,
                "funding_rate_pct": 0.003697
            },
            {
                "time": "2026-06-08T08:00:00.000Z",
                "symbol": "BTCUSDT",
                "funding_rate": 2.491e-5,
                "funding_rate_pct": 0.002491
            },
            {
                "time": "2026-06-08T00:00:00.000Z",
                "symbol": "BTCUSDT",
                "funding_rate": 8.39e-6,
                "funding_rate_pct": 0.000839
            },
            {
                "time": "2026-06-07T16:00:00.000Z",
                "symbol": "BTCUSDT",
                "funding_rate": 1.038e-5,
                "funding_rate_pct": 0.001038
            },
            {
                "time": "2026-06-07T08:00:00.000Z",
                "symbol": "BTCUSDT",
                "funding_rate": -1.916e-5,
                "funding_rate_pct": -0.001916
            },
            {
                "time": "2026-06-07T00:00:00.000Z",
                "symbol": "BTCUSDT",
                "funding_rate": -4.138e-5,
                "funding_rate_pct": -0.004138
            },
            {
                "time": "2026-06-06T16:00:00.000Z",
                "symbol": "BTCUSDT",
                "funding_rate": -4.06e-6,
                "funding_rate_pct": -0.000406
            },
            {
                "time": "2026-06-06T08:00:00.000Z",
                "symbol": "BTCUSDT",
                "funding_rate": 3.805e-5,
                "funding_rate_pct": 0.003805
            },
            {
                "time": "2026-06-06T00:00:00.000Z",
                "symbol": "BTCUSDT",
                "funding_rate": 2.774e-5,
                "funding_rate_pct": 0.002774
            },
            {
                "time": "2026-06-05T16:00:00.000Z",
                "symbol": "BTCUSDT",
                "funding_rate": -2.692e-5,
                "funding_rate_pct": -0.002692
            },
            {
                "time": "2026-06-05T08:00:00.000Z",
                "symbol": "BTCUSDT",
                "funding_rate": -3.588e-5,
                "funding_rate_pct": -0.003588
            },
        
…