/v1/meta
Service metadata
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode snippets
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_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"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
}