Zum Inhalt springen
GET /v1/indices

Every BYMA index (MERVAL & more)

Live testen

10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.

Eigene Header (optional)
api.oanor.com/byma-api

Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.

API-Key holen

Code-Snippets

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

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.

{
    "data": {
        "note": "The live value of every BYMA index — the S&P MERVAL, the S&P BYMA General, the BYMA CEDEAR index and the sector indices — each with its level, previous close, percent change, day high/low and VWAP. The pulse of the Argentine market.",
        "count": 16,
        "source": "BYMA",
        "indices": [
            {
                "low": 141278473.77,
                "high": 143754571.52,
                "name": "S&P BYMA Indice General",
                "vwap": 0,
                "value": 141818825.8,
                "symbol": "G",
                "change_percent": -0.29,
                "previous_close": 142230571.66
            },
            {
                "low": 3341045.1,
                "high": 3390505.03,
                "name": "S&P MERVAL",
                "vwap": 0,
                "value": 3352707.61,
                "symbol": "M",
                "change_percent": -0.01,
                "previous_close": 3353007.69
            },
            {
                "low": 46513.21,
                "high": 47786.76,
                "name": "S&P BYMA Construccion",
                "vwap": 0,
                "value": 46932.33,
                "symbol": "SPBYCAP",
                "change_percent": -0.15,
                "previous_close": 47004.99
            },
            {
                "low": 41699.69,
                "high": 42555,
                "name": "S&P BYMA CEDEAR Index",
                "vwap": 0,
                "value": 42068.15,
                "symbol": "SPBYCDAP",
                "change_percent": 0.52,
                "previous_close": 41850.27
            },
            {
                "low": 26713.52,
                "high": 27169.77,
                "name": "S&P BYMA Ingenius Index",
                "vwap": 0,
                "value": 26952.34,
                "symbol": "SPBYIGAP",
                "change_percent": 0,
                "previous_close": 26952.88
            },
            {
                "low": 144773.55,
                "high": 149227.01,
                "name": "S&P BYMA Energia",
                "vwap": 0,
                "value": 146176.89,
                "symbol": "SPBYMAIG10",
                "change_percent": -0.38,
                "previous_close": 146732.18
            },
            {
                "low": 52346.9,
                "high": 53199.82,
                "name": "S&P BYMA Bs Intermedios",
                "vwap": 0,
                "value": 52820.87,
                "symbol": "SPBYMAIG15",
                "change_percent": -0.12,
                "previous_close": 52884.08
            },
            {
                "low": 43508.33,
                "high": 44289.75,
                "name": "S&P BYMA Ind y Bs de Cap",
                "vwap": 0,
                "value": 43894.44,
                "symbol": "SPBYMAIG20",
                "change_percent": 0,
                "previous_close": 43893.54
            },
            {
                "low"
…