/v1/funding
Funding rates for an asset across all exchanges
Δοκιμάστε το ζωντανά
10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.
Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.
Λάβετε ένα κλειδί APIΑποσπάσματα κώδικα
curl "https://api.oanor.com/cryptoderivatives-api/v1/funding" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/cryptoderivatives-api/v1/funding", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/cryptoderivatives-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/cryptoderivatives-api/v1/funding",
headers={"x-oanor-key": "oanor_test_..."}
)
Παράδειγμα απόκρισης
Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.
{
"data": {
"base": "BTC",
"source": "CoinGecko derivatives",
"markets": [
{
"price": 66484.2,
"symbol": "BTCUSDT",
"exchange": "Binance (Futures)",
"funding_rate_pct": -0.003766999999999999,
"open_interest_usd": 6903645124
},
{
"price": 66493.1,
"symbol": "BTC_USDT",
"exchange": "MEXC (Futures)",
"funding_rate_pct": -0.0037,
"open_interest_usd": 4646087704
},
{
"price": 66464,
"symbol": "BTC_USDT",
"exchange": "Gate (Futures)",
"funding_rate_pct": 0.0023,
"open_interest_usd": 4316944497
},
{
"price": 66534.8,
"symbol": "BTCUSDT",
"exchange": "Bybit (Futures)",
"funding_rate_pct": 0.004748,
"open_interest_usd": 3515616659
},
{
"price": 66508.24,
"symbol": "BTC/USDT",
"exchange": "CoinW (Futures)",
"funding_rate_pct": -0.002166,
"open_interest_usd": 3427738546
},
{
"price": 66530.03,
"symbol": "BTC-USDT",
"exchange": "WEEX (Futures)",
"funding_rate_pct": 6.19e-6,
"open_interest_usd": 3340312530
},
{
"price": 66578.92,
"symbol": "BTC-SWAP-USDT",
"exchange": "Toobit Futures",
"funding_rate_pct": -0.00429496752737,
"open_interest_usd": 2924566802
},
{
"price": 66615.5,
"symbol": "BTC-PERPUSDC",
"exchange": "BYDFi (Futures)",
"funding_rate_pct": 0.01,
"open_interest_usd": 2232589935
},
{
"price": 66471,
"symbol": "BTCUSDT_UMCBL",
"exchange": "Bitget Futures",
"funding_rate_pct": -0.0059,
"open_interest_usd": 2210718577
},
{
"price": 66974.69,
"symbol": "BTC-USDT",
"exchange": "HTX Futures",
"funding_rate_pct": -0.0056430788062335,
"open_interest_usd": 2154768920
},
{
"price": 66560,
"symbol": "BTC-USD",
"exchange": "Hyperliquid (Futures)",
"funding_rate_pct": -8.788e-5,
"open_interest_usd": 2123915724
},
{
"price": 66485.9,
"symbol": "BTC-USDT-SWAP",
"exchange": "OKX (Futures)",
"funding_rate_pct": -0.00429496752737,
…