Zum Inhalt springen
GET /v1/vwap

Session VWAP + cumulative curve

Live testen

10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.

Eigene Header (optional)
api.oanor.com/vwap-api

Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.

API-Key holen

Code-Snippets

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

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.

{
    "data": {
        "vwap": 102,
        "source": "VWAP",
        "candles": 3,
        "position": "above_vwap",
        "deviation": 1,
        "last_price": 103,
        "total_volume": 6000,
        "deviation_pct": 0.9804,
        "cumulative_vwap": [
            100,
            101.33333333,
            102
        ]
    },
    "meta": {
        "timestamp": "2026-06-11T07:49:29.008Z",
        "request_id": "bed0b933-4c15-406d-b56d-52387a9fa164"
    },
    "status": "ok",
    "message": "VWAP computed",
    "success": true
}