Naar de inhoud
GET /v1/meta

Service metadata

Probeer het live

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

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

Voorbeeldrespons

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

{
    "data": {
        "note": "series takes an INE series code (e.g. IPC251852); table takes an INE table id (e.g. 50902).",
        "source": "Statistics Spain (Instituto Nacional de Estadística, INE)",
        "upstream": "https://servicios.ine.es/wstempus/js/EN",
        "cpi_table": "50902",
        "endpoints": [
            "/v1/cpi",
            "/v1/series",
            "/v1/table",
            "/v1/operations",
            "/v1/meta"
        ],
        "description": "Keyless gateway over INE's Tempus3 JSON API. /v1/cpi gives the latest Spanish consumer price index and inflation; /v1/series fetches any INE time-series by code; /v1/table returns all series of a statistical table; /v1/operations lists the statistical operations catalogue.",
        "documentation": "https://api.oanor.com/spain-stats-api"
    },
    "meta": {
        "timestamp": "2026-06-15T11:14:36.014Z",
        "request_id": "6768d133-210d-4781-a3f0-642995a87ed2"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}