/v1/cpi/divisions
Latest CPI across all 13 COICOP divisions
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/divisions" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/philippines-stats-api/v1/cpi/divisions", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/philippines-stats-api/v1/cpi/divisions");
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/divisions",
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": 13,
"period": "2026 May",
"source": "PSA OpenSTAT (2018-based)",
"country": "Philippines",
"divisions": [
{
"index": 137.2,
"label": "01 Food & non-alcoholic beverages",
"coicop": "01",
"change_yoy_pct": 5.7
},
{
"index": 193.5,
"label": "02 Alcoholic beverages & tobacco",
"coicop": "02",
"change_yoy_pct": 5.45
},
{
"index": 123.9,
"label": "03 Clothing & footwear",
"coicop": "03",
"change_yoy_pct": 2.99
},
{
"index": 132.2,
"label": "04 Housing, water, electricity, gas & fuels",
"coicop": "04",
"change_yoy_pct": 7.83
},
{
"index": 128.7,
"label": "05 Furnishings & household equipment",
"coicop": "05",
"change_yoy_pct": 3.87
},
{
"index": 130.8,
"label": "06 Health",
"coicop": "06",
"change_yoy_pct": 4.06
},
{
"index": 148.6,
"label": "07 Transport",
"coicop": "07",
"change_yoy_pct": 16.18
},
{
"index": 104.5,
"label": "08 Information & communication",
"coicop": "08",
"change_yoy_pct": 0.87
},
{
"index": 124.1,
"label": "09 Recreation, sport & culture",
"coicop": "09",
"change_yoy_pct": 5.17
},
{
"index": 123.8,
"label": "10 Education services",
"coicop": "10",
"change_yoy_pct": 2.91
},
{
"index": 139.6,
"label": "11 Restaurants & accommodation",
"coicop": "11",
"change_yoy_pct": 6.73
},
{
"index": 142.4,
"label": "12 Financial services",
"coicop": "12",
"change_yoy_pct": 0
},
{
"index": 127,
"label": "13 Personal care & misc goods/services",
"coicop": "13",
"change_yoy_pct": 3.42
}
],
"indicator": "CPI by COICOP division"
},
"meta": {
"timestamp": "2026-06-15T20:40:35.359Z",
"request_id": "61bdf807-1be8-4959-9f3e-bd3347e0b5cb"
},
"status": "ok",
"message": "Philippines CPI by division retrieved",
"success": true
}