Norwegian emissions (the Norwegian Environment Agency)
The Norwegian Environment Agency's norskeutslipp.no — a facility register plus emissions to air and water per component and year, linked to organisation numbers. A central source for ESG/CSRD/Scope 3 and audit. Migrated to a Firebase Function with a Firestore TTL cache (365d, annual publication) for cost control. The CSV parser handles `;` and Norwegian decimal commas. NLOD.
—
Data volume
Yearly
Updates
4
MCP tools
{
"data": "..."
}MCP integration
API endpoints
/facilitiesAnleggsregister (navn, kommune, fylke, bransje, koordinater)
Show curl example
# GET https://data.ketl.no/api/connectors/norske-utslipp/facilities
curl \
-H "Accept: application/json" \
"https://data.ketl.no/api/connectors/norske-utslipp/facilities"Authenticated call — add one of these headers: x-api-key: ketl_… · Authorization: Bearer … — See the full reference in the documentation.
/airUtslipp til luft per anlegg (facilityId, yearFrom, yearTo)
- facilityId required
- Anleggs-ID
facilityId=12345 - yearFrom required
- Fra-årstall (1990–2100)
yearFrom=2020 - yearTo required
- Til-årstall (≥ yearFrom, ≤ 2100)
yearTo=2022
Show curl example
# GET https://data.ketl.no/api/connectors/norske-utslipp/air?facilityId=12345&yearFrom=2020&yearTo=2022
curl \
-H "Accept: application/json" \
"https://data.ketl.no/api/connectors/norske-utslipp/air?facilityId=12345&yearFrom=2020&yearTo=2022"Authenticated call — add one of these headers: x-api-key: ketl_… · Authorization: Bearer … — See the full reference in the documentation.
/waterUtslipp til vann per anlegg (facilityId, yearFrom, yearTo)
- facilityId required
- Anleggs-ID
facilityId=12345 - yearFrom required
- Fra-årstall (1990–2100)
yearFrom=2020 - yearTo required
- Til-årstall (≥ yearFrom, ≤ 2100)
yearTo=2022
Show curl example
# GET https://data.ketl.no/api/connectors/norske-utslipp/water?facilityId=12345&yearFrom=2020&yearTo=2022
curl \
-H "Accept: application/json" \
"https://data.ketl.no/api/connectors/norske-utslipp/water?facilityId=12345&yearFrom=2020&yearTo=2022"Authenticated call — add one of these headers: x-api-key: ketl_… · Authorization: Bearer … — See the full reference in the documentation.
/searchAnleggssøk på fritekst (anleggsnavn)
- query optional
- Fritekstsøk mot anleggsnavn. Vinner over aliaset `q`. Kilden har ikke organisasjonsnummer — søk på anleggs- eller selskapsnavn.
query=Equinor - q optional
- Alias for `query`. Ignoreres når `query` er satt.
q=Equinor
Show curl example
# GET https://data.ketl.no/api/connectors/norske-utslipp/search
curl \
-H "Accept: application/json" \
"https://data.ketl.no/api/connectors/norske-utslipp/search"Authenticated call — add one of these headers: x-api-key: ketl_… · Authorization: Bearer … — See the full reference in the documentation.