Lantmäteriet STAC (geodata catalogue)
Lantmäteriet (Sweden's mapping authority) is gradually moving to a STAC API (SpatioTemporal Asset Catalog) for download products — including the topographic web map raster, the 1:10,000 raster map and the property-division vector layer. The connector exposes STAC discovery (collections), item search (bbox/datetime/limit) and single-item lookups. Requires a Geotorget token. A hard transition has been announced for 1 December 2026. Complements the Lantmäteriet Direkt APIs (place names/addresses/property) with catalogue/geodata downloads.
—
Data volume
Daily
Updates
3
MCP tools
{
"source": "lantmateriet-stac",
"kind": "search",
"query": "collections=topografisk-webbkarta-raster&bbox=12.9,55.5,13.1,55.7",
"resultCount": 2,
"data": {
"type": "FeatureCollection",
"features": [
{
"type": "Feature",
"id": "topografisk-webbkarta-raster.20260512",
"collection": "topografisk-webbkarta-raster"
}
]
}
}MCP integration
API endpoints
/collectionsRequires configurationSTAC-samlinger (katalog)
LANTMATERIET_STAC_API_KEY (Geotorget-token)
Show curl example
# GET https://data.ketl.no/api/connectors/lantmateriet-stac/collections
curl \
-H "Accept: application/json" \
"https://data.ketl.no/api/connectors/lantmateriet-stac/collections"Authenticated call — add one of these headers: x-api-key: ketl_… · Authorization: Bearer … — See the full reference in the documentation.
/searchRequires configurationSTAC item-søk (bbox/datetime/collections/limit)
LANTMATERIET_STAC_API_KEY (Geotorget-token)
- bbox optional
- Avgrensningsboks som 4 (2D) eller 6 (3D) komma-separerte tall — `minLon,minLat,maxLon,maxLat`. Et annet antall ledd, eller et ledd som ikke er et tall, avvises med 400.
bbox=17.6,59.2,18.4,59.6 - datetime optional
- RFC 3339-tidspunkt eller -intervall (`../` for åpen ende). Maks 120 tegn; andre tegn enn dato/tid-tegn avvises med 400.
datetime=2023-01-01T00:00:00Z/2023-12-31T23:59:59Z - collections optional
- Komma-separerte STAC-collection-ID-er. Maks 300 tegn; kun `\w`, `,`, `.`, `:` og `-` aksepteres. Krever LANTMATERIET_STAC_API_KEY; hent gyldige ID-er fra /api/connectors/lantmateriet-stac/collections.
- limit optional
- Antall items (1–100, standard 10). En verdi utenfor intervallet avvises med 400 — den klemmes ikke.
limit=10
Show curl example
# GET https://data.ketl.no/api/connectors/lantmateriet-stac/search
curl \
-H "Accept: application/json" \
"https://data.ketl.no/api/connectors/lantmateriet-stac/search"Authenticated call — add one of these headers: x-api-key: ketl_… · Authorization: Bearer … — See the full reference in the documentation.
/items/{collection}/{id}Requires configurationHent én STAC-item (GeoJSON Feature)
LANTMATERIET_STAC_API_KEY (Geotorget-token)
Show curl example
# GET https://data.ketl.no/api/connectors/lantmateriet-stac/items/{collection}/{id}
curl \
-H "Accept: application/json" \
"https://data.ketl.no/api/connectors/lantmateriet-stac/items/{collection}/{id}"Authenticated call — add one of these headers: x-api-key: ketl_… · Authorization: Bearer … — See the full reference in the documentation.