/v1/cpi/core
Core inflation measures
Live testen
10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.
Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.
API-Key holenCode-Snippets
curl "https://api.oanor.com/moldova-cpi-api/v1/cpi/core" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/moldova-cpi-api/v1/cpi/core", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/moldova-cpi-api/v1/cpi/core");
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/moldova-cpi-api/v1/cpi/core",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"count": 4,
"period": "2026-05",
"region": "Moldova",
"source": "NBS Moldova PRE012800",
"measures": [
{
"measure": "Total CPI excluding food and beverages, energy products, products and services with regulated prices",
"change_mom_pct": 0.39,
"inflation_yoy_pct": 4.97
},
{
"measure": "Total CPI excludin food and beverages",
"change_mom_pct": 0.33,
"inflation_yoy_pct": 7.35
},
{
"measure": "Total CPI excluding products and services with regulated prices",
"change_mom_pct": 0.31,
"inflation_yoy_pct": 6.85
},
{
"measure": "Total CPI excluding fuels",
"change_mom_pct": 0.44,
"inflation_yoy_pct": 5.43
}
],
"indicator": "Core inflation indices (latest month)",
"month_name": "May"
},
"meta": {
"timestamp": "2026-06-15T20:40:26.670Z",
"request_id": "19d52172-9c22-4a65-8be8-544e73021d91"
},
"status": "ok",
"message": "Moldova core inflation retrieved",
"success": true
}