/v1/inflation
Latest monthly and interannual inflation
Provalo dal vivo
10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.
Funziona. Prendi una chiave API e usala nel tuo progetto.
Ottieni una chiave APIFrammenti di codice
curl "https://api.oanor.com/argentina-api/v1/inflation" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/argentina-api/v1/inflation", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/argentina-api/v1/inflation");
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/inflation",
headers={"x-oanor-key": "oanor_test_..."}
)
Risposta di esempio
Una risposta reale di questo endpoint, acquisita dall'ultimo health check.
{
"data": {
"source": "argentinadatos.com (INDEC)",
"country": "Argentina",
"monthly_pct": 2.6,
"monthly_period": "2026-04-30",
"recent_monthly": [
{
"period": "2025-05-31",
"monthly_pct": 1.5
},
{
"period": "2025-06-30",
"monthly_pct": 1.6
},
{
"period": "2025-07-31",
"monthly_pct": 1.9
},
{
"period": "2025-08-31",
"monthly_pct": 1.9
},
{
"period": "2025-09-30",
"monthly_pct": 2.1
},
{
"period": "2025-10-31",
"monthly_pct": 2.3
},
{
"period": "2025-11-30",
"monthly_pct": 2.5
},
{
"period": "2025-12-31",
"monthly_pct": 2.8
},
{
"period": "2026-01-31",
"monthly_pct": 2.9
},
{
"period": "2026-02-28",
"monthly_pct": 2.9
},
{
"period": "2026-03-31",
"monthly_pct": 3.4
},
{
"period": "2026-04-30",
"monthly_pct": 2.6
}
],
"interannual_pct": 32.4,
"interannual_period": "2026-04-30"
},
"meta": {
"timestamp": "2026-06-10T22:56:40.067Z",
"request_id": "9174ba9a-44de-4e22-acd7-f7cc95c3f769"
},
"status": "ok",
"message": "Inflation retrieved successfully",
"success": true
}