Vai al contenuto
GET /v1/asset

Full volume profile of one instrument

Provalo dal vivo

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

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

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

Ottieni una chiave API

Frammenti di codice

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

Risposta di esempio

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

{
    "data": {
        "name": "Nvidia",
        "note": "RVOL = today's volume / prior 20-day average volume (rvol_50 uses the 50-day). volume_percentile is where today's volume ranks in the window. dollar_volume = today's volume x close (notional liquidity). Read fresh per call, nothing cached.",
        "class": "stock",
        "reads": {
            "rvol": "normal volume",
            "trend": "20-day volume above 50-day — participation building"
        },
        "source": "Yahoo Finance",
        "symbol": "NVDA",
        "rvol_20": 0.88,
        "rvol_50": 0.97,
        "window_days": 90,
        "observations": 90,
        "today_volume": 157872000,
        "volume_trend": "rising",
        "avg_volume_20": 179067235,
        "avg_volume_50": 162349018,
        "dollar_volume": 32343235869,
        "volume_percentile": 32.2,
        "avg_dollar_volume_20": 38870693608
    },
    "meta": {
        "timestamp": "2026-06-12T10:34:40.445Z",
        "request_id": "e9ac8f65-2c49-4591-a876-7ea65cdc5d58"
    },
    "status": "ok",
    "message": "Asset volume profile retrieved successfully",
    "success": true
}