Download App
Supplier CSV workflow

How to Download Supplier Product Images from a CSV File

A supplier CSV already lists the product image URLs. This 2026 guide shows how to turn that CSV into a folder of SKU-named, ready-to-use images — locally, with retry and folder rules, ready for Amazon, Shopify, eBay, or any marketplace upload.

Updated June 5, 2026CSV • SKU • marketplace uploadLocal processing, no cloud upload
Flat SaaS illustration of a supplier CSV with sku, image_url, and position columns flowing through Sheet Image Downloader into a folder of SKU-named images
Supplier CSV → Sheet Image Downloader → folder of SKU-named images, fully local.

Why a Supplier CSV Is the Cleanest Input

Image URLs arrive in many shapes: a txt dump, a JSON scrape, a copy-paste from email, or a screenshot of a portal. A supplier CSV is the cleanest input of them all, because each row already pairs an image URL with the metadata that makes the file usable: a SKU, an optional position, and an optional category or variant.

That pairing is what makes the difference between a folder of generic IMG_0001.jpg files and a folder that drops straight into a marketplace import. Once the columns are right, the rest of the workflow is just download, retry, and a 60-second QA pass.

Privacy first. A good supplier CSV downloader reads the file locally and writes images to a local folder. The CSV and the resulting images never leave your machine. This matters when the supplier list is private, time-sensitive, or paid content.

CSV Columns to Prepare

Most supplier CSVs are close to ready, but almost none of them are exactly ready. Spend two minutes on column cleanup and the rest of the workflow is smooth. Six columns cover 95 percent of real supplier exports.

ColumnRequiredNotes
image_urlYesDirect link to a JPG / PNG / WebP. No tracking redirects, no auth tokens.
skuYesUsed as the filename base. Keep it short, alphanumeric, no slashes.
positionOptional1, 2, 3 for the order of images within a product. Becomes the suffix in the filename.
variantOptionalColor, size, etc. If you want per-variant folders, use this column as the folder name.
categoryOptionalUsed as the top-level folder. Helpful when you have multiple suppliers or product lines.
titleOptionalNot used for download, but useful for QA and post-upload review.

If a supplier gives one row per product and multiple image URLs in a single cell (separated by | or ;), use the spreadsheet's "split text to columns" function first, then stack the rows with the same SKU. The downloader needs one URL per row.

Filenames, Folders, and SKU Rules

Filenames are the difference between a usable folder and a junk drawer. The 2026 best practice is to name files by SKU with an optional position suffix for multi-image products. Filename rules survive marketplace upload; the wrong filenames do not.

Use the SKU as the filename base

Marketplaces match images to your catalog by filename. A clean SKU is the only thing guaranteed to be unique across suppliers.

Append a position suffix for multi-image products

SKU-001_1.jpg, SKU-001_2.jpg. Some marketplaces also accept SKU-001-main.jpg + SKU-001-alt.jpg.

Keep the original extension

If the source URL is .webp and the marketplace wants .jpg, convert before upload. Most uploaders do not convert on the fly.

Lowercase and avoid special characters

Some marketplaces are case-sensitive on Linux servers. Use - or _ instead of &, %, or accented characters.

For a deeper dive, see the SKU naming and organization guide.

Step-by-Step Local Download Workflow

This is the full sequence we use ourselves when onboarding a new supplier catalog. The whole flow is local; the supplier CSV never leaves the machine.

1

Clean the CSV

Remove rows with empty or non-image URLs, trim whitespace, and re-save the file as UTF-8 before opening it in a desktop tool.

2

Open in Sheet Image Downloader

Pick image_url as the source and sku as the filename. Enable the position suffix and folder grouping if those columns exist.

3

Pick a fresh output folder

Use a new empty folder per supplier job. Naming it with the supplier and date keeps the catalog auditable.

4

Run a 20 to 50 row pilot

Verify the filename pattern, the folder layout, and that no images are corrupted. Adjust settings before the full batch.

5

Run the full batch

For most supplier jobs of 500 to 3,000 images, the full run completes in a few minutes on a local desktop.

