Naar de inhoud
GET /v1/meta

Spec

Probeer het live

10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.

Aangepaste headers (optioneel)
api.oanor.com/cryptorsi-api

Het werkt. Haal een API-key op en gebruik hem in je project.

Verkrijg een API-sleutel

Codefragmenten

curl "https://api.oanor.com/cryptorsi-api/v1/meta" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/cryptorsi-api/v1/meta", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/cryptorsi-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/cryptorsi-api/v1/meta",
    headers={"x-oanor-key": "oanor_test_..."}
)

Voorbeeldrespons

Een echte respons van dit endpoint, vastgelegd bij de laatste health check.

{
    "data": {
        "note": "symbol is a Binance pair (BTCUSDT) or coin=BTC&quote=USDT. interval is 1h/4h/1d/1w (default 1d). RSI is Wilder's 14-period; Stochastic is 14,3. screener takes coins=BTC,ETH,... (default majors, max 25). Read fresh per call; only the tradable-symbol list is cached hourly.",
        "source": "Binance public REST (api.binance.com/api/v3/klines, live)",
        "service": "cryptorsi-api",
        "endpoints": {
            "GET /v1/meta": "This document.",
            "GET /v1/symbols": "Tradable Binance pairs, optionally filtered by quote (quote=USDT).",
            "GET /v1/screener": "Scan a basket for overbought and oversold coins (coins=BTC,ETH,SOL, interval=1d).",
            "GET /v1/oscillators": "A pair's RSI(14), Stochastic and overbought/oversold signal (symbol=BTCUSDT, interval=1d)."
        },
        "description": "Crypto RSI & oscillator screener — which coins are overbought or oversold now, computed live from Binance candles (no key, nothing stored). oscillators returns a pair's Wilder RSI(14), the Stochastic %K/%D and an overbought/oversold/neutral signal on a chosen timeframe. screener scans a basket and surfaces the overbought (pullback candidates) and oversold (bounce candidates) coins, ranked by how stretched. symbols lists tradable pairs. The coin-native oscillator / mean-reversion screener cut — it fetches the live data itself, distinct from the generic oscillator calculators, the momentum trend-alignment, the Donchian breakout and candlestick-pattern APIs.",
        "trading_symbols": 1363,
        "upstream_status": "ok"
    },
    "meta": {
        "timestamp": "2026-06-12T10:35:40.405Z",
        "request_id": "185754f8-d489-44b2-a729-e2ecdba083fc"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}