Naar de inhoud
GET /v1/meta

API metadata

Probeer het live

10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.

Aangepaste headers (optioneel)
api.oanor.com/philippines-stats-api

Het werkt. Haal een API-key op en gebruik hem in je project.

Verkrijg een API-sleutel

Codefragmenten

curl "https://api.oanor.com/philippines-stats-api/v1/meta" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/philippines-stats-api/v1/meta", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/philippines-stats-api/v1/meta");
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/meta",
    headers={"x-oanor-key": "oanor_test_..."}
)

Voorbeeldrespons

Een echte respons van dit endpoint, vastgelegd bij de laatste health check.

{
    "data": {
        "api": "Statistics Philippines (PSA) API",
        "notes": "Live data from PSA OpenSTAT (CSV format; json-stat2 is unreliable on this server). YoY and MoM computed from the index series.",
        "source": "Philippine Statistics Authority — OpenSTAT PxWeb API (openstat.psa.gov.ph)",
        "country": "Philippines",
        "endpoints": [
            "/v1/cpi",
            "/v1/cpi/series",
            "/v1/cpi/divisions",
            "/v1/cpi/regions",
            "/v1/meta"
        ],
        "documentation": "https://api.oanor.com/philippines-stats-api",
        "primary_indicator": "CPI All Items (2018-based, table 0012M4ACP22, overall + 13 COICOP divisions + regions)"
    },
    "meta": {
        "timestamp": "2026-06-15T20:40:35.644Z",
        "request_id": "51dd0f4c-022d-4481-98c2-d99952a9c814"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}