/v1/quote
Live quote for one or more UAE 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/uae-stock-api/v1/quote" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/uae-stock-api/v1/quote", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/uae-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/uae-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": {
"note": "The live quote for one or more UAE (ADX or DFM) stocks — price, change, open/high/low, volume, market cap, P/E, sector and the exchange (in dirhams), with the company name. Pass codes (the ticker, optionally prefixed ADX:/DFM:, comma-separate up to 20, e.g. IHC,DFM:EMAAR).",
"count": 2,
"quotes": [
{
"low": 385,
"high": 387,
"open": 385.1,
"price": 385,
"change": 0,
"sector": "Health Services",
"ticker": "IHC",
"volume": 567843,
"company": "International Holding Company PJSC",
"currency": "AED",
"exchange": "ADX",
"pe_ratio": 33.21,
"market_cap": 844512915039,
"change_percent": 0
},
{
"low": 11.12,
"high": 11.7,
"open": 11.3,
"price": 11.7,
"change": 0.8999999999999986,
"sector": "Finance",
"ticker": "EMAAR",
"volume": 50497509,
"company": "Emaar Properties (P.J.S.C)",
"currency": "AED",
"exchange": "DFM",
"pe_ratio": 5.48,
"market_cap": 103413144799,
"change_percent": 8.33
}
],
"source": "UAE Stock Exchanges / ADX + DFM (TradingView)"
},
"meta": {
"timestamp": "2026-06-15T02:10:40.442Z",
"request_id": "29346a9b-b463-48c7-a3ee-66e06ef8abe1"
},
"status": "ok",
"message": "Quote retrieved successfully",
"success": true
}