Vai al contenuto
GET /v1/indexes

Market indexes B3 tracks

Provalo dal vivo

10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.

Intestazioni personalizzate (facoltative)
api.oanor.com/b3-api

Funziona. Prendi una chiave API e usala nel tuo progetto.

Ottieni una chiave API

Frammenti di codice

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_..."}
)

Risposta di esempio

Una risposta reale di questo endpoint, acquisita dall'ultimo 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
}