Ir al contenido
GET /v1/screener

Rank local primary listings

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

Respuesta de ejemplo

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

{
    "data": {
        "sort": "market_cap",
        "count": 25,
        "order": "desc",
        "market": "KSE",
        "results": [
            {
                "low": 781,
                "high": 791,
                "last": 790,
                "name": "Kuwait Finance House K.S.C.",
                "open": 781,
                "pe_ttm": 23.8671,
                "sector": "Finance",
                "symbol": "KFH",
                "ticker": "KSE:KFH",
                "volume": 27306290,
                "currency": "KWF",
                "change_abs": 16,
                "change_pct": 2.0672,
                "market_cap": 15242086999
            },
            {
                "low": 830,
                "high": 847,
                "last": 834,
                "name": "National Bank of Kuwait K.S.C.",
                "open": 841,
                "pe_ttm": 13.9,
                "sector": "Finance",
                "symbol": "NBK",
                "ticker": "KSE:NBK",
                "volume": 14757019,
                "currency": "KWF",
                "change_abs": 10,
                "change_pct": 1.2136,
                "market_cap": 7564240345
            },
            {
                "low": 653,
                "high": 658,
                "last": 657,
                "name": "Boubyan Bank K.S.C.",
                "open": 653,
                "pe_ttm": 33.3503,
                "sector": "Finance",
                "symbol": "BOUBYAN",
                "ticker": "KSE:BOUBYAN",
                "volume": 2914338,
                "currency": "KWF",
                "change_abs": 7,
                "change_pct": 1.0769,
                "market_cap": 3067453989
            },
            {
                "low": 605,
                "high": 614,
                "last": 611,
                "name": "Mobile Telecommunications Company K.S.C.P",
                "open": 605,
                "pe_ttm": 9.7917,
                "sector": "Communications",
                "symbol": "ZAIN",
                "ticker": "KSE:ZAIN",
                "volume": 2684904,
                "currency": "KWF",
                "change_abs": 6,
                "change_pct": 0.9917,
                "market_cap": 2617870827
            },
            {
                "low": 986,
                "high": 1002,
                "last": 994,
                "name": "Mabanee Company (SAKC)",
                "open": 990,
                "pe_ttm": 22.9032,
                "sector": "Finance",
                "symbol": "MABANEE",
                "ticker": "KSE:MABANEE",
                "volume": 569081,
                "currency": "KWF",
                "change_abs": 14,
                "change_pct": 1.4286,
                "market_cap": 1535640171
            },
            {
                "low": 346,
                "high": 350,
                "last": 348,
                "name": "Gulf Bank K.S.C.",
                "open": 346,
                "pe_ttm": 28.0645,
        
…