diff --git a/src/client/epics/index.js b/src/client/epics/index.js
index d196843e8aac7ab11ae8c2e96ac2d805f607f2d1..0b86d09bc122ce45b72281d4fb000e6c65ab824d 100644
--- a/src/client/epics/index.js
+++ b/src/client/epics/index.js
@@ -330,6 +330,12 @@ const fetchSimilarDocumentsEpic = (action$, state$) => action$.pipe(
   })
 )
 
+// const fetchFHAWFSLayersEpic = (action$, state$) => action$.pipe(
+//   ofType(FETCH_FHA_WFS_LAYERS),
+//   withLatestFrom(state$)
+
+// )
+
 const rootEpic = combineEpics(
   fetchPaginatedResultsEpic,
   fetchResultsEpic,
diff --git a/src/server/index.js b/src/server/index.js
index 47715fe853487439489bc9c3649700a16bf0502d..56e30837222887e306f3e0950cf223e9c394fec3 100644
--- a/src/server/index.js
+++ b/src/server/index.js
@@ -2,6 +2,7 @@ import express from 'express'
 import path from 'path'
 import bodyParser from 'body-parser'
 import { has } from 'lodash'
+import axios from 'axios'
 import {
   getResultCount,
   getPaginatedResults,
@@ -154,6 +155,22 @@ app.get(`${apiPath}/search`, async (req, res, next) => {
   }
 })
 
+app.get(`${apiPath}/fha_wfs`, async (req, res, next) => {
+  const url = `
+     http://kartta.nba.fi/arcgis/services/WFS/MV_Kulttuuriymparisto/MapServer/WFSServer?request=GetFeature` +
+    `&service=WFS&version=2.0.0&typeName=${req.query.layer}&srsName=EPSG:4326&outputformat=geojson&bbox=${req.query.boxBounds}
+  `
+  try {
+    const response = await axios({
+      method: 'get',
+      url
+    })
+    res.send(response.data.features)
+  } catch (error) {
+    next(error)
+  }
+})
+
 // Express server is used to serve the React app only in production
 if (!isDevelopment) {
   /*  Routes are matched to a url in order of their definition