Aller au contenu
GET /v1/meta

Service metadata

Essayez-le en direct

10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.

En-têtes personnalisés (facultatif)
api.oanor.com/fundingrates-api

Ça marche. Récupérez une clé API et utilisez-la dans votre projet.

Obtenez une clé API

Extraits de code

curl "https://api.oanor.com/fundingrates-api/v1/meta" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/fundingrates-api/v1/meta", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/fundingrates-api/v1/meta");
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/meta",
    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": {
        "source": "Bybit v5 linear tickers (live)",
        "service": "fundingrates-api",
        "endpoints": {
            "GET /v1/list": "List all perpetuals by turnover (limit, offset).",
            "GET /v1/meta": "This document.",
            "GET /v1/rank": "Rank contracts by metric (by=funding_rate|open_interest|turnover|volume|price_change, order, limit).",
            "GET /v1/search": "Search contracts by symbol (q=ETH).",
            "GET /v1/funding": "Funding + derivatives data by symbol (symbol=BTCUSDT) or base coin (base=BTC)."
        },
        "description": "Live crypto perpetual funding rates and derivatives data from Bybit v5 (USDT perpetuals): symbol, last/mark/index price, funding rate (per interval, % and annualised), next funding time, open interest, 24h volume/turnover and price change. Look up by symbol or base coin, rank by funding/OI/turnover/price move, or search. Live, no key.",
        "contracts_live": 688,
        "rankable_metrics": [
            "funding_rate",
            "open_interest",
            "turnover",
            "volume",
            "price_change"
        ],
        "funding_interval_hours": 8
    },
    "meta": {
        "timestamp": "2026-06-09T03:03:47.189Z",
        "request_id": "73bb8ab4-9960-49ac-b8a8-f8ae07f2159c"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}