/v1/search
Search the market by name or ticker
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode snippets
curl "https://api.oanor.com/chile-stock-api/v1/search" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/chile-stock-api/v1/search", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/chile-stock-api/v1/search");
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/chile-stock-api/v1/search",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"note": "Search the Chilean (Santiago) market by company name or ticker — matching primary Chilean listings ranked by market cap. Pass q (the name or ticker fragment, e.g. banco), optionally sector (e.g. Finance, Retail Trade) and limit (1-50, default 20).",
"count": 4,
"query": "banco",
"sector": "Finance",
"source": "Santiago Stock Exchange / Bolsa de Santiago (TradingView)",
"results": [
{
"price": 182,
"change": 3.75,
"sector": "Finance",
"ticker": "CHILE",
"volume": 110873640,
"company": "Banco de Chile",
"currency": "CLP",
"market_cap": 18385108218750,
"change_percent": 2.1
},
{
"price": 73.6,
"change": 1.1599999999999966,
"sector": "Finance",
"ticker": "BSANTANDER",
"volume": 163639205,
"company": "Banco Santander-Chile",
"currency": "CLP",
"market_cap": 13869634512454,
"change_percent": 1.6
},
{
"price": 61299,
"change": 809,
"sector": "Finance",
"ticker": "BCI",
"volume": 50449,
"company": "Banco de Credito e Inversiones",
"currency": "CLP",
"market_cap": 13400222736374,
"change_percent": 1.34
},
{
"price": 18349,
"change": 197,
"sector": "Finance",
"ticker": "ITAUCL",
"volume": 266497,
"company": "Banco Itau Chile",
"currency": "CLP",
"market_cap": 3969636311996,
"change_percent": 1.09
}
]
},
"meta": {
"timestamp": "2026-06-15T02:10:25.465Z",
"request_id": "686117da-dc03-4c83-a408-6f32e6219c2a"
},
"status": "ok",
"message": "Search retrieved successfully",
"success": true
}