/v1/meta
Service metadata
Pruébalo en vivo
10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.
Funciona. Consigue una clave API y úsala en tu proyecto.
Obtener una clave APIFragmentos de código
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_..."}
)
Respuesta de ejemplo
Una respuesta real de este endpoint, capturada en la última comprobación de estado.
{
"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
}