Naar de inhoud
GET /v1/series

Any PxWeb table as a time-series

Probeer het live

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

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

Voorbeeldrespons

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

{
    "data": {
        "path": "PR/PRXPRISF.px",
        "title": "Consumer Price Index by time and index",
        "series": [
            {
                "value": 139.4,
                "period": "2026H1"
            },
            {
                "value": 137.5,
                "period": "2025H2"
            },
            {
                "value": 134.4,
                "period": "2025H1"
            },
            {
                "value": 132.7,
                "period": "2024H2"
            },
            {
                "value": 129.8,
                "period": "2024H1"
            },
            {
                "value": 129,
                "period": "2023H2"
            },
            {
                "value": 127,
                "period": "2023H1"
            },
            {
                "value": 125.9,
                "period": "2022H2"
            },
            {
                "value": 123.6,
                "period": "2022H1"
            },
            {
                "value": 123.2,
                "period": "2021H2"
            },
            {
                "value": 123.3,
                "period": "2021H1"
            },
            {
                "value": 123.4,
                "period": "2020H2"
            }
        ],
        "constrained": {
            "index": {
                "pos": 0,
                "code": "4",
                "label": "Jan 2008=100"
            }
        },
        "time_dimension": "time"
    },
    "meta": {
        "timestamp": "2026-06-15T11:14:43.603Z",
        "request_id": "a19f9cb1-6d62-41c1-b451-757be706c93c"
    },
    "status": "ok",
    "message": "Series retrieved successfully",
    "success": true
}