/v1/indicators
Combined macro snapshot
Essayez-le en direct
10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.
Ça marche. Récupérez une clé API et utilisez-la dans votre projet.
Obtenez une clé APIExtraits de code
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_..."}
)
Exemple de réponse
Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.
{
"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
}