/v1/meta
Market metadata & endpoint guide
Probeer het live
10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.
Het werkt. Haal een API-key op en gebruik hem in je project.
Verkrijg een API-sleutelCodefragmenten
curl "https://api.oanor.com/colombia-stock-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/colombia-stock-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/colombia-stock-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/colombia-stock-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Voorbeeldrespons
Een echte respons van dit endpoint, vastgelegd bij de laatste health check.
{
"data": {
"market": "Bolsa de Valores de Colombia (BVC)",
"source": "TradingView screener (colombia market), keyless",
"country": "Colombia",
"indices": [
"ICAP"
],
"currency": "COP",
"examples": {
"index": "/v1/index",
"quote": "/v1/quote?symbols=ECOPETROL,NUTRESA,ISA",
"screener": "/v1/screener?sort=change&order=desc&limit=10"
},
"endpoints": {
"/v1/index": "Colombian benchmark index (MSCI COLCAP = ICAP)",
"/v1/quote": "live quote for one or more BVC stocks by ticker (symbols=ECOPETROL,NUTRESA,ISA)",
"/v1/screener": "rank local primary listings by market_cap | change | volume (sort, order, limit)"
},
"cache_ttl_ms": 20000
},
"meta": {
"timestamp": "2026-06-15T11:16:02.779Z",
"request_id": "d88892ac-3e4c-47e3-ac4b-914597219919"
},
"status": "ok",
"message": "Meta",
"success": true
}