Skip to content
GET /v1/quote

Live quote for one or more Prague stocks

Try it live

10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.

Custom headers (optional)
api.oanor.com/czech-stock-api

It works. Grab an API key and use it in your project.

Get an API key

Code snippets

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_..."}
)

Example response

A real response from this endpoint, captured by the latest 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
}