Ir al contenido
GET /v1/quote

Live quote for one or more UAE stocks

Pruébalo en vivo

10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.

Encabezados personalizados (opcional)
api.oanor.com/uae-stock-api

Funciona. Consigue una clave API y úsala en tu proyecto.

Obtener una clave API

Fragmentos de código

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

Respuesta de ejemplo

Una respuesta real de este endpoint, capturada en la última comprobación de estado.

{
    "data": {
        "note": "The live quote for one or more UAE (ADX or DFM) stocks — price, change, open/high/low, volume, market cap, P/E, sector and the exchange (in dirhams), with the company name. Pass codes (the ticker, optionally prefixed ADX:/DFM:, comma-separate up to 20, e.g. IHC,DFM:EMAAR).",
        "count": 2,
        "quotes": [
            {
                "low": 385,
                "high": 387,
                "open": 385.1,
                "price": 385,
                "change": 0,
                "sector": "Health Services",
                "ticker": "IHC",
                "volume": 567843,
                "company": "International Holding Company PJSC",
                "currency": "AED",
                "exchange": "ADX",
                "pe_ratio": 33.21,
                "market_cap": 844512915039,
                "change_percent": 0
            },
            {
                "low": 11.12,
                "high": 11.7,
                "open": 11.3,
                "price": 11.7,
                "change": 0.8999999999999986,
                "sector": "Finance",
                "ticker": "EMAAR",
                "volume": 50497509,
                "company": "Emaar Properties (P.J.S.C)",
                "currency": "AED",
                "exchange": "DFM",
                "pe_ratio": 5.48,
                "market_cap": 103413144799,
                "change_percent": 8.33
            }
        ],
        "source": "UAE Stock Exchanges / ADX + DFM (TradingView)"
    },
    "meta": {
        "timestamp": "2026-06-15T02:10:40.442Z",
        "request_id": "29346a9b-b463-48c7-a3ee-66e06ef8abe1"
    },
    "status": "ok",
    "message": "Quote retrieved successfully",
    "success": true
}