diff --git a/frontend-js/src/main/js/ConfigurationType.js b/frontend-js/src/main/js/ConfigurationType.js
index ca7078fe5cc21ffc87eaba1dd3516153ea8dd8b7..f43f816fe4ed9b93e69a7dff8a8f689d7927746b 100644
--- a/frontend-js/src/main/js/ConfigurationType.js
+++ b/frontend-js/src/main/js/ConfigurationType.js
@@ -11,6 +11,7 @@ var ConfigurationType = {
   REQUEST_ACCOUNT_EMAIL: "REQUEST_ACCOUNT_EMAIL",
   SIMPLE_COLOR_VAL: "SIMPLE_COLOR_VAL",
   SEARCH_DISTANCE: "SEARCH_DISTANCE",
+  SEARCH_RESULT_NUMBER: "SEARCH_RESULT_NUMBER",
   USER_MANUAL_FILE: "USER_MANUAL_FILE",
 };
 
diff --git a/frontend-js/src/main/js/ServerConnector.js b/frontend-js/src/main/js/ServerConnector.js
index 6c03d29d76febc9a5d0da5e539a173d470c3b32e..2899a28b5400eb2e3aff549e27026301cb19775d 100644
--- a/frontend-js/src/main/js/ServerConnector.js
+++ b/frontend-js/src/main/js/ServerConnector.js
@@ -999,6 +999,13 @@ ServerConnector.getElementsByQuery = function (params) {
 
   return self.getProjectId(params.projectId).then(function (result) {
     queryParams.projectId = result;
+    return self.getConfigurationParam(ConfigurationType.SEARCH_RESULT_NUMBER);
+  }).then(function (defaultCount) {
+    if (params.count !== undefined) {
+      filterParams.count = params.count;
+    } else {
+      filterParams.count = defaultCount;
+    }
     return self.readFile(self.getSearchUrl(queryParams, filterParams));
   }).then(function (content) {
     var array = JSON.parse(content);
diff --git a/frontend-js/testFiles/apiCalls/projects/sample/models/all/bioEntities.search/perfectMatch=false&query=s1&token=MOCK_TOKEN_ID& b/frontend-js/testFiles/apiCalls/projects/sample/models/all/bioEntities.search/count=100&perfectMatch=false&query=s1&token=MOCK_TOKEN_ID&
similarity index 100%
rename from frontend-js/testFiles/apiCalls/projects/sample/models/all/bioEntities.search/perfectMatch=false&query=s1&token=MOCK_TOKEN_ID&
rename to frontend-js/testFiles/apiCalls/projects/sample/models/all/bioEntities.search/count=100&perfectMatch=false&query=s1&token=MOCK_TOKEN_ID&
diff --git a/frontend-js/testFiles/apiCalls/projects/sample/models/all/bioEntities.search/perfectMatch=true&query=s1&token=MOCK_TOKEN_ID& b/frontend-js/testFiles/apiCalls/projects/sample/models/all/bioEntities.search/count=100&perfectMatch=true&query=s1&token=MOCK_TOKEN_ID&
similarity index 100%
rename from frontend-js/testFiles/apiCalls/projects/sample/models/all/bioEntities.search/perfectMatch=true&query=s1&token=MOCK_TOKEN_ID&
rename to frontend-js/testFiles/apiCalls/projects/sample/models/all/bioEntities.search/count=100&perfectMatch=true&query=s1&token=MOCK_TOKEN_ID&
diff --git a/frontend-js/testFiles/apiCalls/projects/sample/models/all/bioEntities.search/query=s1&token=MOCK_TOKEN_ID& b/frontend-js/testFiles/apiCalls/projects/sample/models/all/bioEntities.search/count=100&query=s1&token=MOCK_TOKEN_ID&
similarity index 100%
rename from frontend-js/testFiles/apiCalls/projects/sample/models/all/bioEntities.search/query=s1&token=MOCK_TOKEN_ID&
rename to frontend-js/testFiles/apiCalls/projects/sample/models/all/bioEntities.search/count=100&query=s1&token=MOCK_TOKEN_ID&
diff --git a/frontend-js/testFiles/apiCalls/projects/sample/models/all/bioEntities.search/token=MOCK_TOKEN_ID& b/frontend-js/testFiles/apiCalls/projects/sample/models/all/bioEntities.search/count=100&token=MOCK_TOKEN_ID&
similarity index 100%
rename from frontend-js/testFiles/apiCalls/projects/sample/models/all/bioEntities.search/token=MOCK_TOKEN_ID&
rename to frontend-js/testFiles/apiCalls/projects/sample/models/all/bioEntities.search/count=100&token=MOCK_TOKEN_ID&