CSV Format
CSV Format
Upload products in bulk with a simple CSV. Keep column names exactly as shown. UTF-8, comma-separated, one row per product.
Required columns
Column | Type | Example | Notes |
---|---|---|---|
sku | string | SKU-1001 | Unique per product (per account). |
title | string | Retro Trainers | 2–120 chars. |
price | number | 49.99 | USD. Use a dot for decimals. |
quantity | integer | 12 | Must be ≥ 0. |
Optional columns
Column | Type | Example | Notes |
---|---|---|---|
condition | string | New / Like New / Used | Defaults to New . |
image_url | url | https://…/photo.jpg | HTTPS only. Square preferred (≥1024px). |
msrp | number | 89.00 | Optional reference price. |
upc | string | 889955004321 | Optional barcode/UPC/EAN. |
brand | string | Stride | |
category | string | Footwear | |
description | string | Classic low-top… | Plain text. |
location | string | Memphis, TN | Optional warehouse/store. |
Sample file
Download: Download sample.csv
sku,title,price,quantity,condition,image_url,brand,category,description SKU-1001,Retro Trainers,49.99,12,New,https://images.unsplash.com/photo-1519741497674-611481863552?w=640&q=80,Stride,Footwear,Classic low-top trainers SKU-1002,Canvas Tote,18.50,50,New,https://images.unsplash.com/photo-1520975682031-ae3d2597041f?w=640&q=80,CarryOn,Bags,Heavy-duty everyday tote SKU-1003,Stoneware Mug Set,24.00,30,New,https://images.unsplash.com/photo-1512496015851-a90fb38ba796?w=640&q=80,Hearth,Home,Matte stoneware mugs (2-pack)
Validation rules
price
must be a valid number ≥ 0quantity
must be an integer ≥ 0image_url
must be HTTPS; non-square images are auto-cropped- Duplicate
sku
rows overwrite the most recent row in preview; on submit, each(user_id, sku)
must be unique - File size up to ~5 MB recommended; split larger files
Tips
- Export from Excel/Sheets as CSV (UTF-8)
- Keep image URLs stable (don't expire)
- Prefer square images (1024×1024+)