Naar de inhoud
GET /v1/rank

Rank contracts by a metric

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

Voorbeeldrespons

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

{
    "data": {
        "count": 10,
        "order": "desc",
        "metric": "funding_rate",
        "ranking": [
            {
                "value": 0.00454155,
                "symbol": "MBOXUSDT",
                "position": 1,
                "last_price": 0.005841,
                "mark_price": 0.005832,
                "volume_24h": 188003894,
                "index_price": 0.005814,
                "funding_rate": 0.00454155,
                "turnover_24h": 1305869.9614,
                "open_interest": 51999282,
                "funding_rate_pct": 0.454155,
                "next_funding_time": "2026-06-09T04:00:00.000Z",
                "open_interest_value": 303259.81,
                "price_change_24h_pct": -16.5,
                "funding_rate_annualized_pct": 497.3
            },
            {
                "value": 0.00327489,
                "symbol": "1000BTTUSDT",
                "position": 2,
                "last_price": 0.0002683,
                "mark_price": 0.000265,
                "volume_24h": 725937000,
                "index_price": 0.0002636,
                "funding_rate": 0.00327489,
                "turnover_24h": 197037.6889,
                "open_interest": 1575558400,
                "funding_rate_pct": 0.327489,
                "next_funding_time": "2026-06-09T08:00:00.000Z",
                "open_interest_value": 417522.98,
                "price_change_24h_pct": -1.58,
                "funding_rate_annualized_pct": 358.6
            },
            {
                "value": 0.00248941,
                "symbol": "SAMSUNGUSDT",
                "position": 3,
                "last_price": 203.21,
                "mark_price": 202.99,
                "volume_24h": 3250.86,
                "index_price": 202.18,
                "funding_rate": 0.00248941,
                "turnover_24h": 663142.295,
                "open_interest": 2585.26,
                "funding_rate_pct": 0.248941,
                "next_funding_time": "2026-06-09T08:00:00.000Z",
                "open_interest_value": 524781.93,
                "price_change_24h_pct": -0.38,
                "funding_rate_annualized_pct": 272.59
            },
            {
                "value": 0.00199466,
                "symbol": "ESPORTSUSDT",
                "position": 4,
                "last_price": 0.0719,
                "mark_price": 0.07161,
                "volume_24h": 894096890,
                "index_price": 0.07144,
                "funding_rate": 0.00199466,
                "turnover_24h": 67046219.0022,
                "open_interest": 58599861,
                "funding_rate_pct": 0.199466,
                "next_funding_time": "2026-06-09T04:00:00.000Z",
                "open_interest_value": 4196336.05,
                "price_change_24h_pct": -14.55,
                "funding_rate_annualized_pct": 218.42
            },
            {
                "value": 0.00182276,
                "symbol": "BEATUSDT",
                "position": 
…