Naar de inhoud
GET /v1/list

List all perpetuals

Probeer het live

10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.

Aangepaste headers (optioneel)
api.oanor.com/fundingrates-api

Het werkt. Haal een API-key op en gebruik hem in je project.

Verkrijg een API-sleutel

Codefragmenten

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

Voorbeeldrespons

Een echte respons van dit endpoint, vastgelegd bij de laatste health check.

{
    "data": {
        "count": 50,
        "total": 688,
        "contracts": [
            {
                "symbol": "BTCUSDT",
                "last_price": 62800.6,
                "mark_price": 62800.6,
                "volume_24h": 85295.793,
                "index_price": 62831.8,
                "funding_rate": -5.56e-6,
                "turnover_24h": 5400095729.586,
                "open_interest": 54721.884,
                "funding_rate_pct": -0.000556,
                "next_funding_time": "2026-06-09T08:00:00.000Z",
                "open_interest_value": 3436567148.33,
                "price_change_24h_pct": -0.31,
                "funding_rate_annualized_pct": -0.61
            },
            {
                "symbol": "ETHUSDT",
                "last_price": 1665.04,
                "mark_price": 1665.03,
                "volume_24h": 2249780.68,
                "index_price": 1666.05,
                "funding_rate": -0.0002355,
                "turnover_24h": 3777987088.3854,
                "open_interest": 905678.11,
                "funding_rate_pct": -0.02355,
                "next_funding_time": "2026-06-09T08:00:00.000Z",
                "open_interest_value": 1507981223.49,
                "price_change_24h_pct": -0.93,
                "funding_rate_annualized_pct": -25.79
            },
            {
                "symbol": "SOLUSDT",
                "last_price": 65.79,
                "mark_price": 65.798,
                "volume_24h": 10094251.9,
                "index_price": 65.844,
                "funding_rate": -0.00017889,
                "turnover_24h": 671975979.795,
                "open_interest": 8130878.4,
                "funding_rate_pct": -0.017889,
                "next_funding_time": "2026-06-09T08:00:00.000Z",
                "open_interest_value": 534995536.96,
                "price_change_24h_pct": -0.81,
                "funding_rate_annualized_pct": -19.59
            },
            {
                "symbol": "HYPEUSDT",
                "last_price": 62.187,
                "mark_price": 62.176,
                "volume_24h": 8618685.81,
                "index_price": 62.212,
                "funding_rate": 0.0001,
                "turnover_24h": 543864175.4486,
                "open_interest": 3418976.23,
                "funding_rate_pct": 0.01,
                "next_funding_time": "2026-06-09T08:00:00.000Z",
                "open_interest_value": 212578266.08,
                "price_change_24h_pct": 1.48,
                "funding_rate_annualized_pct": 10.95
            },
            {
                "symbol": "XRPUSDT",
                "last_price": 1.1515,
                "mark_price": 1.1515,
                "volume_24h": 283801915.4,
                "index_price": 1.1524,
                "funding_rate": -0.00021844,
                "turnover_24h": 329327098.1424,
                "open_interest": 175020388.9,
                "funding_rate_pct": -0.021844,
                "next_funding
…