Skip to content
GET /v1/quote

Live quote for one or more ZSE 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/croatia-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/croatia-stock-api/v1/quote" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/croatia-stock-api/v1/quote", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/croatia-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/croatia-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": "ZSE",
        "quotes": [
            {
                "low": 22.9,
                "high": 23.3,
                "last": 22.9,
                "name": "Zagrebacka banka dd",
                "open": 23.1,
                "pe_ttm": 12.7321,
                "sector": "Finance",
                "symbol": "ZABA",
                "ticker": "ZSE:ZABA",
                "volume": 3491,
                "currency": "EUR",
                "change_abs": -0.1,
                "change_pct": -0.4348,
                "market_cap": 7362649689
            },
            {
                "low": 520,
                "high": 520,
                "last": 520,
                "name": "INA-Industrija nafte d.d.",
                "open": 520,
                "pe_ttm": 36.7751,
                "sector": "Energy Minerals",
                "symbol": "INA",
                "ticker": "ZSE:INA",
                "volume": 10,
                "currency": "EUR",
                "change_abs": 0,
                "change_pct": 0,
                "market_cap": 5200000000
            },
            {
                "low": 39.4,
                "high": 40,
                "last": 39.8,
                "name": "Hrvatski Telekom d.d.",
                "open": 39.4,
                "pe_ttm": 20.8039,
                "sector": "Communications",
                "symbol": "HT",
                "ticker": "ZSE:HT",
                "volume": 3249,
                "currency": "EUR",
                "change_abs": 0.4,
                "change_pct": 1.0152,
                "market_cap": 3015297700
            }
        ]
    },
    "meta": {
        "timestamp": "2026-06-15T11:16:06.134Z",
        "request_id": "158ad328-49c0-4691-89d6-0d139242adaf"
    },
    "status": "ok",
    "message": "Quote retrieved successfully",
    "success": true
}