/v1/index
Colombian benchmark (MSCI COLCAP)
Live testen
10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.
Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.
API-Key holenCode-Snippets
curl "https://api.oanor.com/colombia-stock-api/v1/index" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/colombia-stock-api/v1/index", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/colombia-stock-api/v1/index");
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/colombia-stock-api/v1/index",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"count": 1,
"market": "BVC",
"indices": [
{
"low": 2335.99,
"high": 2395.66,
"name": "MSCI COLCAP Index",
"open": 2343.94,
"index": "ICAP",
"label": "MSCI COLCAP",
"value": 2386.78,
"change_abs": 91.67,
"change_pct": 3.9941
}
]
},
"meta": {
"timestamp": "2026-06-15T11:16:02.703Z",
"request_id": "b70c99fb-63d3-4e1f-9bf1-730bf560f4dc"
},
"status": "ok",
"message": "Index retrieved successfully",
"success": true
}