Naar de inhoud
GET /v1/quote

Live quote for one or more GPW stocks

Probeer het live

10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.

Aangepaste headers (optioneel)
api.oanor.com/gpw-api

Het werkt. Haal een API-key op en gebruik hem in je project.

Verkrijg een API-sleutel

Codefragmenten

curl "https://api.oanor.com/gpw-api/v1/quote" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/gpw-api/v1/quote", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/gpw-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/gpw-api/v1/quote",
    headers={"x-oanor-key": "oanor_test_..."}
)

Voorbeeldrespons

Een echte respons van dit endpoint, vastgelegd bij de laatste health check.

{
    "data": {
        "note": "The live quote for one or more Warsaw (GPW) stocks — price, change, open/high/low, volume, market cap, P/E and sector (in zloty), with the company name. Pass codes (the GPW ticker, comma-separate up to 20, e.g. PKN,PKO).",
        "count": 2,
        "quotes": [
            {
                "low": 143.8,
                "high": 148.48,
                "open": 148.34,
                "price": 146.84,
                "change": -1.8400000000000034,
                "sector": "Energy Minerals",
                "ticker": "PKN",
                "volume": 2197406,
                "company": "ORLEN Spolka Akcyjna",
                "currency": "PLN",
                "pe_ratio": 11.43,
                "market_cap": 170472721466,
                "change_percent": -1.24
            },
            {
                "low": 101,
                "high": 105.08,
                "open": 101.2,
                "price": 104.6,
                "change": 4.799999999999997,
                "sector": "Finance",
                "ticker": "PKO",
                "volume": 2366656,
                "company": "PKO Bank Polski SA",
                "currency": "PLN",
                "pe_ratio": 12.18,
                "market_cap": 130749998093,
                "change_percent": 4.81
            }
        ],
        "source": "Warsaw Stock Exchange / GPW (TradingView)"
    },
    "meta": {
        "timestamp": "2026-06-15T02:10:28.789Z",
        "request_id": "4cbc2a47-d133-49ab-b7ce-6f3086080684"
    },
    "status": "ok",
    "message": "Quote retrieved successfully",
    "success": true
}