InvoiceDownloader
← All posts

Export Stripe invoices to CSV for your accountant

·7 min read

Accountants don't want screenshots or a folder of randomly named PDFs. They want a clean table they can reconcile and a set of source documents that match it. Here's how to produce both from Stripe in one step — and what makes a CSV genuinely useful for bookkeeping.

Why Stripe's built-in CSV falls short

Stripe's Payments export lists transactions, not invoices — it can mix in refunds and payouts, and it never includes the invoice PDFs. For bookkeeping you want one row per invoice, with tax broken out.

What belongs in the CSV

A useful bookkeeping export has one row per invoice with the fields that matter for reconciliation:

  • Invoice number — the unique reference your accountant books against
  • Date — issue date, in a sortable format (YYYY-MM-DD)
  • Customer — name and email
  • Amount and tax — net amount and VAT broken out separately
  • Currency and status — paid, open or void
number
date
customer
amount
tax
INV-0247
2026-03-12
Acme Inc
1,200.00
228.00
INV-0246
2026-03-08
Beta LLC
89.00
16.91
INV-0245
2026-03-03
Carta Co
540.00
102.60
This is the shape your accountant actually wants

One CSV, plus the PDFs that match

A spreadsheet alone isn't enough at tax time — your accountant needs the source documents too. InvoiceDownloader gives you the CSV and a ZIP of every invoice PDF, named by date and invoice number so they sort cleanly and map straight to the rows in your spreadsheet.

📦 invoices_2026.zip2.4 MB
2026-03-12_INV-0247.pdf
2026-03-08_INV-0246.pdf
2026-03-03_INV-0245.pdf
… 244 more
invoices.csv
Filenames that sort chronologically and match the CSV rows
Give them the summary to reconcile and the documents to back it up — in one handover.

Filter before you export

Need just last quarter, or only paid invoices? Filter by date range and status first, then export — so the CSV you hand over already matches the period you're reporting. No deleting rows by hand afterwards.

Quarterly handover, automated

On the unlimited plan you can have last month's CSV + PDFs emailed to you (or straight to your accountant) on the 1st. Set it up once in the dashboard.

From CSV to your accounting software

Because the export is a standard CSV, it drops into Excel, Google Sheets, or most accounting tools without reformatting. The separate tax column means you can total VAT for the period in one formula — which matters most when you're preparing for tax season.

Try it on your own invoices

Connect a read-only key and download every invoice as ZIP + CSV.

Get my invoices