6

Read the report

A good report tells you which row failed, the URL it tried, and the reason: 404, hotlink block, timeout, or wrong content type.

7

Run a retry pass

Scope the retry to the failed rows only. This is the step that separates a 95% pipeline from a 100% one. See the retry guide.

8

Archive the CSV with the report

Save the original CSV and the retry report. You will thank yourself in two months when a SKU needs to be re-pulled.

Flat SaaS illustration of the output folder structure produced by a supplier CSV download: top-level folder, one subfolder per category, and SKU-named image files inside each
A predictable folder structure is what makes the output usable for the next step, whether that is Shopify import, an Amazon batch upload, or a backup.

QA Checklist Before Marketplace Upload

Never upload a folder you have not eyeballed. A 60-second QA pass catches the 5% of issues that marketplace uploaders turn into 2-day support tickets.

  1. All image URLs resolved to a real file. The retry report should show zero unresolved rows before upload.
  2. Filenames are unique within the upload folder. Two SKUs with the same filename will silently overwrite each other on most marketplaces.
  3. No accidental duplicates. If a SKU appears twice in the source CSV with different URLs, decide which one wins before upload.
  4. Image dimensions meet the marketplace minimum. Amazon, Shopify, and eBay each have their own minimum pixel sizes. The downloader will not resize — that step happens after.
  5. Image format is supported by the marketplace. Most accept JPG and PNG. Some reject WebP. Convert before upload if needed.
  6. Folder structure matches the marketplace upload tool. The marketplace upload guide has the exact layout for each.

Once the QA passes, the folder is ready for upload. A clean supplier CSV workflow turns what used to be a half-day manual job into a 10-minute setup and a 30-minute run.

Common CSV and URL Problems (and How to Fix Them)

Five failure patterns cover 90 percent of real supplier CSVs. If you can recognize these on sight, the retry pass is much faster.

Tracking redirect, not the real image

Some suppliers give URLs that go through utm_source or fbclid first. Replace the tracker domain with the CDN domain in your spreadsheet, or run a pre-flight that resolves the final URL.

Hotlink protection returns a placeholder

Some supplier image servers check the Referer header and return a 1x1 placeholder. A desktop tool that includes a normal browser Referer usually fixes this.

Mixed encodings in the CSV

UTF-8, GBK, and accented characters in the same file break filenames. Re-save as UTF-8 (no BOM) before opening in any desktop tool.

One row per product, multiple URLs in a single cell

Use the spreadsheet's text-to-columns feature, then stack the rows so each image has its own row sharing the same SKU and a position number.

Filename collisions across SKUs

If two SKUs share the same source filename (for example both main.jpg), one will silently overwrite the other. Always use the SKU column as the filename base.

Empty rows treated as malformed URLs

Blank lines from a copy-paste usually fail the URL parse. Remove them or let the downloader skip them before the full run.

Frequently Asked Questions

Can I download images from a supplier CSV without uploading the file?Yes. A local desktop tool reads the CSV from your computer and writes images to a local folder. The CSV and the image URLs never have to leave your machine.
What columns should a supplier CSV have for image download?At minimum: SKU (or product ID), image URL, and an optional position or variant column. A folder or category column helps if you want images grouped by supplier or product line.
How do I name the downloaded files so they match the SKU?Use the SKU column as the filename, append a position suffix for multi-image products (e.g. SKU-001_1.jpg, SKU-001_2.jpg), and group them in a folder column if your spreadsheet has one.
What if some image URLs in the supplier CSV fail to download?Most failures are hotlink protection, expired links, or wrong content type. Run a retry pass on the failed rows only, then review the report. The retry report should tell you which row failed and why.
Is the supplier CSV sent to a server during the download?With a local desktop tool, the CSV is read from disk and images are written to a folder you choose. No upload step is required, and no third party receives the file.

Turn a supplier CSV into a folder of SKU-named images, locally.

Sheet Image Downloader reads your CSV, uses the SKU column as the filename, retries failed rows, and writes a clean local folder — no cloud upload, no signup, no browser extension.