Skip to content

Instantly share code, notes, and snippets.

@andrewgeorgemitchell
Created February 9, 2019 04:20
Show Gist options
  • Save andrewgeorgemitchell/12d9cbad56660291cb4774133070c56a to your computer and use it in GitHub Desktop.
Save andrewgeorgemitchell/12d9cbad56660291cb4774133070c56a to your computer and use it in GitHub Desktop.
// server.js
...
app.use('/api/products', productRoutes);
...
// controller/productRoutes.js
const express = require('express');
const Products = require('../models/products');
const router = express.Router();
router.get('', async (req, res) => {
const products = await Products.getAll();
res.send(products);
});
module.exports = router;
// models/products.js
const { Client } = require('pg');
const { database } = require('../../config');
const client = new Client(database);
const getAll = async () => {
await client.connect();
return client.query('SELECT * FROM products');
};
module.exports = {
getAll,
};
// Data
{
"command": "SELECT",
"rowCount": 100,
"oid": null,
"rows": [
{
"id": 1,
"unique_id": 1,
"name": "Amazon Product 1",
"category": "electronics",
"manufacturer": "Considine Inc",
"primary_image": "https://s3.us-east-2.amazonaws.com/product-summary-component/electronics1.jpg",
"review_one_star_count": 364,
"review_two_star_count": 115,
"review_three_star_count": 752,
"review_four_star_count": 828,
"review_five_star_count": 216,
"review_count": 2275,
"question_count": 218,
"price": 918,
"total_price": 928,
"stock": 220,
"is_prime": true,
"description": "\n Lorem ipsum dolor amet you probably haven't heard of them ennui raclette VHS irony tumeric pop-up lumbersexual palo santo truffaut yr scenester. Letterpress flannel kitsch lumbersexual, brooklyn chia keffiyeh subway tile everyday carry seitan fam schlitz glossier. Shoreditch franzen tumeric, deep v YOLO bespoke meh. Vaporware knausgaard subway tile pop-up green juice next level, food truck la croix artisan leggings portland occupy truffaut.\n "
},
{
"id": 2,
"unique_id": 2,
"name": "Amazon Product 2",
"category": "electronics",
"manufacturer": "Daugherty Inc",
"primary_image": "https://s3.us-east-2.amazonaws.com/product-summary-component/electronics2.jpg",
"review_one_star_count": 408,
"review_two_star_count": 287,
"review_three_star_count": 671,
"review_four_star_count": 274,
"review_five_star_count": 611,
"review_count": 2251,
"question_count": 111,
"price": 881,
"total_price": 891,
"stock": 865,
"is_prime": false,
"description": "\n Lorem ipsum dolor amet you probably haven't heard of them ennui raclette VHS irony tumeric pop-up lumbersexual palo santo truffaut yr scenester. Letterpress flannel kitsch lumbersexual, brooklyn chia keffiyeh subway tile everyday carry seitan fam schlitz glossier. Shoreditch franzen tumeric, deep v YOLO bespoke meh. Vaporware knausgaard subway tile pop-up green juice next level, food truck la croix artisan leggings portland occupy truffaut.\n "
},
{
"id": 3,
"unique_id": 3,
"name": "Amazon Product 3",
"category": "electronics",
"manufacturer": "Macejkovic LLC",
"primary_image": "https://s3.us-east-2.amazonaws.com/product-summary-component/electronics3.jpg",
"review_one_star_count": 657,
"review_two_star_count": 179,
"review_three_star_count": 10,
"review_four_star_count": 10,
"review_five_star_count": 548,
"review_count": 1404,
"question_count": 793,
"price": 502,
"total_price": 512,
"stock": 386,
"is_prime": false,
"description": "\n Lorem ipsum dolor amet you probably haven't heard of them ennui raclette VHS irony tumeric pop-up lumbersexual palo santo truffaut yr scenester. Letterpress flannel kitsch lumbersexual, brooklyn chia keffiyeh subway tile everyday carry seitan fam schlitz glossier. Shoreditch franzen tumeric, deep v YOLO bespoke meh. Vaporware knausgaard subway tile pop-up green juice next level, food truck la croix artisan leggings portland occupy truffaut.\n "
},
{
"id": 4,
"unique_id": 4,
"name": "Amazon Product 4",
"category": "electronics",
"manufacturer": "Hand, Erdman and Tromp",
"primary_image": "https://s3.us-east-2.amazonaws.com/product-summary-component/electronics4.jpg",
"review_one_star_count": 501,
"review_two_star_count": 582,
"review_three_star_count": 853,
"review_four_star_count": 421,
"review_five_star_count": 231,
"review_count": 2588,
"question_count": 899,
"price": 609,
"total_price": 619,
"stock": 709,
"is_prime": true,
"description": "\n Lorem ipsum dolor amet you probably haven't heard of them ennui raclette VHS irony tumeric pop-up lumbersexual palo santo truffaut yr scenester. Letterpress flannel kitsch lumbersexual, brooklyn chia keffiyeh subway tile everyday carry seitan fam schlitz glossier. Shoreditch franzen tumeric, deep v YOLO bespoke meh. Vaporware knausgaard subway tile pop-up green juice next level, food truck la croix artisan leggings portland occupy truffaut.\n "
},
{
"id": 5,
"unique_id": 5,
"name": "Amazon Product 5",
"category": "electronics",
"manufacturer": "Wiza - VonRueden",
"primary_image": "https://s3.us-east-2.amazonaws.com/product-summary-component/electronics5.jpg",
"review_one_star_count": 52,
"review_two_star_count": 545,
"review_three_star_count": 587,
"review_four_star_count": 963,
"review_five_star_count": 382,
"review_count": 2529,
"question_count": 713,
"price": 400,
"total_price": 410,
"stock": 329,
"is_prime": false,
"description": "\n Lorem ipsum dolor amet you probably haven't heard of them ennui raclette VHS irony tumeric pop-up lumbersexual palo santo truffaut yr scenester. Letterpress flannel kitsch lumbersexual, brooklyn chia keffiyeh subway tile everyday carry seitan fam schlitz glossier. Shoreditch franzen tumeric, deep v YOLO bespoke meh. Vaporware knausgaard subway tile pop-up green juice next level, food truck la croix artisan leggings portland occupy truffaut.\n "
},
{
"id": 6,
"unique_id": 6,
"name": "Amazon Product 6",
"category": "electronics",
"manufacturer": "Terry, Larson and White",
"primary_image": "https://s3.us-east-2.amazonaws.com/product-summary-component/electronics6.jpg",
"review_one_star_count": 387,
"review_two_star_count": 310,
"review_three_star_count": 172,
"review_four_star_count": 555,
"review_five_star_count": 992,
"review_count": 2416,
"question_count": 164,
"price": 411,
"total_price": 421,
"stock": 442,
"is_prime": false,
"description": "\n Lorem ipsum dolor amet you probably haven't heard of them ennui raclette VHS irony tumeric pop-up lumbersexual palo santo truffaut yr scenester. Letterpress flannel kitsch lumbersexual, brooklyn chia keffiyeh subway tile everyday carry seitan fam schlitz glossier. Shoreditch franzen tumeric, deep v YOLO bespoke meh. Vaporware knausgaard subway tile pop-up green juice next level, food truck la croix artisan leggings portland occupy truffaut.\n "
},
{
"id": 7,
"unique_id": 7,
"name": "Amazon Product 7",
"category": "electronics",
"manufacturer": "Goodwin Inc",
"primary_image": "https://s3.us-east-2.amazonaws.com/product-summary-component/electronics7.jpg",
"review_one_star_count": 245,
"review_two_star_count": 303,
"review_three_star_count": 696,
"review_four_star_count": 237,
"review_five_star_count": 243,
"review_count": 1724,
"question_count": 532,
"price": 831,
"total_price": 841,
"stock": 448,
"is_prime": false,
"description": "\n Lorem ipsum dolor amet you probably haven't heard of them ennui raclette VHS irony tumeric pop-up lumbersexual palo santo truffaut yr scenester. Letterpress flannel kitsch lumbersexual, brooklyn chia keffiyeh subway tile everyday carry seitan fam schlitz glossier. Shoreditch franzen tumeric, deep v YOLO bespoke meh. Vaporware knausgaard subway tile pop-up green juice next level, food truck la croix artisan leggings portland occupy truffaut.\n "
},
{
"id": 8,
"unique_id": 8,
"name": "Amazon Product 8",
"category": "electronics",
"manufacturer": "Tillman - Senger",
"primary_image": "https://s3.us-east-2.amazonaws.com/product-summary-component/electronics8.jpg",
"review_one_star_count": 587,
"review_two_star_count": 933,
"review_three_star_count": 431,
"review_four_star_count": 799,
"review_five_star_count": 486,
"review_count": 3236,
"question_count": 680,
"price": 215,
"total_price": 225,
"stock": 913,
"is_prime": false,
"description": "\n Lorem ipsum dolor amet you probably haven't heard of them ennui raclette VHS irony tumeric pop-up lumbersexual palo santo truffaut yr scenester. Letterpress flannel kitsch lumbersexual, brooklyn chia keffiyeh subway tile everyday carry seitan fam schlitz glossier. Shoreditch franzen tumeric, deep v YOLO bespoke meh. Vaporware knausgaard subway tile pop-up green juice next level, food truck la croix artisan leggings portland occupy truffaut.\n "
},
{
"id": 9,
"unique_id": 9,
"name": "Amazon Product 9",
"category": "electronics",
"manufacturer": "Waelchi, Stroman and Emmerich",
"primary_image": "https://s3.us-east-2.amazonaws.com/product-summary-component/electronics9.jpg",
"review_one_star_count": 65,
"review_two_star_count": 972,
"review_three_star_count": 210,
"review_four_star_count": 75,
"review_five_star_count": 679,
"review_count": 2001,
"question_count": 616,
"price": 130,
"total_price": 140,
"stock": 222,
"is_prime": true,
"description": "\n Lorem ipsum dolor amet you probably haven't heard of them ennui raclette VHS irony tumeric pop-up lumbersexual palo santo truffaut yr scenester. Letterpress flannel kitsch lumbersexual, brooklyn chia keffiyeh subway tile everyday carry seitan fam schlitz glossier. Shoreditch franzen tumeric, deep v YOLO bespoke meh. Vaporware knausgaard subway tile pop-up green juice next level, food truck la croix artisan leggings portland occupy truffaut.\n "
},
{
"id": 10,
"unique_id": 10,
"name": "Amazon Product 10",
"category": "electronics",
"manufacturer": "Emard - Langworth",
"primary_image": "https://s3.us-east-2.amazonaws.com/product-summary-component/electronics10.jpg",
"review_one_star_count": 797,
"review_two_star_count": 474,
"review_three_star_count": 947,
"review_four_star_count": 871,
"review_five_star_count": 234,
"review_count": 3323,
"question_count": 435,
"price": 217,
"total_price": 227,
"stock": 211,
"is_prime": true,
"description": "\n Lorem ipsum dolor amet you probably haven't heard of them ennui raclette VHS irony tumeric pop-up lumbersexual palo santo truffaut yr scenester. Letterpress flannel kitsch lumbersexual, brooklyn chia keffiyeh subway tile everyday carry seitan fam schlitz glossier. Shoreditch franzen tumeric, deep v YOLO bespoke meh. Vaporware knausgaard subway tile pop-up green juice next level, food truck la croix artisan leggings portland occupy truffaut.\n "
},
{
"id": 11,
"unique_id": 11,
"name": "Amazon Product 11",
"category": "beauty",
"manufacturer": "Rowe Group",
"primary_image": "https://s3.us-east-2.amazonaws.com/product-summary-component/beauty11.jpg",
"review_one_star_count": 795,
"review_two_star_count": 777,
"review_three_star_count": 887,
"review_four_star_count": 382,
"review_five_star_count": 708,
"review_count": 3549,
"question_count": 694,
"price": 784,
"total_price": 794,
"stock": 457,
"is_prime": true,
"description": "\n Lorem ipsum dolor amet you probably haven't heard of them ennui raclette VHS irony tumeric pop-up lumbersexual palo santo truffaut yr scenester. Letterpress flannel kitsch lumbersexual, brooklyn chia keffiyeh subway tile everyday carry seitan fam schlitz glossier. Shoreditch franzen tumeric, deep v YOLO bespoke meh. Vaporware knausgaard subway tile pop-up green juice next level, food truck la croix artisan leggings portland occupy truffaut.\n "
},
{
"id": 12,
"unique_id": 12,
"name": "Amazon Product 12",
"category": "beauty",
"manufacturer": "McClure Inc",
"primary_image": "https://s3.us-east-2.amazonaws.com/product-summary-component/beauty12.jpg",
"review_one_star_count": 537,
"review_two_star_count": 639,
"review_three_star_count": 283,
"review_four_star_count": 372,
"review_five_star_count": 175,
"review_count": 2006,
"question_count": 868,
"price": 92,
"total_price": 102,
"stock": 601,
"is_prime": false,
"description": "\n Lorem ipsum dolor amet you probably haven't heard of them ennui raclette VHS irony tumeric pop-up lumbersexual palo santo truffaut yr scenester. Letterpress flannel kitsch lumbersexual, brooklyn chia keffiyeh subway tile everyday carry seitan fam schlitz glossier. Shoreditch franzen tumeric, deep v YOLO bespoke meh. Vaporware knausgaard subway tile pop-up green juice next level, food truck la croix artisan leggings portland occupy truffaut.\n "
},
{
"id": 13,
"unique_id": 13,
"name": "Amazon Product 13",
"category": "beauty",
"manufacturer": "Torphy, McDermott and Mills",
"primary_image": "https://s3.us-east-2.amazonaws.com/product-summary-component/beauty13.jpg",
"review_one_star_count": 146,
"review_two_star_count": 571,
"review_three_star_count": 906,
"review_four_star_count": 442,
"review_five_star_count": 449,
"review_count": 2514,
"question_count": 464,
"price": 491,
"total_price": 501,
"stock": 312,
"is_prime": true,
"description": "\n Lorem ipsum dolor amet you probably haven't heard of them ennui raclette VHS irony tumeric pop-up lumbersexual palo santo truffaut yr scenester. Letterpress flannel kitsch lumbersexual, brooklyn chia keffiyeh subway tile everyday carry seitan fam schlitz glossier. Shoreditch franzen tumeric, deep v YOLO bespoke meh. Vaporware knausgaard subway tile pop-up green juice next level, food truck la croix artisan leggings portland occupy truffaut.\n "
},
{
"id": 14,
"unique_id": 14,
"name": "Amazon Product 14",
"category": "beauty",
"manufacturer": "Waters - Stehr",
"primary_image": "https://s3.us-east-2.amazonaws.com/product-summary-component/beauty14.jpg",
"review_one_star_count": 651,
"review_two_star_count": 961,
"review_three_star_count": 208,
"review_four_star_count": 552,
"review_five_star_count": 615,
"review_count": 2987,
"question_count": 382,
"price": 651,
"total_price": 661,
"stock": 193,
"is_prime": false,
"description": "\n Lorem ipsum dolor amet you probably haven't heard of them ennui raclette VHS irony tumeric pop-up lumbersexual palo santo truffaut yr scenester. Letterpress flannel kitsch lumbersexual, brooklyn chia keffiyeh subway tile everyday carry seitan fam schlitz glossier. Shoreditch franzen tumeric, deep v YOLO bespoke meh. Vaporware knausgaard subway tile pop-up green juice next level, food truck la croix artisan leggings portland occupy truffaut.\n "
},
{
"id": 15,
"unique_id": 15,
"name": "Amazon Product 15",
"category": "beauty",
"manufacturer": "Okuneva - Jones",
"primary_image": "https://s3.us-east-2.amazonaws.com/product-summary-component/beauty15.jpg",
"review_one_star_count": 782,
"review_two_star_count": 713,
"review_three_star_count": 851,
"review_four_star_count": 149,
"review_five_star_count": 31,
"review_count": 2526,
"question_count": 247,
"price": 690,
"total_price": 700,
"stock": 889,
"is_prime": true,
"description": "\n Lorem ipsum dolor amet you probably haven't heard of them ennui raclette VHS irony tumeric pop-up lumbersexual palo santo truffaut yr scenester. Letterpress flannel kitsch lumbersexual, brooklyn chia keffiyeh subway tile everyday carry seitan fam schlitz glossier. Shoreditch franzen tumeric, deep v YOLO bespoke meh. Vaporware knausgaard subway tile pop-up green juice next level, food truck la croix artisan leggings portland occupy truffaut.\n "
},
{
"id": 16,
"unique_id": 16,
"name": "Amazon Product 16",
"category": "beauty",
"manufacturer": "Dickinson Inc",
"primary_image": "https://s3.us-east-2.amazonaws.com/product-summary-component/beauty16.jpg",
"review_one_star_count": 959,
"review_two_star_count": 390,
"review_three_star_count": 373,
"review_four_star_count": 131,
"review_five_star_count": 489,
"review_count": 2342,
"question_count": 37,
"price": 324,
"total_price": 334,
"stock": 665,
"is_prime": false,
"description": "\n Lorem ipsum dolor amet you probably haven't heard of them ennui raclette VHS irony tumeric pop-up lumbersexual palo santo truffaut yr scenester. Letterpress flannel kitsch lumbersexual, brooklyn chia keffiyeh subway tile everyday carry seitan fam schlitz glossier. Shoreditch franzen tumeric, deep v YOLO bespoke meh. Vaporware knausgaard subway tile pop-up green juice next level, food truck la croix artisan leggings portland occupy truffaut.\n "
},
{
"id": 17,
"unique_id": 17,
"name": "Amazon Product 17",
"category": "beauty",
"manufacturer": "Romaguera and Sons",
"primary_image": "https://s3.us-east-2.amazonaws.com/product-summary-component/beauty17.jpg",
"review_one_star_count": 320,
"review_two_star_count": 868,
"review_three_star_count": 360,
"review_four_star_count": 17,
"review_five_star_count": 558,
"review_count": 2123,
"question_count": 312,
"price": 100,
"total_price": 110,
"stock": 522,
"is_prime": false,
"description": "\n Lorem ipsum dolor amet you probably haven't heard of them ennui raclette VHS irony tumeric pop-up lumbersexual palo santo truffaut yr scenester. Letterpress flannel kitsch lumbersexual, brooklyn chia keffiyeh subway tile everyday carry seitan fam schlitz glossier. Shoreditch franzen tumeric, deep v YOLO bespoke meh. Vaporware knausgaard subway tile pop-up green juice next level, food truck la croix artisan leggings portland occupy truffaut.\n "
},
{
"id": 18,
"unique_id": 18,
"name": "Amazon Product 18",
"category": "beauty",
"manufacturer": "Herman Inc",
"primary_image": "https://s3.us-east-2.amazonaws.com/product-summary-component/beauty18.jpg",
"review_one_star_count": 711,
"review_two_star_count": 497,
"review_three_star_count": 629,
"review_four_star_count": 930,
"review_five_star_count": 283,
"review_count": 3050,
"question_count": 719,
"price": 870,
"total_price": 880,
"stock": 6,
"is_prime": true,
"description": "\n Lorem ipsum dolor amet you probably haven't heard of them ennui raclette VHS irony tumeric pop-up lumbersexual palo santo truffaut yr scenester. Letterpress flannel kitsch lumbersexual, brooklyn chia keffiyeh subway tile everyday carry seitan fam schlitz glossier. Shoreditch franzen tumeric, deep v YOLO bespoke meh. Vaporware knausgaard subway tile pop-up green juice next level, food truck la croix artisan leggings portland occupy truffaut.\n "
},
{
"id": 19,
"unique_id": 19,
"name": "Amazon Product 19",
"category": "beauty",
"manufacturer": "Cruickshank Inc",
"primary_image": "https://s3.us-east-2.amazonaws.com/product-summary-component/beauty19.jpg",
"review_one_star_count": 987,
"review_two_star_count": 589,
"review_three_star_count": 754,
"review_four_star_count": 919,
"review_five_star_count": 411,
"review_count": 3660,
"question_count": 903,
"price": 507,
"total_price": 517,
"stock": 416,
"is_prime": false,
"description": "\n Lorem ipsum dolor amet you probably haven't heard of them ennui raclette VHS irony tumeric pop-up lumbersexual palo santo truffaut yr scenester. Letterpress flannel kitsch lumbersexual, brooklyn chia keffiyeh subway tile everyday carry seitan fam schlitz glossier. Shoreditch franzen tumeric, deep v YOLO bespoke meh. Vaporware knausgaard subway tile pop-up green juice next level, food truck la croix artisan leggings portland occupy truffaut.\n "
},
{
"id": 20,
"unique_id": 20,
"name": "Amazon Product 20",
"category": "beauty",
"manufacturer": "Olson - Thiel",
"primary_image": "https://s3.us-east-2.amazonaws.com/product-summary-component/beauty20.jpg",
"review_one_star_count": 323,
"review_two_star_count": 389,
"review_three_star_count": 364,
"review_four_star_count": 634,
"review_five_star_count": 782,
"review_count": 2492,
"question_count": 955,
"price": 807,
"total_price": 817,
"stock": 581,
"is_prime": true,
"description": "\n Lorem ipsum dolor amet you probably haven't heard of them ennui raclette VHS irony tumeric pop-up lumbersexual palo santo truffaut yr scenester. Letterpress flannel kitsch lumbersexual, brooklyn chia keffiyeh subway tile everyday carry seitan fam schlitz glossier. Shoreditch franzen tumeric, deep v YOLO bespoke meh. Vaporware knausgaard subway tile pop-up green juice next level, food truck la croix artisan leggings portland occupy truffaut.\n "
},
{
"id": 21,
"unique_id": 21,
"name": "Amazon Product 21",
"category": "outdoor",
"manufacturer": "Mertz, Streich and Waters",
"primary_image": "https://s3.us-east-2.amazonaws.com/product-summary-component/outdoor21.jpg",
"review_one_star_count": 229,
"review_two_star_count": 755,
"review_three_star_count": 940,
"review_four_star_count": 692,
"review_five_star_count": 652,
"review_count": 3268,
"question_count": 458,
"price": 419,
"total_price": 429,
"stock": 14,
"is_prime": false,
"description": "\n Lorem ipsum dolor amet you probably haven't heard of them ennui raclette VHS irony tumeric pop-up lumbersexual palo santo truffaut yr scenester. Letterpress flannel kitsch lumbersexual, brooklyn chia keffiyeh subway tile everyday carry seitan fam schlitz glossier. Shoreditch franzen tumeric, deep v YOLO bespoke meh. Vaporware knausgaard subway tile pop-up green juice next level, food truck la croix artisan leggings portland occupy truffaut.\n "
},
{
"id": 22,
"unique_id": 22,
"name": "Amazon Product 22",
"category": "outdoor",
"manufacturer": "Wolff Inc",
"primary_image": "https://s3.us-east-2.amazonaws.com/product-summary-component/outdoor22.jpg",
"review_one_star_count": 843,
"review_two_star_count": 638,
"review_three_star_count": 936,
"review_four_star_count": 775,
"review_five_star_count": 853,
"review_count": 4045,
"question_count": 474,
"price": 219,
"total_price": 229,
"stock": 241,
"is_prime": false,
"description": "\n Lorem ipsum dolor amet you probably haven't heard of them ennui raclette VHS irony tumeric pop-up lumbersexual palo santo truffaut yr scenester. Letterpress flannel kitsch lumbersexual, brooklyn chia keffiyeh subway tile everyday carry seitan fam schlitz glossier. Shoreditch franzen tumeric, deep v YOLO bespoke meh. Vaporware knausgaard subway tile pop-up green juice next level, food truck la croix artisan leggings portland occupy truffaut.\n "
},
{
"id": 23,
"unique_id": 23,
"name": "Amazon Product 23",
"category": "outdoor",
"manufacturer": "McLaughlin LLC",
"primary_image": "https://s3.us-east-2.amazonaws.com/product-summary-component/outdoor23.jpg",
"review_one_star_count": 830,
"review_two_star_count": 790,
"review_three_star_count": 777,
"review_four_star_count": 372,
"review_five_star_count": 149,
"review_count": 2918,
"question_count": 287,
"price": 721,
"total_price": 731,
"stock": 740,
"is_prime": false,
"description": "\n Lorem ipsum dolor amet you probably haven't heard of them ennui raclette VHS irony tumeric pop-up lumbersexual palo santo truffaut yr scenester. Letterpress flannel kitsch lumbersexual, brooklyn chia keffiyeh subway tile everyday carry seitan fam schlitz glossier. Shoreditch franzen tumeric, deep v YOLO bespoke meh. Vaporware knausgaard subway tile pop-up green juice next level, food truck la croix artisan leggings portland occupy truffaut.\n "
},
{
"id": 24,
"unique_id": 24,
"name": "Amazon Product 24",
"category": "outdoor",
"manufacturer": "Russel - Boyle",
"primary_image": "https://s3.us-east-2.amazonaws.com/product-summary-component/outdoor24.jpg",
"review_one_star_count": 698,
"review_two_star_count": 184,
"review_three_star_count": 696,
"review_four_star_count": 747,
"review_five_star_count": 406,
"review_count": 2731,
"question_count": 218,
"price": 320,
"total_price": 330,
"stock": 56,
"is_prime": true,
"description": "\n Lorem ipsum dolor amet you probably haven't heard of them ennui raclette VHS irony tumeric pop-up lumbersexual palo santo truffaut yr scenester. Letterpress flannel kitsch lumbersexual, brooklyn chia keffiyeh subway tile everyday carry seitan fam schlitz glossier. Shoreditch franzen tumeric, deep v YOLO bespoke meh. Vaporware knausgaard subway tile pop-up green juice next level, food truck la croix artisan leggings portland occupy truffaut.\n "
},
{
"id": 25,
"unique_id": 25,
"name": "Amazon Product 25",
"category": "outdoor",
"manufacturer": "Hoppe and Sons",
"primary_image": "https://s3.us-east-2.amazonaws.com/product-summary-component/outdoor25.jpg",
"review_one_star_count": 526,
"review_two_star_count": 956,
"review_three_star_count": 419,
"review_four_star_count": 627,
"review_five_star_count": 825,
"review_count": 3353,
"question_count": 990,
"price": 33,
"total_price": 43,
"stock": 764,
"is_prime": true,
"description": "\n Lorem ipsum dolor amet you probably haven't heard of them ennui raclette VHS irony tumeric pop-up lumbersexual palo santo truffaut yr scenester. Letterpress flannel kitsch lumbersexual, brooklyn chia keffiyeh subway tile everyday carry seitan fam schlitz glossier. Shoreditch franzen tumeric, deep v YOLO bespoke meh. Vaporware knausgaard subway tile pop-up green juice next level, food truck la croix artisan leggings portland occupy truffaut.\n "
},
{
"id": 26,
"unique_id": 26,
"name": "Amazon Product 26",
"category": "outdoor",
"manufacturer": "Strosin, Rogahn and Hagenes",
"primary_image": "https://s3.us-east-2.amazonaws.com/product-summary-component/outdoor26.jpg",
"review_one_star_count": 940,
"review_two_star_count": 801,
"review_three_star_count": 111,
"review_four_star_count": 155,
"review_five_star_count": 739,
"review_count": 2746,
"question_count": 202,
"price": 48,
"total_price": 58,
"stock": 167,
"is_prime": true,
"description": "\n Lorem ipsum dolor amet you probably haven't heard of them ennui raclette VHS irony tumeric pop-up lumbersexual palo santo truffaut yr scenester. Letterpress flannel kitsch lumbersexual, brooklyn chia keffiyeh subway tile everyday carry seitan fam schlitz glossier. Shoreditch franzen tumeric, deep v YOLO bespoke meh. Vaporware knausgaard subway tile pop-up green juice next level, food truck la croix artisan leggings portland occupy truffaut.\n "
},
{
"id": 27,
"unique_id": 27,
"name": "Amazon Product 27",
"category": "outdoor",
"manufacturer": "Becker - Kutch",
"primary_image": "https://s3.us-east-2.amazonaws.com/product-summary-component/outdoor27.jpg",
"review_one_star_count": 307,
"review_two_star_count": 815,
"review_three_star_count": 316,
"review_four_star_count": 692,
"review_five_star_count": 265,
"review_count": 2395,
"question_count": 602,
"price": -7,
"total_price": 3,
"stock": 388,
"is_prime": true,
"description": "\n Lorem ipsum dolor amet you probably haven't heard of them ennui raclette VHS irony tumeric pop-up lumbersexual palo santo truffaut yr scenester. Letterpress flannel kitsch lumbersexual, brooklyn chia keffiyeh subway tile everyday carry seitan fam schlitz glossier. Shoreditch franzen tumeric, deep v YOLO bespoke meh. Vaporware knausgaard subway tile pop-up green juice next level, food truck la croix artisan leggings portland occupy truffaut.\n "
},
{
"id": 28,
"unique_id": 28,
"name": "Amazon Product 28",
"category": "outdoor",
"manufacturer": "Roob Group",
"primary_image": "https://s3.us-east-2.amazonaws.com/product-summary-component/outdoor28.jpg",
"review_one_star_count": 324,
"review_two_star_count": 424,
"review_three_star_count": 961,
"review_four_star_count": 554,
"review_five_star_count": 127,
"review_count": 2390,
"question_count": 74,
"price": 460,
"total_price": 470,
"stock": 547,
"is_prime": false,
"description": "\n Lorem ipsum dolor amet you probably haven't heard of them ennui raclette VHS irony tumeric pop-up lumbersexual palo santo truffaut yr scenester. Letterpress flannel kitsch lumbersexual, brooklyn chia keffiyeh subway tile everyday carry seitan fam schlitz glossier. Shoreditch franzen tumeric, deep v YOLO bespoke meh. Vaporware knausgaard subway tile pop-up green juice next level, food truck la croix artisan leggings portland occupy truffaut.\n "
},
{
"id": 29,
"unique_id": 29,
"name": "Amazon Product 29",
"category": "outdoor",
"manufacturer": "Prosacco - Huel",
"primary_image": "https://s3.us-east-2.amazonaws.com/product-summary-component/outdoor29.jpg",
"review_one_star_count": 245,
"review_two_star_count": 858,
"review_three_star_count": 83,
"review_four_star_count": 140,
"review_five_star_count": 760,
"review_count": 2086,
"question_count": 140,
"price": 650,
"total_price": 660,
"stock": 127,
"is_prime": true,
"description": "\n Lorem ipsum dolor amet you probably haven't heard of them ennui raclette VHS irony tumeric pop-up lumbersexual palo santo truffaut yr scenester. Letterpress flannel kitsch lumbersexual, brooklyn chia keffiyeh subway tile everyday carry seitan fam schlitz glossier. Shoreditch franzen tumeric, deep v YOLO bespoke meh. Vaporware knausgaard subway tile pop-up green juice next level, food truck la croix artisan leggings portland occupy truffaut.\n "
},
{
"id": 30,
"unique_id": 30,
"name": "Amazon Product 30",
"category": "outdoor",
"manufacturer": "Bergstrom - Feil",
"primary_image": "https://s3.us-east-2.amazonaws.com/product-summary-component/outdoor30.jpg",
"review_one_star_count": 921,
"review_two_star_count": 932,
"review_three_star_count": 45,
"review_four_star_count": 688,
"review_five_star_count": 770,
"review_count": 3356,
"question_count": 584,
"price": 790,
"total_price": 800,
"stock": 561,
"is_prime": false,
"description": "\n Lorem ipsum dolor amet you probably haven't heard of them ennui raclette VHS irony tumeric pop-up lumbersexual palo santo truffaut yr scenester. Letterpress flannel kitsch lumbersexual, brooklyn chia keffiyeh subway tile everyday carry seitan fam schlitz glossier. Shoreditch franzen tumeric, deep v YOLO bespoke meh. Vaporware knausgaard subway tile pop-up green juice next level, food truck la croix artisan leggings portland occupy truffaut.\n "
},
{
"id": 31,
"unique_id": 31,
"name": "Amazon Product 31",
"category": "wearables",
"manufacturer": "Lakin - Crooks",
"primary_image": "https://s3.us-east-2.amazonaws.com/product-summary-component/wearables31.jpg",
"review_one_star_count": 934,
"review_two_star_count": 976,
"review_three_star_count": 376,
"review_four_star_count": 171,
"review_five_star_count": 507,
"review_count": 2964,
"question_count": 467,
"price": 34,
"total_price": 44,
"stock": 407,
"is_prime": false,
"description": "\n Lorem ipsum dolor amet you probably haven't heard of them ennui raclette VHS irony tumeric pop-up lumbersexual palo santo truffaut yr scenester. Letterpress flannel kitsch lumbersexual, brooklyn chia keffiyeh subway tile everyday carry seitan fam schlitz glossier. Shoreditch franzen tumeric, deep v YOLO bespoke meh. Vaporware knausgaard subway tile pop-up green juice next level, food truck la croix artisan leggings portland occupy truffaut.\n "
},
{
"id": 32,
"unique_id": 32,
"name": "Amazon Product 32",
"category": "wearables",
"manufacturer": "Brekke, Wiegand and Heathcote",
"primary_image": "https://s3.us-east-2.amazonaws.com/product-summary-component/wearables32.jpg",
"review_one_star_count": 956,
"review_two_star_count": 976,
"review_three_star_count": 488,
"review_four_star_count": 309,
"review_five_star_count": 766,
"review_count": 3495,
"question_count": 177,
"price": 907,
"total_price": 917,
"stock": 329,
"is_prime": true,
"description": "\n Lorem ipsum dolor amet you probably haven't heard of them ennui raclette VHS irony tumeric pop-up lumbersexual palo santo truffaut yr scenester. Letterpress flannel kitsch lumbersexual, brooklyn chia keffiyeh subway tile everyday carry seitan fam schlitz glossier. Shoreditch franzen tumeric, deep v YOLO bespoke meh. Vaporware knausgaard subway tile pop-up green juice next level, food truck la croix artisan leggings portland occupy truffaut.\n "
},
{
"id": 33,
"unique_id": 33,
"name": "Amazon Product 33",
"category": "wearables",
"manufacturer": "Okuneva - Kihn",
"primary_image": "https://s3.us-east-2.amazonaws.com/product-summary-component/wearables33.jpg",
"review_one_star_count": 782,
"review_two_star_count": 196,
"review_three_star_count": 469,
"review_four_star_count": 542,
"review_five_star_count": 566,
"review_count": 2555,
"question_count": 948,
"price": 179,
"total_price": 189,
"stock": 987,
"is_prime": true,
"description": "\n Lorem ipsum dolor amet you probably haven't heard of them ennui raclette VHS irony tumeric pop-up lumbersexual palo santo truffaut yr scenester. Letterpress flannel kitsch lumbersexual, brooklyn chia keffiyeh subway tile everyday carry seitan fam schlitz glossier. Shoreditch franzen tumeric, deep v YOLO bespoke meh. Vaporware knausgaard subway tile pop-up green juice next level, food truck la croix artisan leggings portland occupy truffaut.\n "
},
{
"id": 34,
"unique_id": 34,
"name": "Amazon Product 34",
"category": "wearables",
"manufacturer": "Stroman - Medhurst",
"primary_image": "https://s3.us-east-2.amazonaws.com/product-summary-component/wearables34.jpg",
"review_one_star_count": 604,
"review_two_star_count": 807,
"review_three_star_count": 351,
"review_four_star_count": 872,
"review_five_star_count": 154,
"review_count": 2788,
"question_count": 309,
"price": 302,
"total_price": 312,
"stock": 517,
"is_prime": true,
"description": "\n Lorem ipsum dolor amet you probably haven't heard of them ennui raclette VHS irony tumeric pop-up lumbersexual palo santo truffaut yr scenester. Letterpress flannel kitsch lumbersexual, brooklyn chia keffiyeh subway tile everyday carry seitan fam schlitz glossier. Shoreditch franzen tumeric, deep v YOLO bespoke meh. Vaporware knausgaard subway tile pop-up green juice next level, food truck la croix artisan leggings portland occupy truffaut.\n "
},
{
"id": 35,
"unique_id": 35,
"name": "Amazon Product 35",
"category": "wearables",
"manufacturer": "Kuhlman - Little",
"primary_image": "https://s3.us-east-2.amazonaws.com/product-summary-component/wearables35.jpg",
"review_one_star_count": 557,
"review_two_star_count": 955,
"review_three_star_count": 55,
"review_four_star_count": 955,
"review_five_star_count": 324,
"review_count": 2846,
"question_count": 24,
"price": 46,
"total_price": 56,
"stock": 678,
"is_prime": false,
"description": "\n Lorem ipsum dolor amet you probably haven't heard of them ennui raclette VHS irony tumeric pop-up lumbersexual palo santo truffaut yr scenester. Letterpress flannel kitsch lumbersexual, brooklyn chia keffiyeh subway tile everyday carry seitan fam schlitz glossier. Shoreditch franzen tumeric, deep v YOLO bespoke meh. Vaporware knausgaard subway tile pop-up green juice next level, food truck la croix artisan leggings portland occupy truffaut.\n "
},
{
"id": 36,
"unique_id": 36,
"name": "Amazon Product 36",
"category": "wearables",
"manufacturer": "VonRueden and Sons",
"primary_image": "https://s3.us-east-2.amazonaws.com/product-summary-component/wearables36.jpg",
"review_one_star_count": 26,
"review_two_star_count": 622,
"review_three_star_count": 768,
"review_four_star_count": 160,
"review_five_star_count": 838,
"review_count": 2414,
"question_count": 282,
"price": 614,
"total_price": 624,
"stock": 798,
"is_prime": true,
"description": "\n Lorem ipsum dolor amet you probably haven't heard of them ennui raclette VHS irony tumeric pop-up lumbersexual palo santo truffaut yr scenester. Letterpress flannel kitsch lumbersexual, brooklyn chia keffiyeh subway tile everyday carry seitan fam schlitz glossier. Shoreditch franzen tumeric, deep v YOLO bespoke meh. Vaporware knausgaard subway tile pop-up green juice next level, food truck la croix artisan leggings portland occupy truffaut.\n "
},
{
"id": 37,
"unique_id": 37,
"name": "Amazon Product 37",
"category": "wearables",
"manufacturer": "Sauer LLC",
"primary_image": "https://s3.us-east-2.amazonaws.com/product-summary-component/wearables37.jpg",
"review_one_star_count": 229,
"review_two_star_count": 668,
"review_three_star_count": 287,
"review_four_star_count": 312,
"review_five_star_count": 8,
"review_count": 1504,
"question_count": 361,
"price": 810,
"total_price": 820,
"stock": 228,
"is_prime": true,
"description": "\n Lorem ipsum dolor amet you probably haven't heard of them ennui raclette VHS irony tumeric pop-up lumbersexual palo santo truffaut yr scenester. Letterpress flannel kitsch lumbersexual, brooklyn chia keffiyeh subway tile everyday carry seitan fam schlitz glossier. Shoreditch franzen tumeric, deep v YOLO bespoke meh. Vaporware knausgaard subway tile pop-up green juice next level, food truck la croix artisan leggings portland occupy truffaut.\n "
},
{
"id": 38,
"unique_id": 38,
"name": "Amazon Product 38",
"category": "wearables",
"manufacturer": "Greenfelder - Ratke",
"primary_image": "https://s3.us-east-2.amazonaws.com/product-summary-component/wearables38.jpg",
"review_one_star_count": 384,
"review_two_star_count": 770,
"review_three_star_count": 367,
"review_four_star_count": 783,
"review_five_star_count": 742,
"review_count": 3046,
"question_count": 661,
"price": 426,
"total_price": 436,
"stock": 332,
"is_prime": false,
"description": "\n Lorem ipsum dolor amet you probably haven't heard of them ennui raclette VHS irony tumeric pop-up lumbersexual palo santo truffaut yr scenester. Letterpress flannel kitsch lumbersexual, brooklyn chia keffiyeh subway tile everyday carry seitan fam schlitz glossier. Shoreditch franzen tumeric, deep v YOLO bespoke meh. Vaporware knausgaard subway tile pop-up green juice next level, food truck la croix artisan leggings portland occupy truffaut.\n "
},
{
"id": 39,
"unique_id": 39,
"name": "Amazon Product 39",
"category": "wearables",
"manufacturer": "Carter, Pacocha and Yundt",
"primary_image": "https://s3.us-east-2.amazonaws.com/product-summary-component/wearables39.jpg",
"review_one_star_count": 766,
"review_two_star_count": 904,
"review_three_star_count": 630,
"review_four_star_count": 55,
"review_five_star_count": 674,
"review_count": 3029,
"question_count": 733,
"price": 621,
"total_price": 631,
"stock": 152,
"is_prime": true,
"description": "\n Lorem ipsum dolor amet you probably haven't heard of them ennui raclette VHS irony tumeric pop-up lumbersexual palo santo truffaut yr scenester. Letterpress flannel kitsch lumbersexual, brooklyn chia keffiyeh subway tile everyday carry seitan fam schlitz glossier. Shoreditch franzen tumeric, deep v YOLO bespoke meh. Vaporware knausgaard subway tile pop-up green juice next level, food truck la croix artisan leggings portland occupy truffaut.\n "
},
{
"id": 40,
"unique_id": 40,
"name": "Amazon Product 40",
"category": "wearables",
"manufacturer": "Weissnat - Rau",
"primary_image": "https://s3.us-east-2.amazonaws.com/product-summary-component/wearables40.jpg",
"review_one_star_count": 417,
"review_two_star_count": 456,
"review_three_star_count": 956,
"review_four_star_count": 859,
"review_five_star_count": 860,
"review_count": 3548,
"question_count": 73,
"price": 528,
"total_price": 538,
"stock": 682,
"is_prime": true,
"description": "\n Lorem ipsum dolor amet you probably haven't heard of them ennui raclette VHS irony tumeric pop-up lumbersexual palo santo truffaut yr scenester. Letterpress flannel kitsch lumbersexual, brooklyn chia keffiyeh subway tile everyday carry seitan fam schlitz glossier. Shoreditch franzen tumeric, deep v YOLO bespoke meh. Vaporware knausgaard subway tile pop-up green juice next level, food truck la croix artisan leggings portland occupy truffaut.\n "
},
{
"id": 41,
"unique_id": 41,
"name": "Amazon Product 41",
"category": "bath",
"manufacturer": "Schiller, Carter and Jenkins",
"primary_image": "https://s3.us-east-2.amazonaws.com/product-summary-component/bath41.jpg",
"review_one_star_count": 817,
"review_two_star_count": 530,
"review_three_star_count": 167,
"review_four_star_count": 745,
"review_five_star_count": 749,
"review_count": 3008,
"question_count": 537,
"price": 45,
"total_price": 55,
"stock": 148,
"is_prime": true,
"description": "\n Lorem ipsum dolor amet you probably haven't heard of them ennui raclette VHS irony tumeric pop-up lumbersexual palo santo truffaut yr scenester. Letterpress flannel kitsch lumbersexual, brooklyn chia keffiyeh subway tile everyday carry seitan fam schlitz glossier. Shoreditch franzen tumeric, deep v YOLO bespoke meh. Vaporware knausgaard subway tile pop-up green juice next level, food truck la croix artisan leggings portland occupy truffaut.\n "
},
{
"id": 42,
"unique_id": 42,
"name": "Amazon Product 42",
"category": "bath",
"manufacturer": "Kulas, Kreiger and Littel",
"primary_image": "https://s3.us-east-2.amazonaws.com/product-summary-component/bath42.jpg",
"review_one_star_count": 874,
"review_two_star_count": 503,
"review_three_star_count": 450,
"review_four_star_count": 910,
"review_five_star_count": 860,
"review_count": 3597,
"question_count": 251,
"price": 750,
"total_price": 760,
"stock": 530,
"is_prime": true,
"description": "\n Lorem ipsum dolor amet you probably haven't heard of them ennui raclette VHS irony tumeric pop-up lumbersexual palo santo truffaut yr scenester. Letterpress flannel kitsch lumbersexual, brooklyn chia keffiyeh subway tile everyday carry seitan fam schlitz glossier. Shoreditch franzen tumeric, deep v YOLO bespoke meh. Vaporware knausgaard subway tile pop-up green juice next level, food truck la croix artisan leggings portland occupy truffaut.\n "
},
{
"id": 43,
"unique_id": 43,
"name": "Amazon Product 43",
"category": "bath",
"manufacturer": "Zboncak - Farrell",
"primary_image": "https://s3.us-east-2.amazonaws.com/product-summary-component/bath43.jpg",
"review_one_star_count": 461,
"review_two_star_count": 225,
"review_three_star_count": 284,
"review_four_star_count": 305,
"review_five_star_count": 871,
"review_count": 2146,
"question_count": 799,
"price": 775,
"total_price": 785,
"stock": 747,
"is_prime": false,
"description": "\n Lorem ipsum dolor amet you probably haven't heard of them ennui raclette VHS irony tumeric pop-up lumbersexual palo santo truffaut yr scenester. Letterpress flannel kitsch lumbersexual, brooklyn chia keffiyeh subway tile everyday carry seitan fam schlitz glossier. Shoreditch franzen tumeric, deep v YOLO bespoke meh. Vaporware knausgaard subway tile pop-up green juice next level, food truck la croix artisan leggings portland occupy truffaut.\n "
},
{
"id": 44,
"unique_id": 44,
"name": "Amazon Product 44",
"category": "bath",
"manufacturer": "Mraz - Nitzsche",
"primary_image": "https://s3.us-east-2.amazonaws.com/product-summary-component/bath44.jpg",
"review_one_star_count": 919,
"review_two_star_count": 413,
"review_three_star_count": 688,
"review_four_star_count": 901,
"review_five_star_count": 574,
"review_count": 3495,
"question_count": 932,
"price": 5,
"total_price": 15,
"stock": 922,
"is_prime": false,
"description": "\n Lorem ipsum dolor amet you probably haven't heard of them ennui raclette VHS irony tumeric pop-up lumbersexual palo santo truffaut yr scenester. Letterpress flannel kitsch lumbersexual, brooklyn chia keffiyeh subway tile everyday carry seitan fam schlitz glossier. Shoreditch franzen tumeric, deep v YOLO bespoke meh. Vaporware knausgaard subway tile pop-up green juice next level, food truck la croix artisan leggings portland occupy truffaut.\n "
},
{
"id": 45,
"unique_id": 45,
"name": "Amazon Product 45",
"category": "bath",
"manufacturer": "Kunze - Parisian",
"primary_image": "https://s3.us-east-2.amazonaws.com/product-summary-component/bath45.jpg",
"review_one_star_count": 694,
"review_two_star_count": 418,
"review_three_star_count": 851,
"review_four_star_count": 540,
"review_five_star_count": 801,
"review_count": 3304,
"question_count": 465,
"price": 14,
"total_price": 24,
"stock": 932,
"is_prime": false,
"description": "\n Lorem ipsum dolor amet you probably haven't heard of them ennui raclette VHS irony tumeric pop-up lumbersexual palo santo truffaut yr scenester. Letterpress flannel kitsch lumbersexual, brooklyn chia keffiyeh subway tile everyday carry seitan fam schlitz glossier. Shoreditch franzen tumeric, deep v YOLO bespoke meh. Vaporware knausgaard subway tile pop-up green juice next level, food truck la croix artisan leggings portland occupy truffaut.\n "
},
{
"id": 46,
"unique_id": 46,
"name": "Amazon Product 46",
"category": "bath",
"manufacturer": "Bins - Smith",
"primary_image": "https://s3.us-east-2.amazonaws.com/product-summary-component/bath46.jpg",
"review_one_star_count": 79,
"review_two_star_count": 238,
"review_three_star_count": 996,
"review_four_star_count": 661,
"review_five_star_count": 566,
"review_count": 2540,
"question_count": 327,
"price": 322,
"total_price": 332,
"stock": 625,
"is_prime": false,
"description": "\n Lorem ipsum dolor amet you probably haven't heard of them ennui raclette VHS irony tumeric pop-up lumbersexual palo santo truffaut yr scenester. Letterpress flannel kitsch lumbersexual, brooklyn chia keffiyeh subway tile everyday carry seitan fam schlitz glossier. Shoreditch franzen tumeric, deep v YOLO bespoke meh. Vaporware knausgaard subway tile pop-up green juice next level, food truck la croix artisan leggings portland occupy truffaut.\n "
},
{
"id": 47,
"unique_id": 47,
"name": "Amazon Product 47",
"category": "bath",
"manufacturer": "Rippin and Sons",
"primary_image": "https://s3.us-east-2.amazonaws.com/product-summary-component/bath47.jpg",
"review_one_star_count": 164,
"review_two_star_count": 699,
"review_three_star_count": 544,
"review_four_star_count": 79,
"review_five_star_count": 194,
"review_count": 1680,
"question_count": 755,
"price": 819,
"total_price": 829,
"stock": 710,
"is_prime": false,
"description": "\n Lorem ipsum dolor amet you probably haven't heard of them ennui raclette VHS irony tumeric pop-up lumbersexual palo santo truffaut yr scenester. Letterpress flannel kitsch lumbersexual, brooklyn chia keffiyeh subway tile everyday carry seitan fam schlitz glossier. Shoreditch franzen tumeric, deep v YOLO bespoke meh. Vaporware knausgaard subway tile pop-up green juice next level, food truck la croix artisan leggings portland occupy truffaut.\n "
},
{
"id": 48,
"unique_id": 48,
"name": "Amazon Product 48",
"category": "bath",
"manufacturer": "Stamm - Wolf",
"primary_image": "https://s3.us-east-2.amazonaws.com/product-summary-component/bath48.jpg",
"review_one_star_count": 912,
"review_two_star_count": 713,
"review_three_star_count": 958,
"review_four_star_count": 534,
"review_five_star_count": 636,
"review_count": 3753,
"question_count": 921,
"price": 117,
"total_price": 127,
"stock": 216,
"is_prime": true,
"description": "\n Lorem ipsum dolor amet you probably haven't heard of them ennui raclette VHS irony tumeric pop-up lumbersexual palo santo truffaut yr scenester. Letterpress flannel kitsch lumbersexual, brooklyn chia keffiyeh subway tile everyday carry seitan fam schlitz glossier. Shoreditch franzen tumeric, deep v YOLO bespoke meh. Vaporware knausgaard subway tile pop-up green juice next level, food truck la croix artisan leggings portland occupy truffaut.\n "
},
{
"id": 49,
"unique_id": 49,
"name": "Amazon Product 49",
"category": "bath",
"manufacturer": "Morissette - Thiel",
"primary_image": "https://s3.us-east-2.amazonaws.com/product-summary-component/bath49.jpg",
"review_one_star_count": 433,
"review_two_star_count": 376,
"review_three_star_count": 970,
"review_four_star_count": 281,
"review_five_star_count": 887,
"review_count": 2947,
"question_count": 540,
"price": 389,
"total_price": 399,
"stock": 978,
"is_prime": false,
"description": "\n Lorem ipsum dolor amet you probably haven't heard of them ennui raclette VHS irony tumeric pop-up lumbersexual palo santo truffaut yr scenester. Letterpress flannel kitsch lumbersexual, brooklyn chia keffiyeh subway tile everyday carry seitan fam schlitz glossier. Shoreditch franzen tumeric, deep v YOLO bespoke meh. Vaporware knausgaard subway tile pop-up green juice next level, food truck la croix artisan leggings portland occupy truffaut.\n "
},
{
"id": 50,
"unique_id": 50,
"name": "Amazon Product 50",
"category": "bath",
"manufacturer": "Blick, O'Keefe and Hayes",
"primary_image": "https://s3.us-east-2.amazonaws.com/product-summary-component/bath50.jpg",
"review_one_star_count": 577,
"review_two_star_count": 889,
"review_three_star_count": 867,
"review_four_star_count": 190,
"review_five_star_count": 181,
"review_count": 2704,
"question_count": 288,
"price": 750,
"total_price": 760,
"stock": 751,
"is_prime": true,
"description": "\n Lorem ipsum dolor amet you probably haven't heard of them ennui raclette VHS irony tumeric pop-up lumbersexual palo santo truffaut yr scenester. Letterpress flannel kitsch lumbersexual, brooklyn chia keffiyeh subway tile everyday carry seitan fam schlitz glossier. Shoreditch franzen tumeric, deep v YOLO bespoke meh. Vaporware knausgaard subway tile pop-up green juice next level, food truck la croix artisan leggings portland occupy truffaut.\n "
},
{
"id": 51,
"unique_id": 51,
"name": "Amazon Product 51",
"category": "clothing",
"manufacturer": "Stanton Inc",
"primary_image": "https://s3.us-east-2.amazonaws.com/product-summary-component/clothing51.jpg",
"review_one_star_count": 201,
"review_two_star_count": 938,
"review_three_star_count": 588,
"review_four_star_count": 943,
"review_five_star_count": 702,
"review_count": 3372,
"question_count": 185,
"price": 472,
"total_price": 482,
"stock": 110,
"is_prime": true,
"description": "\n Lorem ipsum dolor amet you probably haven't heard of them ennui raclette VHS irony tumeric pop-up lumbersexual palo santo truffaut yr scenester. Letterpress flannel kitsch lumbersexual, brooklyn chia keffiyeh subway tile everyday carry seitan fam schlitz glossier. Shoreditch franzen tumeric, deep v YOLO bespoke meh. Vaporware knausgaard subway tile pop-up green juice next level, food truck la croix artisan leggings portland occupy truffaut.\n "
},
{
"id": 52,
"unique_id": 52,
"name": "Amazon Product 52",
"category": "clothing",
"manufacturer": "Prohaska Group",
"primary_image": "https://s3.us-east-2.amazonaws.com/product-summary-component/clothing52.jpg",
"review_one_star_count": 162,
"review_two_star_count": 528,
"review_three_star_count": 25,
"review_four_star_count": 204,
"review_five_star_count": 352,
"review_count": 1271,
"question_count": 269,
"price": 532,
"total_price": 542,
"stock": 343,
"is_prime": true,
"description": "\n Lorem ipsum dolor amet you probably haven't heard of them ennui raclette VHS irony tumeric pop-up lumbersexual palo santo truffaut yr scenester. Letterpress flannel kitsch lumbersexual, brooklyn chia keffiyeh subway tile everyday carry seitan fam schlitz glossier. Shoreditch franzen tumeric, deep v YOLO bespoke meh. Vaporware knausgaard subway tile pop-up green juice next level, food truck la croix artisan leggings portland occupy truffaut.\n "
},
{
"id": 53,
"unique_id": 53,
"name": "Amazon Product 53",
"category": "clothing",
"manufacturer": "Dibbert Inc",
"primary_image": "https://s3.us-east-2.amazonaws.com/product-summary-component/clothing53.jpg",
"review_one_star_count": 686,
"review_two_star_count": 208,
"review_three_star_count": 747,
"review_four_star_count": 73,
"review_five_star_count": 522,
"review_count": 2236,
"question_count": 782,
"price": 115,
"total_price": 125,
"stock": 523,
"is_prime": false,
"description": "\n Lorem ipsum dolor amet you probably haven't heard of them ennui raclette VHS irony tumeric pop-up lumbersexual palo santo truffaut yr scenester. Letterpress flannel kitsch lumbersexual, brooklyn chia keffiyeh subway tile everyday carry seitan fam schlitz glossier. Shoreditch franzen tumeric, deep v YOLO bespoke meh. Vaporware knausgaard subway tile pop-up green juice next level, food truck la croix artisan leggings portland occupy truffaut.\n "
},
{
"id": 54,
"unique_id": 54,
"name": "Amazon Product 54",
"category": "clothing",
"manufacturer": "Muller LLC",
"primary_image": "https://s3.us-east-2.amazonaws.com/product-summary-component/clothing54.jpg",
"review_one_star_count": 95,
"review_two_star_count": 535,
"review_three_star_count": 687,
"review_four_star_count": 291,
"review_five_star_count": 811,
"review_count": 2419,
"question_count": 99,
"price": 508,
"total_price": 518,
"stock": 352,
"is_prime": false,
"description": "\n Lorem ipsum dolor amet you probably haven't heard of them ennui raclette VHS irony tumeric pop-up lumbersexual palo santo truffaut yr scenester. Letterpress flannel kitsch lumbersexual, brooklyn chia keffiyeh subway tile everyday carry seitan fam schlitz glossier. Shoreditch franzen tumeric, deep v YOLO bespoke meh. Vaporware knausgaard subway tile pop-up green juice next level, food truck la croix artisan leggings portland occupy truffaut.\n "
},
{
"id": 55,
"unique_id": 55,
"name": "Amazon Product 55",
"category": "clothing",
"manufacturer": "DuBuque - Cronin",
"primary_image": "https://s3.us-east-2.amazonaws.com/product-summary-component/clothing55.jpg",
"review_one_star_count": 440,
"review_two_star_count": 654,
"review_three_star_count": 75,
"review_four_star_count": 776,
"review_five_star_count": 227,
"review_count": 2172,
"question_count": 335,
"price": 214,
"total_price": 224,
"stock": 944,
"is_prime": false,
"description": "\n Lorem ipsum dolor amet you probably haven't heard of them ennui raclette VHS irony tumeric pop-up lumbersexual palo santo truffaut yr scenester. Letterpress flannel kitsch lumbersexual, brooklyn chia keffiyeh subway tile everyday carry seitan fam schlitz glossier. Shoreditch franzen tumeric, deep v YOLO bespoke meh. Vaporware knausgaard subway tile pop-up green juice next level, food truck la croix artisan leggings portland occupy truffaut.\n "
},
{
"id": 56,
"unique_id": 56,
"name": "Amazon Product 56",
"category": "clothing",
"manufacturer": "Upton and Sons",
"primary_image": "https://s3.us-east-2.amazonaws.com/product-summary-component/clothing56.jpg",
"review_one_star_count": 963,
"review_two_star_count": 356,
"review_three_star_count": 958,
"review_four_star_count": 122,
"review_five_star_count": 239,
"review_count": 2638,
"question_count": 617,
"price": 42,
"total_price": 52,
"stock": 673,
"is_prime": true,
"description": "\n Lorem ipsum dolor amet you probably haven't heard of them ennui raclette VHS irony tumeric pop-up lumbersexual palo santo truffaut yr scenester. Letterpress flannel kitsch lumbersexual, brooklyn chia keffiyeh subway tile everyday carry seitan fam schlitz glossier. Shoreditch franzen tumeric, deep v YOLO bespoke meh. Vaporware knausgaard subway tile pop-up green juice next level, food truck la croix artisan leggings portland occupy truffaut.\n "
},
{
"id": 57,
"unique_id": 57,
"name": "Amazon Product 57",
"category": "clothing",
"manufacturer": "Corkery, Huels and Quitzon",
"primary_image": "https://s3.us-east-2.amazonaws.com/product-summary-component/clothing57.jpg",
"review_one_star_count": 580,
"review_two_star_count": 385,
"review_three_star_count": 283,
"review_four_star_count": 61,
"review_five_star_count": 464,
"review_count": 1773,
"question_count": 981,
"price": 18,
"total_price": 28,
"stock": 124,
"is_prime": false,
"description": "\n Lorem ipsum dolor amet you probably haven't heard of them ennui raclette VHS irony tumeric pop-up lumbersexual palo santo truffaut yr scenester. Letterpress flannel kitsch lumbersexual, brooklyn chia keffiyeh subway tile everyday carry seitan fam schlitz glossier. Shoreditch franzen tumeric, deep v YOLO bespoke meh. Vaporware knausgaard subway tile pop-up green juice next level, food truck la croix artisan leggings portland occupy truffaut.\n "
},
{
"id": 58,
"unique_id": 58,
"name": "Amazon Product 58",
"category": "clothing",
"manufacturer": "Jerde - Gulgowski",
"primary_image": "https://s3.us-east-2.amazonaws.com/product-summary-component/clothing58.jpg",
"review_one_star_count": 79,
"review_two_star_count": 466,
"review_three_star_count": 630,
"review_four_star_count": 511,
"review_five_star_count": 57,
"review_count": 1743,
"question_count": 73,
"price": 833,
"total_price": 843,
"stock": 132,
"is_prime": true,
"description": "\n Lorem ipsum dolor amet you probably haven't heard of them ennui raclette VHS irony tumeric pop-up lumbersexual palo santo truffaut yr scenester. Letterpress flannel kitsch lumbersexual, brooklyn chia keffiyeh subway tile everyday carry seitan fam schlitz glossier. Shoreditch franzen tumeric, deep v YOLO bespoke meh. Vaporware knausgaard subway tile pop-up green juice next level, food truck la croix artisan leggings portland occupy truffaut.\n "
},
{
"id": 59,
"unique_id": 59,
"name": "Amazon Product 59",
"category": "clothing",
"manufacturer": "Lind - O'Reilly",
"primary_image": "https://s3.us-east-2.amazonaws.com/product-summary-component/clothing59.jpg",
"review_one_star_count": 387,
"review_two_star_count": 0,
"review_three_star_count": 288,
"review_four_star_count": 99,
"review_five_star_count": 314,
"review_count": 1088,
"question_count": 630,
"price": 273,
"total_price": 283,
"stock": 824,
"is_prime": false,
"description": "\n Lorem ipsum dolor amet you probably haven't heard of them ennui raclette VHS irony tumeric pop-up lumbersexual palo santo truffaut yr scenester. Letterpress flannel kitsch lumbersexual, brooklyn chia keffiyeh subway tile everyday carry seitan fam schlitz glossier. Shoreditch franzen tumeric, deep v YOLO bespoke meh. Vaporware knausgaard subway tile pop-up green juice next level, food truck la croix artisan leggings portland occupy truffaut.\n "
},
{
"id": 60,
"unique_id": 60,
"name": "Amazon Product 60",
"category": "clothing",
"manufacturer": "Buckridge Inc",
"primary_image": "https://s3.us-east-2.amazonaws.com/product-summary-component/clothing60.jpg",
"review_one_star_count": 802,
"review_two_star_count": 179,
"review_three_star_count": 590,
"review_four_star_count": 869,
"review_five_star_count": 575,
"review_count": 3015,
"question_count": 226,
"price": 437,
"total_price": 447,
"stock": 785,
"is_prime": true,
"description": "\n Lorem ipsum dolor amet you probably haven't heard of them ennui raclette VHS irony tumeric pop-up lumbersexual palo santo truffaut yr scenester. Letterpress flannel kitsch lumbersexual, brooklyn chia keffiyeh subway tile everyday carry seitan fam schlitz glossier. Shoreditch franzen tumeric, deep v YOLO bespoke meh. Vaporware knausgaard subway tile pop-up green juice next level, food truck la croix artisan leggings portland occupy truffaut.\n "
},
{
"id": 61,
"unique_id": 61,
"name": "Amazon Product 61",
"category": "board games",
"manufacturer": "Bauch - Jones",
"primary_image": "https://s3.us-east-2.amazonaws.com/product-summary-component/board games61.jpg",
"review_one_star_count": 130,
"review_two_star_count": 839,
"review_three_star_count": 190,
"review_four_star_count": 582,
"review_five_star_count": 458,
"review_count": 2199,
"question_count": 904,
"price": 756,
"total_price": 766,
"stock": 700,
"is_prime": false,
"description": "\n Lorem ipsum dolor amet you probably haven't heard of them ennui raclette VHS irony tumeric pop-up lumbersexual palo santo truffaut yr scenester. Letterpress flannel kitsch lumbersexual, brooklyn chia keffiyeh subway tile everyday carry seitan fam schlitz glossier. Shoreditch franzen tumeric, deep v YOLO bespoke meh. Vaporware knausgaard subway tile pop-up green juice next level, food truck la croix artisan leggings portland occupy truffaut.\n "
},
{
"id": 62,
"unique_id": 62,
"name": "Amazon Product 62",
"category": "board games",
"manufacturer": "Huels Group",
"primary_image": "https://s3.us-east-2.amazonaws.com/product-summary-component/board games62.jpg",
"review_one_star_count": 177,
"review_two_star_count": 223,
"review_three_star_count": 328,
"review_four_star_count": 608,
"review_five_star_count": 884,
"review_count": 2220,
"question_count": 950,
"price": 432,
"total_price": 442,
"stock": 836,
"is_prime": false,
"description": "\n Lorem ipsum dolor amet you probably haven't heard of them ennui raclette VHS irony tumeric pop-up lumbersexual palo santo truffaut yr scenester. Letterpress flannel kitsch lumbersexual, brooklyn chia keffiyeh subway tile everyday carry seitan fam schlitz glossier. Shoreditch franzen tumeric, deep v YOLO bespoke meh. Vaporware knausgaard subway tile pop-up green juice next level, food truck la croix artisan leggings portland occupy truffaut.\n "
},
{
"id": 63,
"unique_id": 63,
"name": "Amazon Product 63",
"category": "board games",
"manufacturer": "Smitham, Paucek and Johnston",
"primary_image": "https://s3.us-east-2.amazonaws.com/product-summary-component/board games63.jpg",
"review_one_star_count": 914,
"review_two_star_count": 821,
"review_three_star_count": 921,
"review_four_star_count": 38,
"review_five_star_count": 153,
"review_count": 2847,
"question_count": 382,
"price": 664,
"total_price": 674,
"stock": 465,
"is_prime": false,
"description": "\n Lorem ipsum dolor amet you probably haven't heard of them ennui raclette VHS irony tumeric pop-up lumbersexual palo santo truffaut yr scenester. Letterpress flannel kitsch lumbersexual, brooklyn chia keffiyeh subway tile everyday carry seitan fam schlitz glossier. Shoreditch franzen tumeric, deep v YOLO bespoke meh. Vaporware knausgaard subway tile pop-up green juice next level, food truck la croix artisan leggings portland occupy truffaut.\n "
},
{
"id": 64,
"unique_id": 64,
"name": "Amazon Product 64",
"category": "board games",
"manufacturer": "Eichmann and Sons",
"primary_image": "https://s3.us-east-2.amazonaws.com/product-summary-component/board games64.jpg",
"review_one_star_count": 961,
"review_two_star_count": 291,
"review_three_star_count": 690,
"review_four_star_count": 630,
"review_five_star_count": 312,
"review_count": 2884,
"question_count": 340,
"price": 181,
"total_price": 191,
"stock": 106,
"is_prime": false,
"description": "\n Lorem ipsum dolor amet you probably haven't heard of them ennui raclette VHS irony tumeric pop-up lumbersexual palo santo truffaut yr scenester. Letterpress flannel kitsch lumbersexual, brooklyn chia keffiyeh subway tile everyday carry seitan fam schlitz glossier. Shoreditch franzen tumeric, deep v YOLO bespoke meh. Vaporware knausgaard subway tile pop-up green juice next level, food truck la croix artisan leggings portland occupy truffaut.\n "
},
{
"id": 65,
"unique_id": 65,
"name": "Amazon Product 65",
"category": "board games",
"manufacturer": "Lang, Swift and Bruen",
"primary_image": "https://s3.us-east-2.amazonaws.com/product-summary-component/board games65.jpg",
"review_one_star_count": 505,
"review_two_star_count": 575,
"review_three_star_count": 176,
"review_four_star_count": 948,
"review_five_star_count": 472,
"review_count": 2676,
"question_count": 840,
"price": 955,
"total_price": 965,
"stock": 391,
"is_prime": true,
"description": "\n Lorem ipsum dolor amet you probably haven't heard of them ennui raclette VHS irony tumeric pop-up lumbersexual palo santo truffaut yr scenester. Letterpress flannel kitsch lumbersexual, brooklyn chia keffiyeh subway tile everyday carry seitan fam schlitz glossier. Shoreditch franzen tumeric, deep v YOLO bespoke meh. Vaporware knausgaard subway tile pop-up green juice next level, food truck la croix artisan leggings portland occupy truffaut.\n "
},
{
"id": 66,
"unique_id": 66,
"name": "Amazon Product 66",
"category": "board games",
"manufacturer": "Will - Franecki",
"primary_image": "https://s3.us-east-2.amazonaws.com/product-summary-component/board games66.jpg",
"review_one_star_count": 160,
"review_two_star_count": 960,
"review_three_star_count": 500,
"review_four_star_count": 478,
"review_five_star_count": 20,
"review_count": 2118,
"question_count": 891,
"price": 900,
"total_price": 910,
"stock": 129,
"is_prime": true,
"description": "\n Lorem ipsum dolor amet you probably haven't heard of them ennui raclette VHS irony tumeric pop-up lumbersexual palo santo truffaut yr scenester. Letterpress flannel kitsch lumbersexual, brooklyn chia keffiyeh subway tile everyday carry seitan fam schlitz glossier. Shoreditch franzen tumeric, deep v YOLO bespoke meh. Vaporware knausgaard subway tile pop-up green juice next level, food truck la croix artisan leggings portland occupy truffaut.\n "
},
{
"id": 67,
"unique_id": 67,
"name": "Amazon Product 67",
"category": "board games",
"manufacturer": "Swift Inc",
"primary_image": "https://s3.us-east-2.amazonaws.com/product-summary-component/board games67.jpg",
"review_one_star_count": 810,
"review_two_star_count": 495,
"review_three_star_count": 0,
"review_four_star_count": 569,
"review_five_star_count": 247,
"review_count": 2121,
"question_count": 398,
"price": 386,
"total_price": 396,
"stock": 588,
"is_prime": false,
"description": "\n Lorem ipsum dolor amet you probably haven't heard of them ennui raclette VHS irony tumeric pop-up lumbersexual palo santo truffaut yr scenester. Letterpress flannel kitsch lumbersexual, brooklyn chia keffiyeh subway tile everyday carry seitan fam schlitz glossier. Shoreditch franzen tumeric, deep v YOLO bespoke meh. Vaporware knausgaard subway tile pop-up green juice next level, food truck la croix artisan leggings portland occupy truffaut.\n "
},
{
"id": 68,
"unique_id": 68,
"name": "Amazon Product 68",
"category": "board games",
"manufacturer": "Eichmann, Conroy and Schmidt",
"primary_image": "https://s3.us-east-2.amazonaws.com/product-summary-component/board games68.jpg",
"review_one_star_count": 797,
"review_two_star_count": 965,
"review_three_star_count": 475,
"review_four_star_count": 106,
"review_five_star_count": 472,
"review_count": 2815,
"question_count": 145,
"price": -3,
"total_price": 7,
"stock": 444,
"is_prime": false,
"description": "\n Lorem ipsum dolor amet you probably haven't heard of them ennui raclette VHS irony tumeric pop-up lumbersexual palo santo truffaut yr scenester. Letterpress flannel kitsch lumbersexual, brooklyn chia keffiyeh subway tile everyday carry seitan fam schlitz glossier. Shoreditch franzen tumeric, deep v YOLO bespoke meh. Vaporware knausgaard subway tile pop-up green juice next level, food truck la croix artisan leggings portland occupy truffaut.\n "
},
{
"id": 69,
"unique_id": 69,
"name": "Amazon Product 69",
"category": "board games",
"manufacturer": "McLaughlin - Wisoky",
"primary_image": "https://s3.us-east-2.amazonaws.com/product-summary-component/board games69.jpg",
"review_one_star_count": 194,
"review_two_star_count": 539,
"review_three_star_count": 716,
"review_four_star_count": 819,
"review_five_star_count": 657,
"review_count": 2925,
"question_count": 952,
"price": 428,
"total_price": 438,
"stock": 520,
"is_prime": true,
"description": "\n Lorem ipsum dolor amet you probably haven't heard of them ennui raclette VHS irony tumeric pop-up lumbersexual palo santo truffaut yr scenester. Letterpress flannel kitsch lumbersexual, brooklyn chia keffiyeh subway tile everyday carry seitan fam schlitz glossier. Shoreditch franzen tumeric, deep v YOLO bespoke meh. Vaporware knausgaard subway tile pop-up green juice next level, food truck la croix artisan leggings portland occupy truffaut.\n "
},
{
"id": 70,
"unique_id": 70,
"name": "Amazon Product 70",
"category": "board games",
"manufacturer": "Balistreri - Wintheiser",
"primary_image": "https://s3.us-east-2.amazonaws.com/product-summary-component/board games70.jpg",
"review_one_star_count": 954,
"review_two_star_count": 402,
"review_three_star_count": 121,
"review_four_star_count": 299,
"review_five_star_count": 691,
"review_count": 2467,
"question_count": 413,
"price": 595,
"total_price": 605,
"stock": 871,
"is_prime": false,
"description": "\n Lorem ipsum dolor amet you probably haven't heard of them ennui raclette VHS irony tumeric pop-up lumbersexual palo santo truffaut yr scenester. Letterpress flannel kitsch lumbersexual, brooklyn chia keffiyeh subway tile everyday carry seitan fam schlitz glossier. Shoreditch franzen tumeric, deep v YOLO bespoke meh. Vaporware knausgaard subway tile pop-up green juice next level, food truck la croix artisan leggings portland occupy truffaut.\n "
},
{
"id": 71,
"unique_id": 71,
"name": "Amazon Product 71",
"category": "food",
"manufacturer": "Donnelly - Hettinger",
"primary_image": "https://s3.us-east-2.amazonaws.com/product-summary-component/food71.jpg",
"review_one_star_count": 899,
"review_two_star_count": 561,
"review_three_star_count": 397,
"review_four_star_count": 123,
"review_five_star_count": 963,
"review_count": 2943,
"question_count": 368,
"price": 259,
"total_price": 269,
"stock": 645,
"is_prime": false,
"description": "\n Lorem ipsum dolor amet you probably haven't heard of them ennui raclette VHS irony tumeric pop-up lumbersexual palo santo truffaut yr scenester. Letterpress flannel kitsch lumbersexual, brooklyn chia keffiyeh subway tile everyday carry seitan fam schlitz glossier. Shoreditch franzen tumeric, deep v YOLO bespoke meh. Vaporware knausgaard subway tile pop-up green juice next level, food truck la croix artisan leggings portland occupy truffaut.\n "
},
{
"id": 72,
"unique_id": 72,
"name": "Amazon Product 72",
"category": "food",
"manufacturer": "Lind - Welch",
"primary_image": "https://s3.us-east-2.amazonaws.com/product-summary-component/food72.jpg",
"review_one_star_count": 38,
"review_two_star_count": 749,
"review_three_star_count": 107,
"review_four_star_count": 695,
"review_five_star_count": 562,
"review_count": 2151,
"question_count": 216,
"price": 408,
"total_price": 418,
"stock": 38,
"is_prime": true,
"description": "\n Lorem ipsum dolor amet you probably haven't heard of them ennui raclette VHS irony tumeric pop-up lumbersexual palo santo truffaut yr scenester. Letterpress flannel kitsch lumbersexual, brooklyn chia keffiyeh subway tile everyday carry seitan fam schlitz glossier. Shoreditch franzen tumeric, deep v YOLO bespoke meh. Vaporware knausgaard subway tile pop-up green juice next level, food truck la croix artisan leggings portland occupy truffaut.\n "
},
{
"id": 73,
"unique_id": 73,
"name": "Amazon Product 73",
"category": "food",
"manufacturer": "Carroll, Wisoky and Yundt",
"primary_image": "https://s3.us-east-2.amazonaws.com/product-summary-component/food73.jpg",
"review_one_star_count": 948,
"review_two_star_count": 881,
"review_three_star_count": 770,
"review_four_star_count": 561,
"review_five_star_count": 859,
"review_count": 4019,
"question_count": 208,
"price": 277,
"total_price": 287,
"stock": 327,
"is_prime": false,
"description": "\n Lorem ipsum dolor amet you probably haven't heard of them ennui raclette VHS irony tumeric pop-up lumbersexual palo santo truffaut yr scenester. Letterpress flannel kitsch lumbersexual, brooklyn chia keffiyeh subway tile everyday carry seitan fam schlitz glossier. Shoreditch franzen tumeric, deep v YOLO bespoke meh. Vaporware knausgaard subway tile pop-up green juice next level, food truck la croix artisan leggings portland occupy truffaut.\n "
},
{
"id": 74,
"unique_id": 74,
"name": "Amazon Product 74",
"category": "food",
"manufacturer": "Thiel - Roberts",
"primary_image": "https://s3.us-east-2.amazonaws.com/product-summary-component/food74.jpg",
"review_one_star_count": 543,
"review_two_star_count": 148,
"review_three_star_count": 629,
"review_four_star_count": 301,
"review_five_star_count": 538,
"review_count": 2159,
"question_count": 711,
"price": 300,
"total_price": 310,
"stock": 498,
"is_prime": true,
"description": "\n Lorem ipsum dolor amet you probably haven't heard of them ennui raclette VHS irony tumeric pop-up lumbersexual palo santo truffaut yr scenester. Letterpress flannel kitsch lumbersexual, brooklyn chia keffiyeh subway tile everyday carry seitan fam schlitz glossier. Shoreditch franzen tumeric, deep v YOLO bespoke meh. Vaporware knausgaard subway tile pop-up green juice next level, food truck la croix artisan leggings portland occupy truffaut.\n "
},
{
"id": 75,
"unique_id": 75,
"name": "Amazon Product 75",
"category": "food",
"manufacturer": "Tillman - Bosco",
"primary_image": "https://s3.us-east-2.amazonaws.com/product-summary-component/food75.jpg",
"review_one_star_count": 481,
"review_two_star_count": 621,
"review_three_star_count": 249,
"review_four_star_count": 837,
"review_five_star_count": 582,
"review_count": 2770,
"question_count": 912,
"price": 865,
"total_price": 875,
"stock": 4,
"is_prime": false,
"description": "\n Lorem ipsum dolor amet you probably haven't heard of them ennui raclette VHS irony tumeric pop-up lumbersexual palo santo truffaut yr scenester. Letterpress flannel kitsch lumbersexual, brooklyn chia keffiyeh subway tile everyday carry seitan fam schlitz glossier. Shoreditch franzen tumeric, deep v YOLO bespoke meh. Vaporware knausgaard subway tile pop-up green juice next level, food truck la croix artisan leggings portland occupy truffaut.\n "
},
{
"id": 76,
"unique_id": 76,
"name": "Amazon Product 76",
"category": "food",
"manufacturer": "Flatley, Aufderhar and Champlin",
"primary_image": "https://s3.us-east-2.amazonaws.com/product-summary-component/food76.jpg",
"review_one_star_count": 561,
"review_two_star_count": 993,
"review_three_star_count": 332,
"review_four_star_count": 289,
"review_five_star_count": 93,
"review_count": 2268,
"question_count": 452,
"price": 262,
"total_price": 272,
"stock": 984,
"is_prime": false,
"description": "\n Lorem ipsum dolor amet you probably haven't heard of them ennui raclette VHS irony tumeric pop-up lumbersexual palo santo truffaut yr scenester. Letterpress flannel kitsch lumbersexual, brooklyn chia keffiyeh subway tile everyday carry seitan fam schlitz glossier. Shoreditch franzen tumeric, deep v YOLO bespoke meh. Vaporware knausgaard subway tile pop-up green juice next level, food truck la croix artisan leggings portland occupy truffaut.\n "
},
{
"id": 77,
"unique_id": 77,
"name": "Amazon Product 77",
"category": "food",
"manufacturer": "Reichert, Boyer and Hamill",
"primary_image": "https://s3.us-east-2.amazonaws.com/product-summary-component/food77.jpg",
"review_one_star_count": 727,
"review_two_star_count": 903,
"review_three_star_count": 272,
"review_four_star_count": 692,
"review_five_star_count": 588,
"review_count": 3182,
"question_count": 305,
"price": 365,
"total_price": 375,
"stock": 248,
"is_prime": true,
"description": "\n Lorem ipsum dolor amet you probably haven't heard of them ennui raclette VHS irony tumeric pop-up lumbersexual palo santo truffaut yr scenester. Letterpress flannel kitsch lumbersexual, brooklyn chia keffiyeh subway tile everyday carry seitan fam schlitz glossier. Shoreditch franzen tumeric, deep v YOLO bespoke meh. Vaporware knausgaard subway tile pop-up green juice next level, food truck la croix artisan leggings portland occupy truffaut.\n "
},
{
"id": 78,
"unique_id": 78,
"name": "Amazon Product 78",
"category": "food",
"manufacturer": "Bradtke, Reynolds and Erdman",
"primary_image": "https://s3.us-east-2.amazonaws.com/product-summary-component/food78.jpg",
"review_one_star_count": 755,
"review_two_star_count": 256,
"review_three_star_count": 73,
"review_four_star_count": 402,
"review_five_star_count": 131,
"review_count": 1617,
"question_count": 634,
"price": 707,
"total_price": 717,
"stock": 191,
"is_prime": false,
"description": "\n Lorem ipsum dolor amet you probably haven't heard of them ennui raclette VHS irony tumeric pop-up lumbersexual palo santo truffaut yr scenester. Letterpress flannel kitsch lumbersexual, brooklyn chia keffiyeh subway tile everyday carry seitan fam schlitz glossier. Shoreditch franzen tumeric, deep v YOLO bespoke meh. Vaporware knausgaard subway tile pop-up green juice next level, food truck la croix artisan leggings portland occupy truffaut.\n "
},
{
"id": 79,
"unique_id": 79,
"name": "Amazon Product 79",
"category": "food",
"manufacturer": "Konopelski Inc",
"primary_image": "https://s3.us-east-2.amazonaws.com/product-summary-component/food79.jpg",
"review_one_star_count": 310,
"review_two_star_count": 536,
"review_three_star_count": 264,
"review_four_star_count": 970,
"review_five_star_count": 980,
"review_count": 3060,
"question_count": 919,
"price": 837,
"total_price": 847,
"stock": 403,
"is_prime": true,
"description": "\n Lorem ipsum dolor amet you probably haven't heard of them ennui raclette VHS irony tumeric pop-up lumbersexual palo santo truffaut yr scenester. Letterpress flannel kitsch lumbersexual, brooklyn chia keffiyeh subway tile everyday carry seitan fam schlitz glossier. Shoreditch franzen tumeric, deep v YOLO bespoke meh. Vaporware knausgaard subway tile pop-up green juice next level, food truck la croix artisan leggings portland occupy truffaut.\n "
},
{
"id": 80,
"unique_id": 80,
"name": "Amazon Product 80",
"category": "food",
"manufacturer": "Johns - Conn",
"primary_image": "https://s3.us-east-2.amazonaws.com/product-summary-component/food80.jpg",
"review_one_star_count": 283,
"review_two_star_count": 689,
"review_three_star_count": 215,
"review_four_star_count": 438,
"review_five_star_count": 845,
"review_count": 2470,
"question_count": 551,
"price": 645,
"total_price": 655,
"stock": 462,
"is_prime": false,
"description": "\n Lorem ipsum dolor amet you probably haven't heard of them ennui raclette VHS irony tumeric pop-up lumbersexual palo santo truffaut yr scenester. Letterpress flannel kitsch lumbersexual, brooklyn chia keffiyeh subway tile everyday carry seitan fam schlitz glossier. Shoreditch franzen tumeric, deep v YOLO bespoke meh. Vaporware knausgaard subway tile pop-up green juice next level, food truck la croix artisan leggings portland occupy truffaut.\n "
},
{
"id": 81,
"unique_id": 81,
"name": "Amazon Product 81",
"category": "toys",
"manufacturer": "Kohler - Tillman",
"primary_image": "https://s3.us-east-2.amazonaws.com/product-summary-component/toys81.jpg",
"review_one_star_count": 685,
"review_two_star_count": 852,
"review_three_star_count": 159,
"review_four_star_count": 79,
"review_five_star_count": 92,
"review_count": 1867,
"question_count": 906,
"price": 399,
"total_price": 409,
"stock": 518,
"is_prime": false,
"description": "\n Lorem ipsum dolor amet you probably haven't heard of them ennui raclette VHS irony tumeric pop-up lumbersexual palo santo truffaut yr scenester. Letterpress flannel kitsch lumbersexual, brooklyn chia keffiyeh subway tile everyday carry seitan fam schlitz glossier. Shoreditch franzen tumeric, deep v YOLO bespoke meh. Vaporware knausgaard subway tile pop-up green juice next level, food truck la croix artisan leggings portland occupy truffaut.\n "
},
{
"id": 82,
"unique_id": 82,
"name": "Amazon Product 82",
"category": "toys",
"manufacturer": "Emmerich, Gerlach and Hessel",
"primary_image": "https://s3.us-east-2.amazonaws.com/product-summary-component/toys82.jpg",
"review_one_star_count": 452,
"review_two_star_count": 614,
"review_three_star_count": 50,
"review_four_star_count": 763,
"review_five_star_count": 385,
"review_count": 2264,
"question_count": 218,
"price": 480,
"total_price": 490,
"stock": 55,
"is_prime": true,
"description": "\n Lorem ipsum dolor amet you probably haven't heard of them ennui raclette VHS irony tumeric pop-up lumbersexual palo santo truffaut yr scenester. Letterpress flannel kitsch lumbersexual, brooklyn chia keffiyeh subway tile everyday carry seitan fam schlitz glossier. Shoreditch franzen tumeric, deep v YOLO bespoke meh. Vaporware knausgaard subway tile pop-up green juice next level, food truck la croix artisan leggings portland occupy truffaut.\n "
},
{
"id": 83,
"unique_id": 83,
"name": "Amazon Product 83",
"category": "toys",
"manufacturer": "Rippin - Mohr",
"primary_image": "https://s3.us-east-2.amazonaws.com/product-summary-component/toys83.jpg",
"review_one_star_count": 324,
"review_two_star_count": 413,
"review_three_star_count": 81,
"review_four_star_count": 562,
"review_five_star_count": 674,
"review_count": 2054,
"question_count": 616,
"price": 689,
"total_price": 699,
"stock": 953,
"is_prime": false,
"description": "\n Lorem ipsum dolor amet you probably haven't heard of them ennui raclette VHS irony tumeric pop-up lumbersexual palo santo truffaut yr scenester. Letterpress flannel kitsch lumbersexual, brooklyn chia keffiyeh subway tile everyday carry seitan fam schlitz glossier. Shoreditch franzen tumeric, deep v YOLO bespoke meh. Vaporware knausgaard subway tile pop-up green juice next level, food truck la croix artisan leggings portland occupy truffaut.\n "
},
{
"id": 84,
"unique_id": 84,
"name": "Amazon Product 84",
"category": "toys",
"manufacturer": "Walter - Abshire",
"primary_image": "https://s3.us-east-2.amazonaws.com/product-summary-component/toys84.jpg",
"review_one_star_count": 200,
"review_two_star_count": 842,
"review_three_star_count": 569,
"review_four_star_count": 418,
"review_five_star_count": 233,
"review_count": 2262,
"question_count": 605,
"price": 911,
"total_price": 921,
"stock": 310,
"is_prime": true,
"description": "\n Lorem ipsum dolor amet you probably haven't heard of them ennui raclette VHS irony tumeric pop-up lumbersexual palo santo truffaut yr scenester. Letterpress flannel kitsch lumbersexual, brooklyn chia keffiyeh subway tile everyday carry seitan fam schlitz glossier. Shoreditch franzen tumeric, deep v YOLO bespoke meh. Vaporware knausgaard subway tile pop-up green juice next level, food truck la croix artisan leggings portland occupy truffaut.\n "
},
{
"id": 85,
"unique_id": 85,
"name": "Amazon Product 85",
"category": "toys",
"manufacturer": "Satterfield, Altenwerth and Ferry",
"primary_image": "https://s3.us-east-2.amazonaws.com/product-summary-component/toys85.jpg",
"review_one_star_count": 961,
"review_two_star_count": 108,
"review_three_star_count": 19,
"review_four_star_count": 520,
"review_five_star_count": 41,
"review_count": 1649,
"question_count": 60,
"price": 620,
"total_price": 630,
"stock": 229,
"is_prime": true,
"description": "\n Lorem ipsum dolor amet you probably haven't heard of them ennui raclette VHS irony tumeric pop-up lumbersexual palo santo truffaut yr scenester. Letterpress flannel kitsch lumbersexual, brooklyn chia keffiyeh subway tile everyday carry seitan fam schlitz glossier. Shoreditch franzen tumeric, deep v YOLO bespoke meh. Vaporware knausgaard subway tile pop-up green juice next level, food truck la croix artisan leggings portland occupy truffaut.\n "
},
{
"id": 86,
"unique_id": 86,
"name": "Amazon Product 86",
"category": "toys",
"manufacturer": "Predovic - Mayert",
"primary_image": "https://s3.us-east-2.amazonaws.com/product-summary-component/toys86.jpg",
"review_one_star_count": 191,
"review_two_star_count": 467,
"review_three_star_count": 516,
"review_four_star_count": 792,
"review_five_star_count": 974,
"review_count": 2940,
"question_count": 835,
"price": 632,
"total_price": 642,
"stock": 684,
"is_prime": true,
"description": "\n Lorem ipsum dolor amet you probably haven't heard of them ennui raclette VHS irony tumeric pop-up lumbersexual palo santo truffaut yr scenester. Letterpress flannel kitsch lumbersexual, brooklyn chia keffiyeh subway tile everyday carry seitan fam schlitz glossier. Shoreditch franzen tumeric, deep v YOLO bespoke meh. Vaporware knausgaard subway tile pop-up green juice next level, food truck la croix artisan leggings portland occupy truffaut.\n "
},
{
"id": 87,
"unique_id": 87,
"name": "Amazon Product 87",
"category": "toys",
"manufacturer": "Dickinson, Bernhard and Kohler",
"primary_image": "https://s3.us-east-2.amazonaws.com/product-summary-component/toys87.jpg",
"review_one_star_count": 459,
"review_two_star_count": 785,
"review_three_star_count": 650,
"review_four_star_count": 656,
"review_five_star_count": 27,
"review_count": 2577,
"question_count": 914,
"price": 197,
"total_price": 207,
"stock": 833,
"is_prime": false,
"description": "\n Lorem ipsum dolor amet you probably haven't heard of them ennui raclette VHS irony tumeric pop-up lumbersexual palo santo truffaut yr scenester. Letterpress flannel kitsch lumbersexual, brooklyn chia keffiyeh subway tile everyday carry seitan fam schlitz glossier. Shoreditch franzen tumeric, deep v YOLO bespoke meh. Vaporware knausgaard subway tile pop-up green juice next level, food truck la croix artisan leggings portland occupy truffaut.\n "
},
{
"id": 88,
"unique_id": 88,
"name": "Amazon Product 88",
"category": "toys",
"manufacturer": "Jones, Ratke and Von",
"primary_image": "https://s3.us-east-2.amazonaws.com/product-summary-component/toys88.jpg",
"review_one_star_count": 267,
"review_two_star_count": 622,
"review_three_star_count": 116,
"review_four_star_count": 30,
"review_five_star_count": 293,
"review_count": 1328,
"question_count": 166,
"price": 857,
"total_price": 867,
"stock": 490,
"is_prime": true,
"description": "\n Lorem ipsum dolor amet you probably haven't heard of them ennui raclette VHS irony tumeric pop-up lumbersexual palo santo truffaut yr scenester. Letterpress flannel kitsch lumbersexual, brooklyn chia keffiyeh subway tile everyday carry seitan fam schlitz glossier. Shoreditch franzen tumeric, deep v YOLO bespoke meh. Vaporware knausgaard subway tile pop-up green juice next level, food truck la croix artisan leggings portland occupy truffaut.\n "
},
{
"id": 89,
"unique_id": 89,
"name": "Amazon Product 89",
"category": "toys",
"manufacturer": "Huels, Kassulke and Homenick",
"primary_image": "https://s3.us-east-2.amazonaws.com/product-summary-component/toys89.jpg",
"review_one_star_count": 216,
"review_two_star_count": 875,
"review_three_star_count": 955,
"review_four_star_count": 228,
"review_five_star_count": 519,
"review_count": 2793,
"question_count": 294,
"price": 621,
"total_price": 631,
"stock": 208,
"is_prime": true,
"description": "\n Lorem ipsum dolor amet you probably haven't heard of them ennui raclette VHS irony tumeric pop-up lumbersexual palo santo truffaut yr scenester. Letterpress flannel kitsch lumbersexual, brooklyn chia keffiyeh subway tile everyday carry seitan fam schlitz glossier. Shoreditch franzen tumeric, deep v YOLO bespoke meh. Vaporware knausgaard subway tile pop-up green juice next level, food truck la croix artisan leggings portland occupy truffaut.\n "
},
{
"id": 90,
"unique_id": 90,
"name": "Amazon Product 90",
"category": "toys",
"manufacturer": "Schultz, Stiedemann and Zulauf",
"primary_image": "https://s3.us-east-2.amazonaws.com/product-summary-component/toys90.jpg",
"review_one_star_count": 781,
"review_two_star_count": 976,
"review_three_star_count": 111,
"review_four_star_count": 605,
"review_five_star_count": 227,
"review_count": 2700,
"question_count": 536,
"price": 272,
"total_price": 282,
"stock": 442,
"is_prime": true,
"description": "\n Lorem ipsum dolor amet you probably haven't heard of them ennui raclette VHS irony tumeric pop-up lumbersexual palo santo truffaut yr scenester. Letterpress flannel kitsch lumbersexual, brooklyn chia keffiyeh subway tile everyday carry seitan fam schlitz glossier. Shoreditch franzen tumeric, deep v YOLO bespoke meh. Vaporware knausgaard subway tile pop-up green juice next level, food truck la croix artisan leggings portland occupy truffaut.\n "
},
{
"id": 91,
"unique_id": 91,
"name": "Amazon Product 91",
"category": "jewelery",
"manufacturer": "Mann - Cronin",
"primary_image": "https://s3.us-east-2.amazonaws.com/product-summary-component/jewelery91.jpg",
"review_one_star_count": 417,
"review_two_star_count": 272,
"review_three_star_count": 765,
"review_four_star_count": 491,
"review_five_star_count": 875,
"review_count": 2820,
"question_count": 958,
"price": 943,
"total_price": 953,
"stock": 448,
"is_prime": true,
"description": "\n Lorem ipsum dolor amet you probably haven't heard of them ennui raclette VHS irony tumeric pop-up lumbersexual palo santo truffaut yr scenester. Letterpress flannel kitsch lumbersexual, brooklyn chia keffiyeh subway tile everyday carry seitan fam schlitz glossier. Shoreditch franzen tumeric, deep v YOLO bespoke meh. Vaporware knausgaard subway tile pop-up green juice next level, food truck la croix artisan leggings portland occupy truffaut.\n "
},
{
"id": 92,
"unique_id": 92,
"name": "Amazon Product 92",
"category": "jewelery",
"manufacturer": "Heller and Sons",
"primary_image": "https://s3.us-east-2.amazonaws.com/product-summary-component/jewelery92.jpg",
"review_one_star_count": 211,
"review_two_star_count": 180,
"review_three_star_count": 27,
"review_four_star_count": 399,
"review_five_star_count": 859,
"review_count": 1676,
"question_count": 815,
"price": 378,
"total_price": 388,
"stock": 234,
"is_prime": true,
"description": "\n Lorem ipsum dolor amet you probably haven't heard of them ennui raclette VHS irony tumeric pop-up lumbersexual palo santo truffaut yr scenester. Letterpress flannel kitsch lumbersexual, brooklyn chia keffiyeh subway tile everyday carry seitan fam schlitz glossier. Shoreditch franzen tumeric, deep v YOLO bespoke meh. Vaporware knausgaard subway tile pop-up green juice next level, food truck la croix artisan leggings portland occupy truffaut.\n "
},
{
"id": 93,
"unique_id": 93,
"name": "Amazon Product 93",
"category": "jewelery",
"manufacturer": "Conn Group",
"primary_image": "https://s3.us-east-2.amazonaws.com/product-summary-component/jewelery93.jpg",
"review_one_star_count": 839,
"review_two_star_count": 969,
"review_three_star_count": 308,
"review_four_star_count": 237,
"review_five_star_count": 866,
"review_count": 3219,
"question_count": 848,
"price": 906,
"total_price": 916,
"stock": 841,
"is_prime": true,
"description": "\n Lorem ipsum dolor amet you probably haven't heard of them ennui raclette VHS irony tumeric pop-up lumbersexual palo santo truffaut yr scenester. Letterpress flannel kitsch lumbersexual, brooklyn chia keffiyeh subway tile everyday carry seitan fam schlitz glossier. Shoreditch franzen tumeric, deep v YOLO bespoke meh. Vaporware knausgaard subway tile pop-up green juice next level, food truck la croix artisan leggings portland occupy truffaut.\n "
},
{
"id": 94,
"unique_id": 94,
"name": "Amazon Product 94",
"category": "jewelery",
"manufacturer": "Baumbach - Durgan",
"primary_image": "https://s3.us-east-2.amazonaws.com/product-summary-component/jewelery94.jpg",
"review_one_star_count": 80,
"review_two_star_count": 518,
"review_three_star_count": 854,
"review_four_star_count": 177,
"review_five_star_count": 824,
"review_count": 2453,
"question_count": 453,
"price": 663,
"total_price": 673,
"stock": 487,
"is_prime": false,
"description": "\n Lorem ipsum dolor amet you probably haven't heard of them ennui raclette VHS irony tumeric pop-up lumbersexual palo santo truffaut yr scenester. Letterpress flannel kitsch lumbersexual, brooklyn chia keffiyeh subway tile everyday carry seitan fam schlitz glossier. Shoreditch franzen tumeric, deep v YOLO bespoke meh. Vaporware knausgaard subway tile pop-up green juice next level, food truck la croix artisan leggings portland occupy truffaut.\n "
},
{
"id": 95,
"unique_id": 95,
"name": "Amazon Product 95",
"category": "jewelery",
"manufacturer": "Terry - Durgan",
"primary_image": "https://s3.us-east-2.amazonaws.com/product-summary-component/jewelery95.jpg",
"review_one_star_count": 449,
"review_two_star_count": 246,
"review_three_star_count": 731,
"review_four_star_count": 883,
"review_five_star_count": 422,
"review_count": 2731,
"question_count": 697,
"price": 430,
"total_price": 440,
"stock": 996,
"is_prime": false,
"description": "\n Lorem ipsum dolor amet you probably haven't heard of them ennui raclette VHS irony tumeric pop-up lumbersexual palo santo truffaut yr scenester. Letterpress flannel kitsch lumbersexual, brooklyn chia keffiyeh subway tile everyday carry seitan fam schlitz glossier. Shoreditch franzen tumeric, deep v YOLO bespoke meh. Vaporware knausgaard subway tile pop-up green juice next level, food truck la croix artisan leggings portland occupy truffaut.\n "
},
{
"id": 96,
"unique_id": 96,
"name": "Amazon Product 96",
"category": "jewelery",
"manufacturer": "Ritchie, D'Amore and Simonis",
"primary_image": "https://s3.us-east-2.amazonaws.com/product-summary-component/jewelery96.jpg",
"review_one_star_count": 429,
"review_two_star_count": 122,
"review_three_star_count": 233,
"review_four_star_count": 558,
"review_five_star_count": 238,
"review_count": 1580,
"question_count": 333,
"price": 218,
"total_price": 228,
"stock": 472,
"is_prime": true,
"description": "\n Lorem ipsum dolor amet you probably haven't heard of them ennui raclette VHS irony tumeric pop-up lumbersexual palo santo truffaut yr scenester. Letterpress flannel kitsch lumbersexual, brooklyn chia keffiyeh subway tile everyday carry seitan fam schlitz glossier. Shoreditch franzen tumeric, deep v YOLO bespoke meh. Vaporware knausgaard subway tile pop-up green juice next level, food truck la croix artisan leggings portland occupy truffaut.\n "
},
{
"id": 97,
"unique_id": 97,
"name": "Amazon Product 97",
"category": "jewelery",
"manufacturer": "Gibson, Walker and Zieme",
"primary_image": "https://s3.us-east-2.amazonaws.com/product-summary-component/jewelery97.jpg",
"review_one_star_count": 856,
"review_two_star_count": 131,
"review_three_star_count": 118,
"review_four_star_count": 371,
"review_five_star_count": 618,
"review_count": 2094,
"question_count": 798,
"price": 598,
"total_price": 608,
"stock": 605,
"is_prime": true,
"description": "\n Lorem ipsum dolor amet you probably haven't heard of them ennui raclette VHS irony tumeric pop-up lumbersexual palo santo truffaut yr scenester. Letterpress flannel kitsch lumbersexual, brooklyn chia keffiyeh subway tile everyday carry seitan fam schlitz glossier. Shoreditch franzen tumeric, deep v YOLO bespoke meh. Vaporware knausgaard subway tile pop-up green juice next level, food truck la croix artisan leggings portland occupy truffaut.\n "
},
{
"id": 98,
"unique_id": 98,
"name": "Amazon Product 98",
"category": "jewelery",
"manufacturer": "Prosacco Group",
"primary_image": "https://s3.us-east-2.amazonaws.com/product-summary-component/jewelery98.jpg",
"review_one_star_count": 159,
"review_two_star_count": 270,
"review_three_star_count": 806,
"review_four_star_count": 956,
"review_five_star_count": 934,
"review_count": 3125,
"question_count": 278,
"price": 0,
"total_price": 10,
"stock": 831,
"is_prime": false,
"description": "\n Lorem ipsum dolor amet you probably haven't heard of them ennui raclette VHS irony tumeric pop-up lumbersexual palo santo truffaut yr scenester. Letterpress flannel kitsch lumbersexual, brooklyn chia keffiyeh subway tile everyday carry seitan fam schlitz glossier. Shoreditch franzen tumeric, deep v YOLO bespoke meh. Vaporware knausgaard subway tile pop-up green juice next level, food truck la croix artisan leggings portland occupy truffaut.\n "
},
{
"id": 99,
"unique_id": 99,
"name": "Amazon Product 99",
"category": "jewelery",
"manufacturer": "Pfeffer - Oberbrunner",
"primary_image": "https://s3.us-east-2.amazonaws.com/product-summary-component/jewelery99.jpg",
"review_one_star_count": 676,
"review_two_star_count": 70,
"review_three_star_count": 935,
"review_four_star_count": 792,
"review_five_star_count": 185,
"review_count": 2658,
"question_count": 744,
"price": 632,
"total_price": 642,
"stock": 630,
"is_prime": true,
"description": "\n Lorem ipsum dolor amet you probably haven't heard of them ennui raclette VHS irony tumeric pop-up lumbersexual palo santo truffaut yr scenester. Letterpress flannel kitsch lumbersexual, brooklyn chia keffiyeh subway tile everyday carry seitan fam schlitz glossier. Shoreditch franzen tumeric, deep v YOLO bespoke meh. Vaporware knausgaard subway tile pop-up green juice next level, food truck la croix artisan leggings portland occupy truffaut.\n "
},
{
"id": 100,
"unique_id": 100,
"name": "Amazon Product 100",
"category": "jewelery",
"manufacturer": "Konopelski Group",
"primary_image": "https://s3.us-east-2.amazonaws.com/product-summary-component/jewelery100.jpg",
"review_one_star_count": 350,
"review_two_star_count": 313,
"review_three_star_count": 982,
"review_four_star_count": 938,
"review_five_star_count": 286,
"review_count": 2869,
"question_count": 214,
"price": 111,
"total_price": 121,
"stock": 710,
"is_prime": false,
"description": "\n Lorem ipsum dolor amet you probably haven't heard of them ennui raclette VHS irony tumeric pop-up lumbersexual palo santo truffaut yr scenester. Letterpress flannel kitsch lumbersexual, brooklyn chia keffiyeh subway tile everyday carry seitan fam schlitz glossier. Shoreditch franzen tumeric, deep v YOLO bespoke meh. Vaporware knausgaard subway tile pop-up green juice next level, food truck la croix artisan leggings portland occupy truffaut.\n "
}
],
"fields": [
{
"name": "id",
"tableID": 17506,
"columnID": 1,
"dataTypeID": 23,
"dataTypeSize": 4,
"dataTypeModifier": -1,
"format": "text"
},
{
"name": "unique_id",
"tableID": 17506,
"columnID": 2,
"dataTypeID": 23,
"dataTypeSize": 4,
"dataTypeModifier": -1,
"format": "text"
},
{
"name": "name",
"tableID": 17506,
"columnID": 3,
"dataTypeID": 1043,
"dataTypeSize": -1,
"dataTypeModifier": 104,
"format": "text"
},
{
"name": "category",
"tableID": 17506,
"columnID": 4,
"dataTypeID": 1043,
"dataTypeSize": -1,
"dataTypeModifier": -1,
"format": "text"
},
{
"name": "manufacturer",
"tableID": 17506,
"columnID": 5,
"dataTypeID": 1043,
"dataTypeSize": -1,
"dataTypeModifier": -1,
"format": "text"
},
{
"name": "primary_image",
"tableID": 17506,
"columnID": 6,
"dataTypeID": 1043,
"dataTypeSize": -1,
"dataTypeModifier": 104,
"format": "text"
},
{
"name": "review_one_star_count",
"tableID": 17506,
"columnID": 7,
"dataTypeID": 23,
"dataTypeSize": 4,
"dataTypeModifier": -1,
"format": "text"
},
{
"name": "review_two_star_count",
"tableID": 17506,
"columnID": 8,
"dataTypeID": 23,
"dataTypeSize": 4,
"dataTypeModifier": -1,
"format": "text"
},
{
"name": "review_three_star_count",
"tableID": 17506,
"columnID": 9,
"dataTypeID": 23,
"dataTypeSize": 4,
"dataTypeModifier": -1,
"format": "text"
},
{
"name": "review_four_star_count",
"tableID": 17506,
"columnID": 10,
"dataTypeID": 23,
"dataTypeSize": 4,
"dataTypeModifier": -1,
"format": "text"
},
{
"name": "review_five_star_count",
"tableID": 17506,
"columnID": 11,
"dataTypeID": 23,
"dataTypeSize": 4,
"dataTypeModifier": -1,
"format": "text"
},
{
"name": "review_count",
"tableID": 17506,
"columnID": 12,
"dataTypeID": 23,
"dataTypeSize": 4,
"dataTypeModifier": -1,
"format": "text"
},
{
"name": "question_count",
"tableID": 17506,
"columnID": 13,
"dataTypeID": 23,
"dataTypeSize": 4,
"dataTypeModifier": -1,
"format": "text"
},
{
"name": "price",
"tableID": 17506,
"columnID": 14,
"dataTypeID": 23,
"dataTypeSize": 4,
"dataTypeModifier": -1,
"format": "text"
},
{
"name": "total_price",
"tableID": 17506,
"columnID": 15,
"dataTypeID": 23,
"dataTypeSize": 4,
"dataTypeModifier": -1,
"format": "text"
},
{
"name": "stock",
"tableID": 17506,
"columnID": 16,
"dataTypeID": 23,
"dataTypeSize": 4,
"dataTypeModifier": -1,
"format": "text"
},
{
"name": "is_prime",
"tableID": 17506,
"columnID": 17,
"dataTypeID": 16,
"dataTypeSize": 1,
"dataTypeModifier": -1,
"format": "text"
},
{
"name": "description",
"tableID": 17506,
"columnID": 18,
"dataTypeID": 1043,
"dataTypeSize": -1,
"dataTypeModifier": 1004,
"format": "text"
}
],
"_parsers": [
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null,
null
],
"RowCtor": null,
"rowAsArray": false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment