Skip to content
GET /v1/meta

Service metadata

Try it live

10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.

Custom headers (optional)
api.oanor.com/ireland-stats-api

It works. Grab an API key and use it in your project.

Get an API key

Code snippets

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

Example response

A real response from this endpoint, captured by the latest health check.

{
    "data": {
        "note": "matrix is a CSO PxStat matrix code, e.g. CPM01 (consumer prices).",
        "source": "Central Statistics Office Ireland (CSO)",
        "upstream": "https://ws.cso.ie/public/api.restful/PxStat.Data.Cube_API",
        "endpoints": [
            "/v1/cpi",
            "/v1/dataset",
            "/v1/table",
            "/v1/catalog",
            "/v1/meta"
        ],
        "cpi_matrix": "CPM01",
        "description": "Keyless gateway over Ireland's CSO PxStat (JSON-stat 2.0) API. /v1/cpi gives the latest Irish consumer price index and inflation; /v1/dataset pulls any PxStat matrix as a clean time-series; /v1/table inspects a matrix's dimensions; /v1/catalog searches the matrix catalogue.",
        "documentation": "https://api.oanor.com/ireland-stats-api"
    },
    "meta": {
        "timestamp": "2026-06-15T11:14:33.753Z",
        "request_id": "86adbf87-9c3f-4e06-ac41-85ea1095ebb9"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}