Naar de inhoud
GET /v1/levels

Key levels: POC, VAH, VAL, high-volume nodes

Probeer het live

10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.

Aangepaste headers (optioneel)
api.oanor.com/volumeprofile-api

Het werkt. Haal een API-key op en gebruik hem in je project.

Verkrijg een API-sleutel

Codefragmenten

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

Voorbeeldrespons

Een echte respons van dit endpoint, vastgelegd bij de laatste health check.

{
    "data": {
        "poc": 63110.2189,
        "note": "poc is the fair-value magnet; VAH/VAL bound the 70% value area; high_volume_nodes are the strongest support/resistance prices. position tells you where price sits relative to the value area.",
        "source": "Binance",
        "symbol": "BTCUSDT",
        "candles": 500,
        "interval": "1h",
        "position": "inside value area (balanced)",
        "last_close": 63723.63,
        "value_area_low": 59320.4009,
        "value_area_high": 72584.7639,
        "high_volume_nodes": [
            63110.2189,
            62731.2371,
            63489.2007,
            62352.2553,
            61594.2917
        ]
    },
    "meta": {
        "timestamp": "2026-06-12T10:35:49.668Z",
        "request_id": "d91b7096-fe6c-4271-bb15-dffaf70db2dc"
    },
    "status": "ok",
    "message": "Levels retrieved successfully",
    "success": true
}