Fuego

Export Firestore to JSON Format

Export Firestore collections to JSON while preserving complex data structures, nested objects, and all Firestore data types.

JSON Export Features

Structure Preservation

Maintain all nested objects, arrays, and complex document hierarchies in JSON format.

Data Type Integrity

Preserve Firestore data types including timestamps, geopoints, and references.

Subcollection Support

Export subcollections as part of the hierarchical JSON structure. (coming soon)

Filtered Exports

Apply queries and filters to export specific documents or data ranges.

Batch Processing

Handle large collections efficiently with progress tracking and memory optimization.

Custom Formatting

Configure JSON output formatting including indentation and structure options. Fuego also supports JSONL format for streaming large datasets.

JSON Export Formats

Document Array Format

[
  {
    "id": "doc1",
    "data": {
      "name": "John",
      "profile": {
        "age": 30,
        "active": true
      }
    }
  }
]

Collection Object Format

{
  "doc1": {
    "name": "John",
    "profile": {
      "age": 30,
      "active": true
    }
  }
}

Export Your Firestore Data as JSON

Export Firestore collections to JSON format while preserving all data types and structures. Perfect for backups and migrations.