Vai al contenuto
GET /v1/quote

Live quote for one or more Tadawul stocks

Provalo dal vivo

10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.

Intestazioni personalizzate (facoltative)
api.oanor.com/tadawul-api

Funziona. Prendi una chiave API e usala nel tuo progetto.

Ottieni una chiave API

Frammenti di codice

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

Risposta di esempio

Una risposta reale di questo endpoint, acquisita dall'ultimo health check.

{
    "data": {
        "note": "The live quote for one or more Saudi (Tadawul) stocks — price, change, open/high/low, volume, market cap, P/E and sector (in riyals), with the company name. Pass codes (the numeric Tadawul ticker, comma-separate up to 20, e.g. 2222,1120).",
        "count": 2,
        "quotes": [
            {
                "low": 26.5,
                "high": 26.96,
                "open": 26.96,
                "price": 26.88,
                "change": -0.3000000000000007,
                "sector": "Energy Minerals",
                "ticker": "2222",
                "volume": 12431390,
                "company": "Saudi Arabian Oil Co.",
                "currency": "SAR",
                "pe_ratio": 15.77,
                "market_cap": 6574782192884,
                "change_percent": -1.1
            },
            {
                "low": 66.75,
                "high": 67.35,
                "open": 67.1,
                "price": 67,
                "change": 0.09999999999999432,
                "sector": "Finance",
                "ticker": "1120",
                "volume": 5160719,
                "company": "Al Rajhi Bank",
                "currency": "SAR",
                "pe_ratio": 16.67,
                "market_cap": 401400009155,
                "change_percent": 0.15
            }
        ],
        "source": "Saudi Stock Exchange / Tadawul (TradingView)"
    },
    "meta": {
        "timestamp": "2026-06-15T02:10:42.818Z",
        "request_id": "bb5320cc-c490-46e9-bf3d-f03c4488b64f"
    },
    "status": "ok",
    "message": "Quote retrieved successfully",
    "success": true
}