/v1/inflation
Latest monthly and interannual inflation
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/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_..."}
)
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 (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
}