/v1/cpi
Latest Irish CPI and inflation
Δοκιμάστε το ζωντανά
10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.
Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.
Λάβετε ένα κλειδί APIΑποσπάσματα κώδικα
curl "https://api.oanor.com/ireland-stats-api/v1/cpi" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/ireland-stats-api/v1/cpi", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/ireland-stats-api/v1/cpi");
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/ireland-stats-api/v1/cpi",
headers={"x-oanor-key": "oanor_test_..."}
)
Παράδειγμα απόκρισης
Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.
{
"data": {
"base": "December 2023 = 100",
"latest": {
"period": "202512",
"index_value": 104.2,
"period_label": "2025 December",
"change_annual_pct": 2.8,
"change_monthly_pct": 0.5
},
"matrix": "CPM01",
"series": [
{
"period": "202512",
"index_value": 104.2,
"period_label": "2025 December",
"change_annual_pct": 2.8,
"change_monthly_pct": 0.5
},
{
"period": "202511",
"index_value": 103.7,
"period_label": "2025 November",
"change_annual_pct": 3.2,
"change_monthly_pct": -0.2
},
{
"period": "202510",
"index_value": 103.9,
"period_label": "2025 October",
"change_annual_pct": 2.9,
"change_monthly_pct": 0.5
},
{
"period": "202509",
"index_value": 103.4,
"period_label": "2025 September",
"change_annual_pct": 2.7,
"change_monthly_pct": -0.2
},
{
"period": "202508",
"index_value": 103.6,
"period_label": "2025 August",
"change_annual_pct": 2,
"change_monthly_pct": 0.4
},
{
"period": "202507",
"index_value": 103.2,
"period_label": "2025 July",
"change_annual_pct": 1.7,
"change_monthly_pct": 0.1
},
{
"period": "202506",
"index_value": 103.1,
"period_label": "2025 June",
"change_annual_pct": 1.8,
"change_monthly_pct": 0.5
},
{
"period": "202505",
"index_value": 102.6,
"period_label": "2025 May",
"change_annual_pct": 1.7,
"change_monthly_pct": 0
},
{
"period": "202504",
"index_value": 102.6,
"period_label": "2025 April",
"change_annual_pct": 2.2,
"change_monthly_pct": 0.4
},
{
"period": "202503",
"index_value": 102.2,
"period_label": "2025 March",
"change_annual_pct": 2,
"change_monthly_pct": 0.7
},
{
"period": "202502",
"index_value": 101.5,
"period_label": "2025 February",
"change_annual_pct": 1.8,
"change_monthly_pct": 0.9
},
{
"period": "202501",
"index_value": 100.6,
"peri
…