/v1/funding
A currency funding/lending market
Essayez-le en direct
10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.
Ça marche. Récupérez une clé API et utilisez-la dans votre projet.
Obtenez une clé APIExtraits de code
curl "https://api.oanor.com/bitfinex-api/v1/funding" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/bitfinex-api/v1/funding", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/bitfinex-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/bitfinex-api/v1/funding",
headers={"x-oanor-key": "oanor_test_..."}
)
Exemple de réponse
Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.
{
"data": {
"low": 1.8e-6,
"high": 0.00038701,
"note": "rates are per day; *_apr = daily rate x 365",
"source": "Bitfinex",
"symbol": "fUSD",
"volume": 865945794.2493058,
"ask_apr": 3.4458,
"bid_apr": 11,
"ask_size": 4321671.11759634,
"bid_size": 21056063.31726966,
"currency": "USD",
"ask_rate_daily": 9.440547945205479e-5,
"bid_rate_daily": 0.00030136986301369865,
"ask_period_days": 2,
"bid_period_days": 120,
"last_rate_daily": 9.54e-5,
"frr_amount_available": 15484826.52872688,
"flash_return_rate_apr": 14.1496,
"flash_return_rate_daily": 0.00038766027397260275
},
"meta": {
"timestamp": "2026-06-09T11:38:06.464Z",
"request_id": "708df7f8-2783-4d91-a4de-08e2eea54f2d"
},
"status": "ok",
"message": "Funding market retrieved successfully",
"success": true
}