/v1/quote
Live quote for one or more Prague stocks
Probeer het live
10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.
Het werkt. Haal een API-key op en gebruik hem in je project.
Verkrijg een API-sleutelCodefragmenten
curl "https://api.oanor.com/czech-stock-api/v1/quote" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/czech-stock-api/v1/quote", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/czech-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/czech-stock-api/v1/quote",
headers={"x-oanor-key": "oanor_test_..."}
)
Voorbeeldrespons
Een echte respons van dit endpoint, vastgelegd bij de laatste health check.
{
"data": {
"count": 3,
"market": "PSECZ",
"quotes": [
{
"low": 1240,
"high": 1257,
"last": 1247,
"name": "CEZ as",
"open": 1246,
"pe_ttm": 23.1243,
"sector": "Utilities",
"symbol": "CEZ",
"ticker": "PSECZ:CEZ",
"volume": 74101,
"currency": "CZK",
"change_abs": 0,
"change_pct": 0,
"market_cap": 667735467896
},
{
"low": 983,
"high": 1002,
"last": 986,
"name": "Komercni banka, a.s.",
"open": 990,
"pe_ttm": 10.4151,
"sector": "Finance",
"symbol": "KOMB",
"ticker": "PSECZ:KOMB",
"volume": 118678,
"currency": "CZK",
"change_abs": 0.5,
"change_pct": 0.0507,
"market_cap": 186211928497
},
{
"low": 193,
"high": 195,
"last": 195,
"name": "MONETA Money Bank AS",
"open": 193,
"pe_ttm": 15.0566,
"sector": "Finance",
"symbol": "MONET",
"ticker": "PSECZ:MONET",
"volume": 117807,
"currency": "CZK",
"change_abs": 2.8,
"change_pct": 1.4568,
"market_cap": 99645000000
}
]
},
"meta": {
"timestamp": "2026-06-15T02:10:15.364Z",
"request_id": "c5a031a5-6447-4bd5-8382-74162b1a6e85"
},
"status": "ok",
"message": "Quote retrieved successfully",
"success": true
}