What’s inside your Amazon data download ZIP
Last updated: May 2026, by the TinyFlash team
Amazon’s data-request ZIP arrives as a single archive that contains 50 to 74 sub-zips. The first time you open it, the layout is genuinely confusing, most folders are Alexa, Kindle, Prime Video, and ad-targeting metadata you don’t need. This page walks through every folder, flags the one file most users actually want, and lists the 28 columns inside it so you can map them to whatever downstream tool you’re using.
TL;DR
- The folder you want is
Retail.OrderHistory.1, the file isRetail.OrderHistory.1.csv. - Returns live in a separate file:
Retail.CustomerReturns.1.1.csv. Most DIY templates miss this and totals come out 8 to 15% off. - When Excel asks “Convert leading zeros?” click Don’t Convert, otherwise zip codes break.
- Order History Downloader parses the whole ZIP for you and joins orders and returns automatically.
The ZIP at a glance
When the email link finally arrives and you download the file, you get a single archive named something like Your Orders.zip or YYYY-MM-DD-AmazonExport.zip. Inside that one archive: a directory containing 50 or so sub-zips, each named for a category of data. The Intercept reported 74 in 2022; the count drifts a bit year-over-year as Amazon adds and consolidates categories.
A typical layout looks like this:
Your Orders/
├── FileDescriptions/
│ └── DataExportManifest.csv (reference, not orders)
├── Retail.OrderHistory.1/
│ └── Retail.OrderHistory.1.csv ← THIS is the file you want
├── Retail.CustomerReturns.1/
│ └── Retail.CustomerReturns.1.1.csv ← returns, separate file
├── Retail.OutboundShipments.1/
├── Subscribe-and-Save.Subscriptions/
├── Retail.AddressBook/
├── Audible.* (multiple folders)
├── Kindle.* (multiple folders)
├── Digital.PrimeVideo.Viewinghistory/
├── Digital-Music.* (multiple folders)
├── Alexa.* (multiple folders)
├── Search-Data.Customer-Engagement/
├── Advertising.* x3
├── ... and 30+ moreThe exact folder names vary slightly by account region and request type, but Retail.OrderHistory.1 is consistent across every account.
Folder-by-folder map
The full list of folders runs to 50 or more on most accounts. The table below covers the ones that appear on every account, with a frank assessment of which ones matter for order-history work.
| Folder | Contains | Matters? |
|---|---|---|
| Retail.OrderHistory.1 | Retail.OrderHistory.1.csv, your full order list | Yes |
| Retail.CustomerReturns.1 | Retail.CustomerReturns.1.1.csv, every return with date and reason | Yes |
| Retail.OrdersReturned.Payments.1 | Refund payment records, often paired with returns | Yes |
| Retail.OutboundShipments.1 | Carrier and tracking metadata for shipped orders | Sometimes |
| Subscribe-and-Save.Subscriptions | Active and past Subscribe & Save subscriptions | Sometimes |
| Retail.AddressBook | Saved shipping and billing addresses | Sometimes |
| Retail.Reviews | Reviews you have written | No |
| Retail.WishList | Your wishlists, with item links | No |
| Audible.CustomerLibrary | Books and credits from your Audible account | No |
| Kindle.Devices.PatronTransfers | Kindle device registrations and book transfers | No |
| Digital.PrimeVideo.Viewinghistory | Every Prime Video title you have watched | No |
| Digital-Music.* | Amazon Music play history and library | No |
| Search-Data.Customer-Engagement | Searches you have run on amazon.com | No |
| Advertising.* (×3) | Ad-targeting metadata, split across 3 sub-zips | No |
| Alexa.* (multiple) | Alexa device interactions, voice transcripts, smart home commands | No |
| FileDescriptions | A reference manifest naming each subfolder, schema-dump style | No |
The folders flagged Yes are what OHD reads when you drop the ZIP into the popup. Folders flagged Sometimes are read opportunistically (for example, address-book data is used to label shipments by destination if the toggle is on). Everything else is ignored.
The one file: Retail.OrderHistory.1.csv
Inside Retail.OrderHistory.1 is a single CSV with one row per line item across your full account history. The file is comma-separated, UTF-8 encoded, with a header row. Most personal accounts produce a CSV in the 0.5 to 5 MB range; very large accounts (a decade-plus of monthly Amazon shopping) can hit 20 MB or more.
Here is the full column list. Type and a short note for each:
| Column | Type | Notes |
|---|---|---|
| Order ID | string | Amazon's canonical order identifier (e.g. 113-1234567-1234567) |
| Order Date | datetime | ISO 8601, UTC |
| Purchase Order Number | string | Usually empty for personal accounts |
| Currency | string | USD, GBP, EUR, etc. |
| Unit Price | decimal | Per-line item price before tax |
| Unit Price Tax | decimal | Per-line tax amount |
| Shipping Charge | decimal | Shipping cost for this line |
| Total Discounts | decimal | Promotional discounts applied |
| Total Owed | decimal | Line total after tax and discounts |
| Shipment Item Subtotal | decimal | Pre-tax subtotal for the shipment containing this line |
| Shipment Item Subtotal Tax | decimal | Tax for the shipment subtotal |
| ASIN | string | Amazon Standard Identification Number, the product key |
| Product Condition | string | New, Used, Refurbished |
| Quantity | integer | Units ordered for this line |
| Payment Instrument Type | string | Visa ending in 1234, Amazon balance, gift card, etc. |
| Order Status | string | Shipped, Pending, Cancelled |
| Shipment Status | string | Delivered, In transit, Returned |
| Ship Date | datetime | When the shipment dispatched |
| Shipping Address | string | Full address. Zip codes have leading zeros, watch Excel |
| Billing Address | string | Full address |
| Carrier Name & Tracking Number | string | Carrier plus tracking ID, often combined |
| Product Name | string | Item title at time of order |
| Gift Message | string | Custom gift message if you added one |
| Gift Sender Name | string | Sender shown on the gift receipt |
| Gift Recipient Contact Details | string | Recipient info if shipped as a gift |
| Item Serial Number | string | Hardware serial for electronics, often empty |
| Buyer Name | string | Account holder name |
| Group Name | string | Amazon Household group, if linked |
A few columns surprise people on first read. Quantity is per line, not per order, so a single order with three items shows up as three rows. Payment Instrument Type is a label, not a number, Visa ending in 1234 rather than the full card number, no full card data ever ships in the export. Item Serial Number is populated for hardware purchases where Amazon captured the serial at fulfilment, often blank for everything else.
The other file you can’t skip: Retail.CustomerReturns.1.1.csv
Returns live in their own folder, Retail.CustomerReturns.1, and their own CSV. That single design choice is the source of most reconciliation errors when people build their own Excel template against the data ZIP, the order CSV looks complete because every row has a Total Owed, but those totals don’t reflect anything you returned. If you spent $4,200 on Amazon last year but returned $600 of it, a naive sum of the orders CSV reports $4,200. The actual net is $3,600.
The returns CSV holds: Order ID, Return Reason, Return Date, Refund Amount, Refund Currency, Refund Type (cash, credit, gift card), Item Title, ASIN, and a few metadata columns. The Order ID column is the join key. To reconcile, you LEFT JOIN the returns CSV onto the orders CSV on Order ID, then subtract the Refund Amount from the Total Owed.
Doing this by hand in Excel involves VLOOKUP and SUMIF and a lot of patience. OHD does the join automatically when you upload the ZIP, so refunds appear netted against the original line in the viewer, and the Insights tab shows true net spend rather than gross. For a deeper dive on how OHD handles refunds, see Amazon refund history.
The Excel trap: leading zeros
When you double-click Retail.OrderHistory.1.csv on a Mac or Windows machine, Excel opens it with a default import that aggressively type-casts every column. Numeric strings with leading zeros, the most common case is US zip codes from New England states like 02134, get auto-converted to integers and the leading zero is permanently dropped.
Recent Excel versions show a dialog before opening: “Some of the data in this file appears to have leading zeros. Do you want to convert?” The correct answer is Don’t Convert. If you already clicked Convert, close the file without saving, then re-open with the right option, otherwise the saved version locks in the bad data.
This is one of the genuinely annoying parts of working with the raw CSV by hand, and it’s why a lot of bookkeeping guides recommend importing into Google Sheets instead (Sheets handles leading zeros more gently). OHD avoids the issue entirely because the parsing happens in JavaScript, which keeps strings as strings. Whatever export format you pick (CSV, Excel, PDF), zip codes stay intact.
How OHD parses the ZIP
Drop the original Your Orders.zip onto the OHD popup’s Amazon Export tab. Within a few seconds, OHD has:
- Read the orders CSV and parsed every row into a structured order record.
- Read the returns CSV and joined refunds onto the matching orders.
- Read the optional metadata folders (addresses, subscriptions, shipments) for enrichment.
- Loaded everything into the OHD viewer, sortable by date, total, retailer, or status.
- Computed year-over-year spend, monthly subtotals, and recurring-subscription flags for the Insights tab.
From the viewer you can export back to a clean CSV (for tax software), a multi-sheet Excel workbook (for bookkeeping), or a bulk-PDF zip of receipts (for HMRC or IRS files). All processing happens in your browser; nothing about the ZIP or its contents leaves your computer.
The full upload walkthrough is on the Amazon data export and backfill page. If your upload fails with an “invalid format” error, the most common cause is that the ZIP was extracted and re-zipped, which breaks the inner folder structure. See troubleshooting the GDPR ZIP upload for fixes.
Common questions
Why are there so many folders in the ZIP?
Amazon's data export covers every part of your account, not just orders. You get folders for Alexa interactions, Kindle library, Prime Video viewing history, Audible, Amazon Music, search history, and a few dozen other categories. The folder count varies but is typically 50 to 74 sub-zips. For order-history work, only one of those folders matters: Retail.OrderHistory.1.
Which file actually has my orders?
Retail.OrderHistory.1/Retail.OrderHistory.1.csv. That single CSV holds every order on the account in a one-row-per-line-item shape. Returns are tracked separately in Retail.CustomerReturns.1.1.csv.
Do I have to merge orders and returns myself?
If you load the CSVs into a spreadsheet by hand, yes. Returns live in a different CSV from orders, and Excel won't auto-link them. Order History Downloader handles the join automatically when you drop the ZIP onto the popup, so refunds show up netted against the original line.
Excel keeps stripping my zip codes. How do I stop it?
Excel auto-converts numeric-looking columns and removes leading zeros. When Excel asks 'Convert leading zeros?' on opening the CSV, click Don't Convert. If you already opened it the wrong way, close without saving and re-open with the Don't Convert option, otherwise New England zip codes (e.g. 02134) get permanently broken.
What about pre-2021 orders?
The data ZIP usually goes back to your account creation, even for orders that no longer appear in the Your Orders web UI. If you have an account from 2008 with orders Amazon hides from the live page today, the ZIP recovers them. That's the whole reason the ZIP path exists: live import goes only as far back as Amazon's UI shows.
Can I delete the folders I don't need?
You can, but don't unzip and re-zip the archive itself. OHD parses the original archive structure. If you want to free disk space, just keep the original ZIP and delete the unzipped output. Re-zipping a subset breaks the parser.
Skip the spreadsheet wrangling
Drop your Amazon data ZIP onto Order History Downloader and skip the VLOOKUP templates. Free Chrome extension. All processing happens in your browser.
Related guides
Amazon data export and backfill
The full Path A vs Path B walkthrough, end to end.
Got the confirmation email?
What to do after Amazon emails “We’ve received a request for your personal data.”
Amazon refund history
Per-item refunds with the date issued and per-line linkage.
Amazon order history for taxes
Tax-prep narrative, column-by-column walk-through, sample CSV.
Troubleshooting ZIP uploads
What to do when OHD says “invalid format.”
FAQ
Privacy, retailers, pricing, and more.
Sister tools by TinyFlash
Video Speed Controller Pro
Adjust video playback speed on YouTube, Netflix, and any HTML5 video. Free for Chrome, Brave, and Edge.
