Μετάβαση στο περιεχόμενο
GET /v1/meta

Spec

Δοκιμάστε το ζωντανά

10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.

Προσαρμοσμένες κεφαλίδες (προαιρετικά)
api.oanor.com/fundingarbitrage-api

Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.

Λάβετε ένα κλειδί API

Αποσπάσματα κώδικα

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_..."}
)

Παράδειγμα απόκρισης

Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.

{
    "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
}