/v1/funding
Historical funding-rate series
Provalo dal vivo
10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.
Funziona. Prendi una chiave API e usala nel tuo progetto.
Ottieni una chiave APIFrammenti di codice
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_..."}
)
Risposta di esempio
Una risposta reale di questo endpoint, acquisita dall'ultimo 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
},
…