diff --git a/includes/features.ctools.inc b/includes/features.ctools.inc
index 227656b..7781352 100644
--- a/includes/features.ctools.inc
+++ b/includes/features.ctools.inc
@@ -104,7 +104,9 @@ function ctools_features_export_render($module, $data) {
 function ctools_component_features_api($module_name) {
   $api = array();
   foreach (_ctools_features_get_info() as $component => $info) {
-    $api[$component] = $info;
+    if (($info['module'] == $module_name) || ($info['module'] == 'ctools')) {
+      $api[$component] = $info;    
+    }
   }
   return $api;
 }
