Zum Inhalt springen
GET /v1/indexes

Market indexes B3 tracks

Live testen

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

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

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

API-Key holen

Code-Snippets

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

Beispiel-Response

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

{
    "data": {
        "note": "The market indexes B3's feed tracks — each with its symbol and name (e.g. ^BVSP for the Ibovespa). Pass an index symbol to /v1/quote to read its level.",
        "count": 1,
        "source": "B3",
        "indexes": [
            {
                "name": "IBOVESPA",
                "symbol": "^BVSP"
            }
        ]
    },
    "meta": {
        "timestamp": "2026-06-15T02:11:12.398Z",
        "request_id": "c50a0ed4-639c-4cfd-817f-44f6724e6b30"
    },
    "status": "ok",
    "message": "Indexes retrieved successfully",
    "success": true
}