Baselight

Amazon Products Dataset (+1M Products)

Scraped dataset from Sep 2023. Contains pricing & sales data

@kaggle.aaronfriasr_amazon_products_dataset

Loading...
Loading...

About this Dataset

Amazon Products Dataset (+1M Products)

About the Dataset:

Amazon is one of the biggest online retailers in the USA that sells over 12 million products. With this dataset, you can get an in-depth idea of what products sell best, which SEO titles generate the most sales, the best price range for a product in a given category, and much more.

Interesting Task Ideas:

1-Uncover trending product categories and their sales performance.

2-Analyze customer ratings to find top-rated products.

3-Train a product title generator that can generate sales-worthy product titles based on products with the most sales.

4-Gain insight into the best price for any given product based on sales data and competition.

5-Identify which niches are the easiest to make sales in.

6-Gain insights into the general spending habits of online shoppers.

7-Use as a seed dataset for practicing database management and performance optimization.

8-Train (or learn to train) an AI-based search model to recommend Amazon products.

Tables

Amazon Categories

@kaggle.aaronfriasr_amazon_products_dataset.amazon_categories
  • 7.27 KB
  • 248 rows
  • 2 columns
Loading...

CREATE TABLE amazon_categories (
  "id" BIGINT,
  "category_name" VARCHAR
);

Amazon Products

@kaggle.aaronfriasr_amazon_products_dataset.amazon_products
  • 142.33 MB
  • 1426337 rows
  • 11 columns
Loading...

CREATE TABLE amazon_products (
  "asin" VARCHAR,
  "title" VARCHAR,
  "imgurl" VARCHAR,
  "producturl" VARCHAR,
  "stars" DOUBLE,
  "reviews" BIGINT,
  "price" DOUBLE,
  "listprice" DOUBLE,
  "category_id" BIGINT,
  "isbestseller" BOOLEAN,
  "boughtinlastmonth" BIGINT
);

Share link

Anyone who has the link will be able to view this.