Skip to content
GET /v1/table

Table metadata (variables and value codes)

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

Example response

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

{
    "data": {
        "path": "PR/PRXPRISF.px",
        "title": "Consumer Price Index by time and index",
        "variables": [
            {
                "code": "time",
                "text": "time",
                "time": true,
                "n_values": 111,
                "sample_values": [
                    {
                        "code": "106",
                        "text": "2024H1"
                    },
                    {
                        "code": "107",
                        "text": "2024H2"
                    },
                    {
                        "code": "108",
                        "text": "2025H1"
                    },
                    {
                        "code": "109",
                        "text": "2025H2"
                    },
                    {
                        "code": "110",
                        "text": "2026H1"
                    }
                ]
            },
            {
                "code": "index",
                "text": "index",
                "time": false,
                "n_values": 5,
                "sample_values": [
                    {
                        "code": "0",
                        "text": "Jan 1971=100"
                    },
                    {
                        "code": "1",
                        "text": "Jan 1975=100"
                    },
                    {
                        "code": "2",
                        "text": "Jan 1981=100"
                    },
                    {
                        "code": "3",
                        "text": "Juli 1995=100"
                    },
                    {
                        "code": "4",
                        "text": "Jan 2008=100"
                    }
                ]
            }
        ]
    },
    "meta": {
        "timestamp": "2026-06-15T11:14:44.189Z",
        "request_id": "c0ec6436-71f8-469b-a695-3845261ba4d3"
    },
    "status": "ok",
    "message": "Table metadata retrieved successfully",
    "success": true
}