/v1/meta
Service metadata
Live testen
10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.
Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.
API-Key holenCode-Snippets
curl "https://api.oanor.com/cryptobasis-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/cryptobasis-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/cryptobasis-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/cryptobasis-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"source": "Bybit v5 spot + linear tickers (live)",
"service": "cryptobasis-api",
"endpoints": {
"GET /v1/meta": "This document.",
"GET /v1/scan": "Majors ranked by basis (add=PEPE,WIF to extend).",
"GET /v1/basis": "A coin's spot-perp basis, premium and funding (symbol=BTC).",
"GET /v1/symbols": "The majors covered by scan (any Bybit USDT spot+perp works)."
},
"description": "Live crypto spot-vs-perpetual basis and premium from Bybit v5: for any coin, the spot price, the perp last/mark/index price, the basis (absolute and percent), the mark-to-index premium, the market structure (contango/backwardation/flat) and the funding rate (per-8h and annualised). Get a coin's basis or scan the majors ranked by basis. Live, no key. Distinct from funding-rate, open-interest and price APIs — this is the spot-perp basis / cash-and-carry signal.",
"upstream_status": "ok"
},
"meta": {
"timestamp": "2026-06-09T03:02:07.782Z",
"request_id": "ccf97bf3-8bdc-43e8-8275-510879a57f68"
},
"status": "ok",
"message": "Meta",
"success": true
}