Naar de inhoud
GET /v1/quote

Live quote for one or more QSE 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/qse-api

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

Verkrijg een API-sleutel

Codefragmenten

curl "https://api.oanor.com/qse-api/v1/quote" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/qse-api/v1/quote", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/qse-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/qse-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 Qatari (QSE) stocks — price, change, open/high/low, volume, market cap, P/E and sector (in Qatari riyals), with the company name. Pass codes (the QSE ticker, comma-separate up to 20, e.g. QNBK,IQCD).",
        "count": 2,
        "quotes": [
            {
                "low": 17.4,
                "high": 17.64,
                "open": 17.4,
                "price": 17.64,
                "change": 0.6400000000000006,
                "sector": "Finance",
                "ticker": "QNBK",
                "volume": 1540368,
                "company": "Qatar National Bank QPSC",
                "currency": "QAR",
                "pe_ratio": 10.09,
                "market_cap": 157019288086,
                "change_percent": 3.76
            },
            {
                "low": 11.85,
                "high": 12.3,
                "open": 12.3,
                "price": 11.88,
                "change": 0.02000000000000135,
                "sector": "Non-Energy Minerals",
                "ticker": "IQCD",
                "volume": 2125499,
                "company": "Industries of Qatar Co.",
                "currency": "QAR",
                "pe_ratio": 17.78,
                "market_cap": 71752997923,
                "change_percent": 0.17
            }
        ],
        "source": "Qatar Stock Exchange / QSE (TradingView)"
    },
    "meta": {
        "timestamp": "2026-06-15T02:10:35.276Z",
        "request_id": "83fc2836-a8e9-4e4f-9d6f-e489ecccd31e"
    },
    "status": "ok",
    "message": "Quote retrieved successfully",
    "success": true
}