Vai al contenuto
GET /v1/momentum

One coin's multi-timeframe momentum & alignment

Provalo dal vivo

10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.

Intestazioni personalizzate (facoltative)
api.oanor.com/cryptomomentum-api

Funziona. Prendi una chiave API e usala nel tuo progetto.

Ottieni una chiave API

Frammenti di codice

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

Risposta di esempio

Una risposta reale di questo endpoint, acquisita dall'ultimo health check.

{
    "data": {
        "bias": "mixed / choppy",
        "coin": "BTC",
        "note": "changes are percent price moves over 1h/4h/24h/7d/30d. alignment_score runs -1 (every timeframe down) to +1 (every timeframe up); high magnitude = a strong coherent trend, near 0 = choppy.",
        "price": 63717.89,
        "source": "Binance",
        "symbol": "BTCUSDT",
        "changes": {
            "d1": 0.9,
            "d7": 1.89,
            "h1": -0.05,
            "h4": 1.17,
            "d30": -21.15
        },
        "horizons": [
            "1h",
            "4h",
            "24h",
            "7d",
            "30d"
        ],
        "timeframes_up": 3,
        "alignment_score": 0.2,
        "timeframes_down": 2
    },
    "meta": {
        "timestamp": "2026-06-12T10:35:44.310Z",
        "request_id": "2c16a963-1efb-47d2-95d6-5fe556a71f36"
    },
    "status": "ok",
    "message": "Momentum retrieved successfully",
    "success": true
}