Skip to content
GET /v1/funding

A currency funding/lending market

Try it live

10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.

Custom headers (optional)
api.oanor.com/bitfinex-api

It works. Grab an API key and use it in your project.

Get an API key

Code snippets

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_..."}
)

Example response

A real response from this endpoint, captured by the latest health check.

{
    "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
}