/v1/meta
Spec
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/fundingarbitrage-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/fundingarbitrage-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/fundingarbitrage-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/fundingarbitrage-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"note": "coin is a base (BTC, ETH). Funding is per interval (most venues every 8h); annualised assumes 3 settlements/day. screener takes coins=BTC,ETH,... (default majors, max 25). Read fresh per call, nothing cached.",
"source": "Binance, Bybit, OKX, Gate.io public perpetual endpoints, live",
"service": "fundingarbitrage-api",
"endpoints": {
"GET /v1/meta": "This document.",
"GET /v1/funding": "Funding rate across four exchanges with the arbitrage spread (coin=BTC).",
"GET /v1/screener": "Rank a basket by cross-exchange funding spread (coins=BTC,ETH,SOL)."
},
"exchanges": [
"binance",
"bybit",
"okx",
"gate"
],
"description": "Crypto funding-rate arbitrage — the perpetual funding rate for a coin across Binance, Bybit, OKX and Gate.io, and the spread between them, computed live from each venue's public API (no key, nothing stored). funding returns per-venue funding (per interval and annualised), the venue paying the most, the one charging the most and the cross-exchange spread. screener ranks a basket by the size of that spread. The cross-exchange funding / basis-arbitrage cut — distinct from the single-exchange funding-rates feed, the spot-versus-perp basis and the price APIs.",
"upstream_status": "ok",
"btc_venues_listed": 4
},
"meta": {
"timestamp": "2026-06-12T10:35:35.960Z",
"request_id": "b10fdc77-e8ac-41ec-9a78-4792341a591d"
},
"status": "ok",
"message": "Meta",
"success": true
}