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

Spec

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

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

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

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

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

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

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

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

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

{
    "data": {
        "note": "symbol is a Binance pair (BTCUSDT) or coin=BTC&quote=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
}