/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/cryptomomentum-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/cryptomomentum-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/cryptomomentum-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/cryptomomentum-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"note": "symbol is a Binance pair (BTCUSDT) or coin=BTC"e=USDT. Horizons are fixed at 1h/4h/24h/7d/30d. screener takes coins=BTC,ETH,... (default liquid 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, hourly, live)",
"service": "cryptomomentum-api",
"endpoints": {
"GET /v1/meta": "This document.",
"GET /v1/symbols": "Tradable Binance pairs, optionally filtered by quote (quote=USDT).",
"GET /v1/momentum": "One coin's change across 1h/4h/24h/7d/30d with alignment score and bias (symbol=BTCUSDT).",
"GET /v1/screener": "Rank a basket by multi-timeframe alignment — strongest up/down trends (coins=BTC,ETH,SOL)."
},
"description": "Crypto multi-timeframe momentum — whether a coin trends the same way across 1h/4h/24h/7d/30d, computed live from Binance candles (no key, nothing stored). momentum returns one coin's percent change over each horizon, the per-timeframe direction, an alignment score (-1 fully bearish to +1 fully bullish) and a bias label. screener scans a basket and ranks coins by aligned momentum, surfacing the strongest coherent uptrends and downtrends. symbols lists tradable pairs. The multi-timeframe momentum / trend-alignment cut for crypto — distinct from single-window movers, the Donchian breakout screener, the FX-pivot and generic indicator-calculator APIs.",
"trading_symbols": 1363,
"upstream_status": "ok"
},
"meta": {
"timestamp": "2026-06-12T10:35:44.860Z",
"request_id": "f59f7973-b2c8-4c6a-a01a-ddda3756a3b5"
},
"status": "ok",
"message": "Meta",
"success": true
}