Ir al contenido
GET /v1/meta

Service metadata & endpoint catalog

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

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

Obtener una clave API

Fragmentos de código

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

Respuesta de ejemplo

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

{
    "data": {
        "sample": {
            "maybank": 10.9
        },
        "source": "TradingView public screener (scanner.tradingview.com/malaysia/scan), keyless",
        "screens": [
            "gainers",
            "losers",
            "active",
            "marketcap"
        ],
        "service": "klse-api",
        "endpoints": {
            "GET /v1/meta": "This document.",
            "GET /v1/quote": "Live quote for one or more stocks (codes).",
            "GET /v1/search": "Search by company name or ticker (q, sector, limit).",
            "GET /v1/screener": "Ranked market screener (by, limit)."
        },
        "description": "Live data for Bursa Malaysia (the KLSE / Malaysian stock market) with no key: the live quote for one or more stocks by ticker (price, change, open/high/low, volume, market cap, P/E, sector, in ringgit, with the company name), a ranked market screener (top gainers, losers, most active, or largest by market cap), and a search across the market by company name or ticker (optionally by sector). The Malaysia-equities / screener / search layer for trading dashboards and research. Distinct from other exchange readers — the Bursa Malaysia (MYX) market with a built-in screener and name search. Live, short cache only.",
        "upstream_status": "ok"
    },
    "meta": {
        "timestamp": "2026-06-15T02:10:44.223Z",
        "request_id": "bfc5dbe6-f969-4b87-911e-ccc409945296"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}