/v1/quote
Live quote for one or more ATHEX 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/athex-api/v1/quote" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/athex-api/v1/quote", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/athex-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/athex-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 Greek (ATHEX) stocks — price, change, open/high/low, volume, market cap, P/E and sector (in euro), with the company name. Pass codes (the ATHEX ticker, comma-separate up to 20, e.g. ETE,EUROB).",
"count": 2,
"quotes": [
{
"low": 14.72,
"high": 15.125,
"open": 14.88,
"price": 14.92,
"change": 0.3200000000000003,
"sector": "Finance",
"ticker": "ETE",
"volume": 2338773,
"company": "National Bank of Greece S.A.",
"currency": "EUR",
"pe_ratio": 11.94,
"market_cap": 13645174220,
"change_percent": 2.19
},
{
"low": 52.1,
"high": 53.1,
"open": 52.4,
"price": 52.2,
"change": -0.6999999999999957,
"sector": "Consumer Non-Durables",
"ticker": "EEE",
"volume": 15771,
"company": "Coca-Cola HBC AG",
"currency": "EUR",
"pe_ratio": 20.52,
"market_cap": 19366751410.426144,
"change_percent": -1.32
}
],
"source": "Athens Stock Exchange / ATHEX (TradingView)"
},
"meta": {
"timestamp": "2026-06-15T02:10:26.941Z",
"request_id": "8a78e6a5-0394-4f3e-b7f1-c44f47df2761"
},
"status": "ok",
"message": "Quote retrieved successfully",
"success": true
}