/v1/indicators
Latest value of every Chilean indicator
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/chile-api/v1/indicators" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/chile-api/v1/indicators", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/chile-api/v1/indicators");
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-api/v1/indicators",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"count": 12,
"source": "mindicador.cl (Banco Central de Chile)",
"country": "Chile",
"updated": "2026-06-10T22:00:00.000Z",
"indicators": [
{
"code": "uf",
"date": "2026-06-10T04:00:00.000Z",
"name": "Unidad de fomento (UF)",
"unit": "Pesos",
"value": 40765.97
},
{
"code": "ivp",
"date": "2026-06-10T04:00:00.000Z",
"name": "Indice de valor promedio (IVP)",
"unit": "Pesos",
"value": 41877.16
},
{
"code": "dolar",
"date": "2026-06-10T04:00:00.000Z",
"name": "Dólar observado",
"unit": "Pesos",
"value": 916.39
},
{
"code": "dolar_intercambio",
"date": "2014-11-13T03:00:00.000Z",
"name": "Dólar acuerdo",
"unit": "Pesos",
"value": 758.87
},
{
"code": "euro",
"date": "2026-06-10T04:00:00.000Z",
"name": "Euro",
"unit": "Pesos",
"value": 1058.43
},
{
"code": "ipc",
"date": "2025-12-01T03:00:00.000Z",
"name": "Indice de Precios al Consumidor (IPC)",
"unit": "Porcentaje",
"value": -0.2
},
{
"code": "utm",
"date": "2026-06-01T04:00:00.000Z",
"name": "Unidad Tributaria Mensual (UTM)",
"unit": "Pesos",
"value": 71506
},
{
"code": "imacec",
"date": "2026-04-01T03:00:00.000Z",
"name": "Imacec",
"unit": "Porcentaje",
"value": -1.2
},
{
"code": "tpm",
"date": "2026-06-10T04:00:00.000Z",
"name": "Tasa Política Monetaria (TPM)",
"unit": "Porcentaje",
"value": 4.5
},
{
"code": "libra_cobre",
"date": "2026-06-10T04:00:00.000Z",
"name": "Libra de Cobre",
"unit": "Dólar",
"value": 6.17
},
{
"code": "tasa_desempleo",
"date": "2026-04-01T03:00:00.000Z",
"name": "Tasa de desempleo",
"unit": "Porcentaje",
"value": 9.11
},
{
"code": "bitcoin",
"date": "2026-06-06T04:00:00.000Z",
"name": "Bitcoin",
"unit": "Dólar",
"value": 60861.29
}
]
},
"meta": {
"timestamp": "2026-06-10
…