/v1/vwap
Session VWAP + cumulative curve
Essayez-le en direct
10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.
Ça marche. Récupérez une clé API et utilisez-la dans votre projet.
Obtenez une clé APIExtraits de code
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_..."}
)
Exemple de réponse
Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.
{
"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
}