/v1/cpi/regions
Latest All-Items CPI by region/area
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode snippets
curl "https://api.oanor.com/philippines-stats-api/v1/cpi/regions" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/philippines-stats-api/v1/cpi/regions", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/philippines-stats-api/v1/cpi/regions");
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/philippines-stats-api/v1/cpi/regions",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"base": "2018 = 100",
"count": 29,
"period": "2026 May",
"source": "PSA OpenSTAT (2018-based)",
"country": "Philippines",
"regions": [
{
"index": 130.2,
"region": "National Capital Region (NCR)"
},
{
"index": 137.2,
"region": "Areas Outside National Capital Region (AONCR)"
},
{
"index": 135.4,
"region": "Cordillera Administrative Region (CAR)"
},
{
"index": 137.6,
"region": "Abra"
},
{
"index": 133.9,
"region": "Benguet"
},
{
"index": 137.3,
"region": "Ifugao"
},
{
"index": 135.3,
"region": "Kalinga"
},
{
"index": 144.3,
"region": "Mountain Province"
},
{
"index": 144.1,
"region": "Apayao"
},
{
"index": 132.8,
"region": "City of Baguio"
},
{
"index": 133,
"region": "Region I (Ilocos Region)"
},
{
"index": 130.4,
"region": "Ilocos Norte"
},
{
"index": 135.1,
"region": "Ilocos Sur"
},
{
"index": 127.3,
"region": "La Union"
},
{
"index": 134.8,
"region": "Pangasinan"
},
{
"index": 136.1,
"region": "Region II (Cagayan Valley)"
},
{
"index": 150,
"region": "Batanes"
},
{
"index": 138.7,
"region": "Cagayan"
},
{
"index": 131.2,
"region": "Isabela"
},
{
"index": 141.1,
"region": "Nueva Vizcaya"
},
{
"index": 140.1,
"region": "Quirino"
},
{
"index": 139.2,
"region": "Region III (Central Luzon)"
},
{
"index": 143.9,
"region": "Bataan"
},
{
"index": 136.9,
"region": "Bulacan"
},
{
"index": 140.4,
"region": "Nueva Ecija"
},
{
"index": 141.9,
"region": "Pampanga"
},
{
"index": 137.5,
"region": "Tarlac"
},
…