Sample data · CC0 / public domain

Sample product catalog CSV.

An e-commerce catalog: SKUs, product names, categories, price and cost, stock on hand, ratings and a discontinued flag. The lookup table that joins against orders.

Download

Grab a file — or generate a big one.

The small files are static downloads. The large ones are generated in your browser from the same fixed seed, so every copy of products-100000.csv on earth is byte-identical — reproducible test data with no 60 MB download.

100 rows · 6 KB 1,000 rows · 55 KB

→ Open this dataset in the dashboard builder  ·  → Open in the CSV editor

Preview

First rows.

skuproduct_namecategorycostpricestockratingdiscontinued
SKU-30001Pebble SpeakerFurniture86.04157.14372.8false
SKU-30002Brook KettleFurniture68.20195.872034.5false
SKU-30003Aurora LampOffice13.2722.486734.6true
SKU-30004Brook KettleFurniture24.4760.484174.8false
SKU-30005Brook KettleTextiles21.2664.594913.3false
SKU-30006Fjord ChairFurniture14.7726.406913.5false
SKU-30007Ember HeaterLighting59.01102.203763.2false
SKU-30008Vale MirrorFurniture13.9236.884303.0false
Schema

Columns.

columndescription
skuStock-keeping unit
product_nameProduct name
categoryCategory
costUnit cost (USD)
priceRetail price — always above cost
stockUnits in stock
ratingAverage review rating (2.6–5.0)
discontinuedNo longer sold?
About this dataset

What it models.

Product names are generated adjective + noun pairs, so even the million-row version stays readable and unique-ish. Price always exceeds cost, so margin math behaves.

Join it against the Orders dataset on product_id ↔ sku to demo lookups, or use stock + rating for filter and sort examples.

Good for: JOIN / VLOOKUP demos against Orders · Inventory dashboards · Testing margin (price − cost) calculations.

License: CC0 / public domain — use it anywhere, no attribution needed.

Common questions
  • ·

    Is price always greater than cost?

    Yes — price is generated as cost × 1.6–3.2, so margin is always positive and margin math is safe to demo.

  • ·

    What license is this under?

    CC0 (public domain). Use it in tutorials, tests, courses, screenshots and products — no attribution required.

  • ·

    Is the data deterministic?

    Yes — every size is generated from a fixed seed, so the same file is byte-identical for everyone, forever. Reproducible tests, stable teaching materials.

More sample data