Ir al contenido
GET /v1/screener

Ranked market screener

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/set-api

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

Obtener una clave API

Fragmentos de código

curl "https://api.oanor.com/set-api/v1/screener" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/set-api/v1/screener", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/set-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/set-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": {
        "by": "gainers",
        "note": "A ranked screener of the Thai (SET) market — the top stocks by your chosen ranking. Pass by (gainers, losers, active, or marketcap; default marketcap) and limit (1-100, default 20). Only real stocks above a market-cap floor are ranked.",
        "count": 20,
        "source": "Stock Exchange of Thailand / SET (TradingView)",
        "results": [
            {
                "price": 0.03,
                "change": 0.009999999999999998,
                "sector": "Consumer Services",
                "ticker": "GRAND",
                "volume": 407951,
                "company": "Grande Asset Hotels & Property Public Co. Ltd.",
                "currency": "THB",
                "market_cap": 278566927,
                "change_percent": 50
            },
            {
                "price": 1.32,
                "change": 0.26,
                "sector": "Energy Minerals",
                "ticker": "UMS",
                "volume": 18318308,
                "company": "Unique Mining Services Public Co. Ltd.",
                "currency": "THB",
                "market_cap": 3152621325,
                "change_percent": 24.53
            },
            {
                "price": 3.78,
                "change": 0.6999999999999997,
                "sector": "Electronic Technology",
                "ticker": "SMT",
                "volume": 53576442,
                "company": "Stars Microelectronics (Thailand) Public Co. Ltd.",
                "currency": "THB",
                "market_cap": 3169502983,
                "change_percent": 22.73
            },
            {
                "price": 0.06,
                "change": 0.009999999999999995,
                "sector": "Process Industries",
                "ticker": "DIMET",
                "volume": 505102,
                "company": "Dimet (Siam) Public Co. Ltd.",
                "currency": "THB",
                "market_cap": 161460143,
                "change_percent": 20
            },
            {
                "price": 0.06,
                "change": 0.009999999999999995,
                "sector": "Utilities",
                "ticker": "PRIME",
                "volume": 4212100,
                "company": "Prime Road Power Public Co. Ltd.",
                "currency": "THB",
                "market_cap": 255269115,
                "change_percent": 20
            },
            {
                "price": 0.06,
                "change": 0.009999999999999995,
                "sector": "Finance",
                "ticker": "EVER",
                "volume": 1396502,
                "company": "Everland Public Co. Ltd.",
                "currency": "THB",
                "market_cap": 291287074,
                "change_percent": 20
            },
            {
                "price": 0.47,
                "change": 0.06,
                "sector": "Producer Manufacturing",
                "ticker": "UREKA",
                "volume": 129
…