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/cryptopatterns-api

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

Verkrijg een API-sleutel

Codefragmenten

curl "https://api.oanor.com/cryptopatterns-api/v1/meta" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/cryptopatterns-api/v1/meta", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/cryptopatterns-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/cryptopatterns-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). detect lookback is 1-30 candles (default 5). 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": "cryptopatterns-api",
        "patterns": [
            "doji",
            "hammer",
            "shooting_star",
            "bullish_engulfing",
            "bearish_engulfing",
            "bullish_marubozu",
            "bearish_marubozu",
            "morning_star",
            "evening_star"
        ],
        "endpoints": {
            "GET /v1/meta": "This document.",
            "GET /v1/detect": "Patterns on a pair's latest candles with bias & meaning (symbol=BTCUSDT, interval=1d, lookback=5).",
            "GET /v1/symbols": "Tradable Binance pairs, optionally filtered by quote (quote=USDT).",
            "GET /v1/screener": "Scan a basket for coins flashing a pattern on the latest candle (coins=BTC,ETH,SOL, interval=1d)."
        },
        "description": "Crypto candlestick pattern detector — which reversal/continuation patterns just printed on a coin and which coins are flashing one now, detected live from Binance candles (no key, nothing stored). detect returns the patterns found on a pair's latest candles (hammer, shooting star, engulfing, doji, marubozu, morning/evening star) with bias and meaning. screener scans a basket and surfaces coins whose most recent candle formed a bullish or bearish pattern. symbols lists tradable pairs. The coin-native candlestick-pattern screener cut — it fetches the live data itself, distinct from the generic pattern-recognition calculator, the Donchian breakout, momentum and volume-profile APIs.",
        "trading_symbols": 1363,
        "upstream_status": "ok"
    },
    "meta": {
        "timestamp": "2026-06-12T10:35:43.230Z",
        "request_id": "4a1da767-1026-4744-b195-91f9accb4be8"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}