/v1/quote
Live quote with daily price band
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode snippets
curl "https://api.oanor.com/hose-api/v1/quote" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/hose-api/v1/quote", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/hose-api/v1/quote");
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/hose-api/v1/quote",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"note": "The live quote for one or more Vietnamese stocks — last price plus the regulated daily price band (ceiling, floor and reference), open/high/low, average, change and volume each. Pass tickers (comma-separate up to 20, e.g. VIC,VNM,FPT). The ceiling/floor band is the ±7% daily limit on HOSE.",
"count": 3,
"quotes": [
{
"low": 0,
"high": 0,
"open": null,
"floor": 181.9,
"change": 0.5,
"ticker": "VIC",
"volume": 0,
"average": 0,
"ceiling": 209.1,
"reference": 195.5,
"last_price": 196,
"last_volume": 860,
"change_percent": 0.26
},
{
"low": 0,
"high": 0,
"open": null,
"floor": 54.9,
"change": 0.1,
"ticker": "VNM",
"volume": 0,
"average": 0,
"ceiling": 63.1,
"reference": 59,
"last_price": 59.1,
"last_volume": 2530,
"change_percent": 0.17
},
{
"low": 0,
"high": 0,
"open": null,
"floor": 68.4,
"change": 1.4,
"ticker": "FPT",
"volume": 0,
"average": 0,
"ceiling": 78.6,
"reference": 73.5,
"last_price": 74.9,
"last_volume": 12630,
"change_percent": 1.9
}
],
"source": "HOSE / Vietnam (VPS)"
},
"meta": {
"timestamp": "2026-06-15T02:10:49.266Z",
"request_id": "b055aa16-5359-4c69-a8e2-3840b4ec8e55"
},
"status": "ok",
"message": "Quote retrieved successfully",
"success": true
}