/v1/quote
Live quote for one or more EGX stocks
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/egx-api/v1/quote" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/egx-api/v1/quote", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/egx-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/egx-api/v1/quote",
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": {
"note": "The live quote for one or more Egyptian (EGX) stocks — price, change, open/high/low, volume, market cap, P/E and sector (in Egyptian pounds), with the company name. Pass codes (the EGX ticker, comma-separate up to 20, e.g. COMI,TMGH).",
"count": 2,
"quotes": [
{
"low": 131.69,
"high": 135.7,
"open": 131.69,
"price": 134.76,
"change": 3.069999999999993,
"sector": "Finance",
"ticker": "COMI",
"volume": 4254137,
"company": "Commercial International Bank - Egypt (CIB) S.A.E.",
"currency": "EGP",
"pe_ratio": 7.12,
"market_cap": 444840404717,
"change_percent": 2.33
},
{
"low": 92.91,
"high": 96.25,
"open": 92.91,
"price": 95.68,
"change": 2.7700000000000102,
"sector": "Finance",
"ticker": "TMGH",
"volume": 4761365,
"company": "Talaat Moustafa Group Holding",
"currency": "EGP",
"pe_ratio": 14.29,
"market_cap": 191455352903,
"change_percent": 2.98
}
],
"source": "The Egyptian Exchange / EGX (TradingView)"
},
"meta": {
"timestamp": "2026-06-15T02:10:38.853Z",
"request_id": "9ae41b81-3afa-470d-a2bf-8fa2edefa6ee"
},
"status": "ok",
"message": "Quote retrieved successfully",
"success": true
}