diff --git a/node_export.module b/node_export.module
index c5c232c..4ec3fd3 100644
--- a/node_export.module
+++ b/node_export.module
@@ -1079,13 +1079,19 @@ function node_export_format_handlers() {
 function _node_export_entity_info($entity) {
   $info = array();
 
+  // Field Collection support.
   if (method_exists($entity, 'entityType')
       && $entity->entityType() == 'field_collection_item') {
-    $info['type'] = $entity->entityType();
-
-    // Field the collection is attached to.
+    $info['type'] = 'field_collection_item';
     $info['bundle'] = $entity->field_name;
   }
+  // Paragraphs support.
+  elseif (method_exists($entity, 'entityType')
+      && $entity->entityType() == 'paragraphs_item') {
+    $info['type'] = 'paragraphs_item';
+    $info['bundle'] = $entity->bundle;
+  }
+  // Nodes.
   else {
     $info['type'] = 'node';
     $info['bundle'] = $entity->type;
