/v1/quote
Live quote for one or more Boursa Kuwait stocks
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/kuwait-stock-api/v1/quote" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/kuwait-stock-api/v1/quote", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/kuwait-stock-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/kuwait-stock-api/v1/quote",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"count": 3,
"market": "KSE",
"quotes": [
{
"low": 781,
"high": 791,
"last": 790,
"name": "Kuwait Finance House K.S.C.",
"open": 781,
"pe_ttm": 23.8671,
"sector": "Finance",
"symbol": "KFH",
"ticker": "KSE:KFH",
"volume": 27306290,
"currency": "KWF",
"change_abs": 16,
"change_pct": 2.0672,
"market_cap": 15242086999
},
{
"low": 830,
"high": 847,
"last": 834,
"name": "National Bank of Kuwait K.S.C.",
"open": 841,
"pe_ttm": 13.9,
"sector": "Finance",
"symbol": "NBK",
"ticker": "KSE:NBK",
"volume": 14757019,
"currency": "KWF",
"change_abs": 10,
"change_pct": 1.2136,
"market_cap": 7564240345
},
{
"low": 605,
"high": 614,
"last": 611,
"name": "Mobile Telecommunications Company K.S.C.P",
"open": 605,
"pe_ttm": 9.7917,
"sector": "Communications",
"symbol": "ZAIN",
"ticker": "KSE:ZAIN",
"volume": 2684904,
"currency": "KWF",
"change_abs": 6,
"change_pct": 0.9917,
"market_cap": 2617870827
}
]
},
"meta": {
"timestamp": "2026-06-15T02:09:52.013Z",
"request_id": "48f564ed-9a78-468b-878c-a1517578d8b0"
},
"status": "ok",
"message": "Quote retrieved successfully",
"success": true
}