/v1/indicators
Combined macro snapshot
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/argentina-api/v1/indicators" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/argentina-api/v1/indicators", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/argentina-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/argentina-api/v1/indicators",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"source": "argentinadatos.com (BCRA/INDEC)",
"country": "Argentina",
"riesgo_pais_bps": 494,
"riesgo_pais_date": "2026-06-08",
"best_plazo_fijo_pct": 23.5,
"best_plazo_fijo_bank": "CRÉDITO REGIONAL COMPAÑÍA FINANCIERA S.A.U.",
"inflation_monthly_pct": 2.6,
"inflation_monthly_period": "2026-04-30",
"inflation_interannual_pct": 32.4
},
"meta": {
"timestamp": "2026-06-10T22:56:40.353Z",
"request_id": "fc3913d6-c9e0-4ba4-93d5-37117e4c9c80"
},
"status": "ok",
"message": "Indicators retrieved successfully",
"success": true
}