/v1/table
Matrix metadata (dimensions and value codes)
Probeer het live
10 gratis calls per dag — geen registratie, geen API-key. Loopt via de oanor-gateway.
Het werkt. Haal een API-key op en gebruik hem in je project.
Verkrijg een API-sleutelCodefragmenten
curl "https://api.oanor.com/ireland-stats-api/v1/table" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/ireland-stats-api/v1/table", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/ireland-stats-api/v1/table");
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/table",
headers={"x-oanor-key": "oanor_test_..."}
)
Voorbeeldrespons
Een echte respons van dit endpoint, vastgelegd bij de laatste health check.
{
"data": {
"title": "Consumer Price Index",
"matrix": "CPM01",
"updated": "2026-01-15T11:00:00.000Z",
"dimensions": [
{
"id": "STATISTIC",
"time": false,
"label": "Statistic",
"n_values": 8,
"sample_values": [
{
"code": "CPM01C08",
"label": "Consumer Price Index (Base Dec 2023=100)"
},
{
"code": "CPM01C01",
"label": "Consumer Price Index (Base Dec 2016=100)"
},
{
"code": "CPM01C02",
"label": "Consumer Price Index (Base Dec 2011=100)"
},
{
"code": "CPM01C03",
"label": "Consumer Price Index (Base Dec 2006=100)"
},
{
"code": "CPM01C04",
"label": "Consumer Price Index (Base Dec 2001=100)"
},
{
"code": "CPM01C05",
"label": "Consumer Price Index (Base Nov 1996=100)"
}
]
},
{
"id": "TLIST(M1)",
"time": true,
"label": "Month",
"n_values": 602,
"sample_values": [
{
"code": "197511",
"label": "1975 November"
},
{
"code": "197512",
"label": "1975 December"
},
{
"code": "197601",
"label": "1976 January"
},
{
"code": "197602",
"label": "1976 February"
},
{
"code": "197603",
"label": "1976 March"
},
{
"code": "197604",
"label": "1976 April"
}
]
},
{
"id": "C01779V03424",
"time": false,
"label": "Commodity Group",
"n_values": 13,
"sample_values": [
{
"code": "-",
"label": "All items"
},
{
"code": "01",
"label": "Food and non-alcoholic beverages"
},
{
"code": "02",
"label": "Alcoholic beverages and tobacco"
…