Μετάβαση στο περιεχόμενο
GET /v1/cpi/regions

Latest All-Items CPI by region/area

Δοκιμάστε το ζωντανά

10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.

Προσαρμοσμένες κεφαλίδες (προαιρετικά)
api.oanor.com/philippines-stats-api

Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.

Λάβετε ένα κλειδί API

Αποσπάσματα κώδικα

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_..."}
)

Παράδειγμα απόκρισης

Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.

{
    "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"
            },
       
…