Export Inventory
Download your inventory data in Excel, CSV, or JSON format. Choose which columns to include, select an export scope, and let the browser generate the file instantly.
Opening the Export Modal
Access the export feature from the inventory menu. The option appears in the kebab dropdown alongside other bulk actions.
Quick access
Export Formats
Choose from three output formats depending on how you plan to use the data.
Format recommendations
Column Selection
Pick which columns to include in the export. Required columns cannot be deselected to ensure data integrity.
Export Scope
Decide whether to export your entire inventory or only the items visible on the current page.
Large exports
Client-Side Processing
The entire export pipeline runs in your browser. No data is sent to external services.
- 1Fetch from API
Items are retrieved from the server in batches of 100 to avoid memory pressure on large inventories.
- 2Transform data
Dates are formatted to locale strings and currency values receive proper formatting before export.
- 3Generate file
Excel and CSV files are created via SheetJS. JSON files use native serialization with pretty-printing.
- 4Trigger download
The browser creates a temporary Blob URL and initiates the download automatically.
Privacy