Vai al contenuto
GET /v1/meta

Service metadata

Provalo dal vivo

10 chiamate gratuite al giorno — senza registrazione, senza chiave API. Passa dal gateway oanor.

Intestazioni personalizzate (facoltative)
api.oanor.com/greenland-stats-api

Funziona. Prendi una chiave API e usala nel tuo progetto.

Ottieni una chiave API

Frammenti di codice

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

Risposta di esempio

Una risposta reale di questo endpoint, acquisita dall'ultimo health check.

{
    "data": {
        "source": "Statistics Greenland (Naatsorsueqqissaartarfik)",
        "upstream": "https://bank.stat.gl/api/v1/en/Greenland",
        "cpi_table": "PR/PRXPRISF.px",
        "databases": [
            "ES Businesses",
            "FI Fisheries and catch",
            "IE Foreign trade",
            "PR Prices",
            "UD Education",
            "EN Energy"
        ],
        "endpoints": [
            "/v1/cpi",
            "/v1/series",
            "/v1/table",
            "/v1/databases",
            "/v1/meta"
        ],
        "description": "Keyless gateway over Statistics Greenland's PxWeb API. /v1/cpi gives the latest Greenlandic consumer price index and annual inflation; /v1/series pulls any PxWeb table as a clean time-series; /v1/table and /v1/databases discover the catalog.",
        "documentation": "https://api.oanor.com/greenland-stats-api"
    },
    "meta": {
        "timestamp": "2026-06-15T11:14:44.310Z",
        "request_id": "d153d083-829d-4e79-876a-de3e816baf4a"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}