/v1/quote
Live quote for one or more Bursa Malaysia stocks
Pruébalo en vivo
10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.
Funciona. Consigue una clave API y úsala en tu proyecto.
Obtener una clave APIFragmentos de código
curl "https://api.oanor.com/klse-api/v1/quote" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/klse-api/v1/quote", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/klse-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/klse-api/v1/quote",
headers={"x-oanor-key": "oanor_test_..."}
)
Respuesta de ejemplo
Una respuesta real de este endpoint, capturada en la última comprobación de estado.
{
"data": {
"note": "The live quote for one or more Malaysian (Bursa Malaysia) stocks — price, change, open/high/low, volume, market cap, P/E and sector (in ringgit), with the company name. Pass codes (the MYX ticker, comma-separate up to 20, e.g. MAYBANK,TENAGA).",
"count": 2,
"quotes": [
{
"low": 10.76,
"high": 10.94,
"open": 10.78,
"price": 10.9,
"change": 0.17999999999999972,
"sector": "Finance",
"ticker": "MAYBANK",
"volume": 1208400,
"company": "Malayan Banking Bhd.",
"currency": "MYR",
"pe_ratio": 12.66,
"market_cap": 129661910261,
"change_percent": 1.68
},
{
"low": 14.46,
"high": 14.7,
"open": 14.5,
"price": 14.5,
"change": 0.08000000000000007,
"sector": "Utilities",
"ticker": "TENAGA",
"volume": 1400000,
"company": "Tenaga Nasional Bhd",
"currency": "MYR",
"pe_ratio": 17.57,
"market_cap": 84056229380,
"change_percent": 0.55
}
],
"source": "Bursa Malaysia / KLSE (TradingView)"
},
"meta": {
"timestamp": "2026-06-15T02:10:43.551Z",
"request_id": "060807b2-f99a-4128-96aa-4df76123ee27"
},
"status": "ok",
"message": "Quote retrieved successfully",
"success": true
}