Ir al contenido
GET /v1/meta

Spec

Pruébalo en vivo

10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.

Encabezados personalizados (opcional)
api.oanor.com/cryptobreakout-api

Funciona. Consigue una clave API y úsala en tu proyecto.

Obtener una clave API

Fragmentos de código

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

Respuesta de ejemplo

Una respuesta real de este endpoint, capturada en la última comprobación de estado.

{
    "data": {
        "note": "symbol is a Binance pair (BTCUSDT) or coin=BTC&quote=USDT. lookback is 5-200 days (default 20). screener takes coins=BTC,ETH,... (default liquid majors, max 25). Bands use the prior completed candles. Read fresh per call; only the tradable-symbol list is cached hourly.",
        "source": "Binance public REST (api.binance.com/api/v3/klines, daily, live)",
        "service": "cryptobreakout-api",
        "endpoints": {
            "GET /v1/meta": "This document.",
            "GET /v1/symbols": "Tradable Binance pairs, optionally filtered by quote (quote=USDT).",
            "GET /v1/breakout": "One pair's Donchian channel, position and breakout status (symbol=BTCUSDT, lookback=20).",
            "GET /v1/screener": "Scan a basket for new-high breakouts and new-low breakdowns (coins=BTC,ETH,SOL, lookback=20)."
        },
        "description": "Crypto Donchian breakout screener — which coins are breaking out of their recent range, computed live from Binance candles (no key, nothing stored). breakout returns one pair's N-day Donchian upper/lower bands, the current price, its position in the channel, the distance to each band and a status (new_high, new_low, near_high, near_low, inside). screener scans a basket and surfaces the coins breaking to new highs (momentum-long) and new lows (breakdowns), ranked. symbols lists tradable pairs. The range-breakout / Donchian-screener cut for crypto — distinct from the generic indicator calculators, the volume-profile, seasonality and order-flow APIs.",
        "trading_symbols": 1363,
        "upstream_status": "ok"
    },
    "meta": {
        "timestamp": "2026-06-12T10:35:47.031Z",
        "request_id": "bc32bb15-406f-4c5a-9e86-d57c1dcc48cd"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}