diff --git a/plugins/API/Controller.php b/plugins/API/Controller.php
index 416cc728de85f8070ad6270327b6e6da123c99e8..9801005795cf4c9b52967d91e780dbf3e0832cd4 100644
--- a/plugins/API/Controller.php
+++ b/plugins/API/Controller.php
@@ -153,8 +153,8 @@ class Controller extends \Piwik\Plugin\Controller
         Piwik::checkUserHasSomeViewAccess();
 
         return $this->renderTemplate('glossary', array(
-            'reports' => Request::processRequest('API', array('method' => 'API.getGlossaryReports')),
-            'metrics' => Request::processRequest('API', array('method' => 'API.getGlossaryMetrics')),
+            'reports' => Request::processRequest('API', array('method' => 'API.getGlossaryReports', 'filter_limit' => -1)),
+            'metrics' => Request::processRequest('API', array('method' => 'API.getGlossaryMetrics', 'filter_limit' => -1)),
         ));
     }
 }