Zum Inhalt springen
GET /v1/meta

Service metadata

Live testen

10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.

Eigene Header (optional)
api.oanor.com/faroe-stats-api

Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.

API-Key holen

Code-Snippets

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

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.

{
    "data": {
        "note": "path is relative to the H2 database, e.g. IP/IP02/pris_alt.px (consumer prices).",
        "source": "Statistics Faroe Islands (Hagstova Føroya)",
        "upstream": "https://statbank.hagstova.fo/api/v1/en/H2",
        "cpi_table": "IP/IP02/pris_alt.px",
        "endpoints": [
            "/v1/cpi",
            "/v1/series",
            "/v1/table",
            "/v1/catalog",
            "/v1/meta"
        ],
        "description": "Keyless gateway over the Statistics Faroe Islands PxWeb API. /v1/cpi gives the latest Faroese consumer price index and inflation (index + annual + period change, quarterly); /v1/series pulls any table as a clean time-series; /v1/table inspects a table's variables; /v1/catalog browses the subject tree.",
        "documentation": "https://api.oanor.com/faroe-stats-api"
    },
    "meta": {
        "timestamp": "2026-06-15T20:41:09.118Z",
        "request_id": "8e67873b-7d10-472e-9c58-554022de84d5"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}