How-To Guide
8 min read

How to Export Products from Magento (2026 Guide)

Follow these steps to export your Magento products as a CSV file. Once exported, you can use any of our converter tools to transform the data for your target system.

Export Steps

1

Log in to the Magento Admin Panel

Navigate to your Magento 2 admin URL and sign in with administrator credentials. You need admin-level access to use the System > Data Transfer export functionality.

2

Navigate to the Data Transfer Export section

In the left sidebar, click on System to expand the menu, then click on Data Transfer, and finally click Export. This opens the export configuration page where you can specify what entity type to export and how to format the output.

Magento 2 admin sidebar showing System menu expanded with Data Transfer and Export options
Navigate to System > Data Transfer > Export in the admin sidebar.
3

Select Products as the entity type

In the Entity Type dropdown, select Products. This tells Magento to export product catalog data. The page will update to show product-specific filter and attribute options below the main export settings.

Magento 2 export configuration page with Entity Type dropdown set to Products and CSV file format selected
Select Products as the entity type and CSV as the file format.
4

Choose CSV as the export file format

In the Export File Format dropdown, select CSV. Optionally tick the Fields Enclosure checkbox to wrap values containing special characters in double quotes, which helps prevent data corruption when opening the file in spreadsheet applications.

Tip: Always enable Fields Enclosure if your product descriptions contain commas, quotes, or HTML tags to avoid column misalignment in the CSV.
5

Apply attribute filters if needed

In the Entity Attributes section below, you can apply filters to export only specific products. Filter by SKU range, product type, attribute set, visibility, or any custom attribute. Leave all filters empty to export your entire product catalog.

Warning: Large catalogs with tens of thousands of products should be exported in batches using filters to avoid server timeouts. Filter by product type or category to create manageable export files.
6

Click Continue to start the export

Click the Continue button at the bottom of the page to begin the export process. Magento schedules the export through a cron job. The exported file will be saved to the var/export directory on your Magento server.

7

Download the exported file

Once the export is complete, you will see a download link or notification. Click it to download the CSV file to your computer. If you do not see the link, check the var/export directory on your server via FTP or SSH for the generated file.

8

Verify the exported product data

Open the CSV in Google Sheets or a text editor to verify the data. Check that required fields like sku, name, price, attribute_set_code, and product_type are present and correctly populated. Configurable product variations appear in the configurable_variations column as pipe-separated SKU and attribute pairs.

Tip: If you plan to re-import this file, do not modify the sku column as it is the unique identifier Magento uses to match products during import.

Required Products Fields

Field Type Description Example
sku Text Stock keeping unit (unique, no special characters) PROD-001
attribute_set_code Text Attribute set code (must exist in Magento) Default
product_type Choice Product type simple
product_websites Text Website codes (comma-separated for multiple) base
name Text Product name Blue Cotton Shirt
price Currency Regular price (without currency symbol) 29.99

Your Magento export must include these fields for successful conversion.

Next Step Once you have exported your products, use one of the converter tools below to transform your file.

Frequently Asked Questions

Magento exports products as a CSV (Comma Separated Values) file, which can be opened in Excel or Google Sheets.
The file is usually downloaded to your browser's default Downloads folder. Check your Downloads folder or look for the download notification.