├── src
├── App.css
├── Components
│ ├── Cart
│ │ ├── Cart.css
│ │ └── Cart.js
│ ├── Shop
│ │ ├── Shop.css
│ │ └── Shop.js
│ ├── Product
│ │ ├── Product.css
│ │ └── Product.js
│ └── Header
│ │ ├── Header.css
│ │ └── Header.js
├── images
│ ├── giphy.gif
│ ├── logo.png
│ └── favicon.ico
├── setupTests.js
├── App.test.js
├── App.js
├── index.css
├── reportWebVitals.js
├── index.js
├── utilities
│ └── fakedb.js
├── logo.svg
└── fakeData
│ └── products.JSON
├── public
├── robots.txt
├── favicon.ico
├── logo192.png
├── logo512.png
├── manifest.json
├── index.html
└── products.JSON
├── .gitignore
├── README.md
└── package.json
/src/App.css:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/src/Components/Cart/Cart.css:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/public/robots.txt:
--------------------------------------------------------------------------------
1 | # https://www.robotstxt.org/robotstxt.html
2 | User-agent: *
3 | Disallow:
4 |
--------------------------------------------------------------------------------
/public/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/arifulsajib/ecommerce-project-react/HEAD/public/favicon.ico
--------------------------------------------------------------------------------
/public/logo192.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/arifulsajib/ecommerce-project-react/HEAD/public/logo192.png
--------------------------------------------------------------------------------
/public/logo512.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/arifulsajib/ecommerce-project-react/HEAD/public/logo512.png
--------------------------------------------------------------------------------
/src/images/giphy.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/arifulsajib/ecommerce-project-react/HEAD/src/images/giphy.gif
--------------------------------------------------------------------------------
/src/images/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/arifulsajib/ecommerce-project-react/HEAD/src/images/logo.png
--------------------------------------------------------------------------------
/src/images/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/arifulsajib/ecommerce-project-react/HEAD/src/images/favicon.ico
--------------------------------------------------------------------------------
/src/Components/Shop/Shop.css:
--------------------------------------------------------------------------------
1 | .shop-container {
2 | display: grid;
3 | grid-template-columns: 3fr 1fr;
4 | }
5 |
6 | .product-container {
7 | border-right: 1px solid lightgray;
8 | margin-right: 8px;
9 | margin-left: 100px;
10 | }
--------------------------------------------------------------------------------
/src/setupTests.js:
--------------------------------------------------------------------------------
1 | // jest-dom adds custom jest matchers for asserting on DOM nodes.
2 | // allows you to do things like:
3 | // expect(element).toHaveTextContent(/react/i)
4 | // learn more: https://github.com/testing-library/jest-dom
5 | import '@testing-library/jest-dom';
6 |
--------------------------------------------------------------------------------
/src/App.test.js:
--------------------------------------------------------------------------------
1 | import { render, screen } from '@testing-library/react';
2 | import App from './App';
3 |
4 | test('renders learn react link', () => {
5 | render();
6 | const linkElement = screen.getByText(/learn react/i);
7 | expect(linkElement).toBeInTheDocument();
8 | });
9 |
--------------------------------------------------------------------------------
/src/App.js:
--------------------------------------------------------------------------------
1 | import './App.css';
2 | import Header from './Components/Header/Header';
3 | import Shop from './Components/Shop/Shop';
4 |
5 | function App() {
6 | return (
7 |
8 |
9 |
10 |
11 | );
12 | }
13 |
14 | export default App;
15 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | # See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2 |
3 | # dependencies
4 | /node_modules
5 | /.pnp
6 | .pnp.js
7 |
8 | # testing
9 | /coverage
10 |
11 | # production
12 | /build
13 |
14 | # misc
15 | .DS_Store
16 | .env.local
17 | .env.development.local
18 | .env.test.local
19 | .env.production.local
20 |
21 | npm-debug.log*
22 | yarn-debug.log*
23 | yarn-error.log*
24 |
--------------------------------------------------------------------------------
/src/index.css:
--------------------------------------------------------------------------------
1 | body {
2 | margin: 0;
3 | font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
4 | 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
5 | sans-serif;
6 | -webkit-font-smoothing: antialiased;
7 | -moz-osx-font-smoothing: grayscale;
8 | }
9 |
10 | code {
11 | font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
12 | monospace;
13 | }
14 |
--------------------------------------------------------------------------------
/src/reportWebVitals.js:
--------------------------------------------------------------------------------
1 | const reportWebVitals = onPerfEntry => {
2 | if (onPerfEntry && onPerfEntry instanceof Function) {
3 | import('web-vitals').then(({ getCLS, getFID, getFCP, getLCP, getTTFB }) => {
4 | getCLS(onPerfEntry);
5 | getFID(onPerfEntry);
6 | getFCP(onPerfEntry);
7 | getLCP(onPerfEntry);
8 | getTTFB(onPerfEntry);
9 | });
10 | }
11 | };
12 |
13 | export default reportWebVitals;
14 |
--------------------------------------------------------------------------------
/src/Components/Product/Product.css:
--------------------------------------------------------------------------------
1 | .product{
2 | display: flex;
3 | border-bottom: 1px solid lightgray;
4 | }
5 |
6 | .img-div {
7 | margin-right: 10px;
8 | }
9 |
10 | .product-name {
11 | color: blue;
12 | font-weight: 500;
13 | }
14 |
15 | .default-btn {
16 | background-color: goldenrod;
17 | width: 200px;
18 | height: 25px;
19 | border-color: #a88734;
20 | border-radius: 5px;
21 | margin-bottom: 10px;
22 | }
--------------------------------------------------------------------------------
/src/index.js:
--------------------------------------------------------------------------------
1 | import React from 'react';
2 | import ReactDOM from 'react-dom';
3 | import './index.css';
4 | import App from './App';
5 | import reportWebVitals from './reportWebVitals';
6 |
7 | ReactDOM.render(
8 |
9 |
10 | ,
11 | document.getElementById('root')
12 | );
13 |
14 | // If you want to start measuring performance in your app, pass a function
15 | // to log results (for example: reportWebVitals(console.log))
16 | // or send to an analytics endpoint. Learn more: https://bit.ly/CRA-vitals
17 | reportWebVitals();
18 |
--------------------------------------------------------------------------------
/src/Components/Header/Header.css:
--------------------------------------------------------------------------------
1 | .header {
2 | text-align: center;
3 | }
4 |
5 | .header img {
6 | height: 70px;
7 | margin-top: 5px;
8 | }
9 |
10 | .header nav {
11 | background-color: black;
12 | }
13 |
14 | .header nav ul {
15 | display: flex;
16 | list-style: none;
17 | }
18 |
19 | .header nav ul li {
20 | padding: 10px;
21 | }
22 |
23 | .header nav ul li:hover {
24 | background-color: lightgray;
25 | }
26 |
27 | .header nav ul li a {
28 | margin-right: 30px;
29 | color: white;
30 | text-decoration: none;
31 | font-size: 1.1rem;
32 |
33 | }
--------------------------------------------------------------------------------
/public/manifest.json:
--------------------------------------------------------------------------------
1 | {
2 | "short_name": "React App",
3 | "name": "Create React App Sample",
4 | "icons": [
5 | {
6 | "src": "favicon.ico",
7 | "sizes": "64x64 32x32 24x24 16x16",
8 | "type": "image/x-icon"
9 | },
10 | {
11 | "src": "logo192.png",
12 | "type": "image/png",
13 | "sizes": "192x192"
14 | },
15 | {
16 | "src": "logo512.png",
17 | "type": "image/png",
18 | "sizes": "512x512"
19 | }
20 | ],
21 | "start_url": ".",
22 | "display": "standalone",
23 | "theme_color": "#000000",
24 | "background_color": "#ffffff"
25 | }
26 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | ## Ecommerce like website using React js
2 |
3 | ### Features
4 |
5 |
6 | ### Links
7 |
8 | - Live Site: [Ecommerce-react](https://github.com/arifulsajib/ecommerce-project-react)
9 | - Code: [Github](https://github.com/arifulsajib/ecommerce-project-react)
10 |
11 | ### Built with
12 | - React js
13 | - Semantic HTML5 markup
14 | - CSS3
15 |
16 |
17 | ## Developer profile
18 |
19 | - LinkedIn - [Ariful Islam](https://www.linkedin.com/in/arifulsajib/)
20 | - Facebook - [Ariful Islam](https://www.facebook.com/arifulsajib347/)
21 | - Instagram - [arifulsajib347](https://www.instagram.com/arifulsajib347/)
22 |
--------------------------------------------------------------------------------
/src/Components/Header/Header.js:
--------------------------------------------------------------------------------
1 | import React from 'react';
2 | import "./Header.css";
3 | import logo from "../../images/logo.png"
4 |
5 | const Header = () => {
6 | return (
7 |
8 |

9 |
16 |
17 | );
18 | };
19 |
20 | export default Header;
--------------------------------------------------------------------------------
/src/Components/Product/Product.js:
--------------------------------------------------------------------------------
1 | import React from 'react';
2 | import"./Product.css";
3 |
4 | const Product = (props) => {
5 | const{name, img, price, seller,stock, shipping} = props.product;
6 | return (
7 |
8 |
9 |

10 |
11 |
12 |
{name}
13 |
by: {seller}
14 |
${price}
15 |
shipping: ${shipping}
16 |
Only {stock} left in stock-order soon
17 |
18 |
19 |
20 | );
21 | };
22 |
23 | export default Product;
--------------------------------------------------------------------------------
/src/Components/Cart/Cart.js:
--------------------------------------------------------------------------------
1 | import React from 'react';
2 | import "./Cart.css";
3 |
4 | const Cart = (props) => {
5 | const {cart} = props;
6 |
7 | const totalOrdered = cart.reduce((previous,current) => previous + current.quantity ,0);
8 | const itemsTotal = cart.reduce((previous, current) => previous + (current.price *current.quantity), 0);
9 | const shipping = cart.reduce((previous,current) => previous+current.shipping, 0);
10 | const tax = (itemsTotal + shipping) * 0.15;
11 | const orderTotal = itemsTotal + shipping+tax;
12 |
13 | return (
14 |
15 |
Order Summary
16 |
Items ordered: {totalOrdered}
17 |
Items Total: {itemsTotal.toFixed(2)}
18 |
shipping: {shipping.toFixed(2)}
19 |
Tax: ${tax.toFixed(2)}
20 |
Order Total: ${orderTotal.toFixed(2)}
21 |
22 | );
23 | };
24 |
25 | export default Cart;
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "empty-react-app",
3 | "version": "0.1.0",
4 | "private": true,
5 | "dependencies": {
6 | "@fortawesome/fontawesome-svg-core": "^1.2.36",
7 | "@fortawesome/free-solid-svg-icons": "^5.15.4",
8 | "@fortawesome/react-fontawesome": "^0.1.15",
9 | "@testing-library/jest-dom": "^5.14.1",
10 | "@testing-library/react": "^11.2.7",
11 | "@testing-library/user-event": "^12.8.3",
12 | "react": "^17.0.2",
13 | "react-dom": "^17.0.2",
14 | "react-scripts": "4.0.3",
15 | "web-vitals": "^1.1.2"
16 | },
17 | "scripts": {
18 | "start": "react-scripts start",
19 | "build": "react-scripts build",
20 | "test": "react-scripts test",
21 | "eject": "react-scripts eject"
22 | },
23 | "eslintConfig": {
24 | "extends": [
25 | "react-app",
26 | "react-app/jest"
27 | ]
28 | },
29 | "browserslist": {
30 | "production": [
31 | ">0.2%",
32 | "not dead",
33 | "not op_mini all"
34 | ],
35 | "development": [
36 | "last 1 chrome version",
37 | "last 1 firefox version",
38 | "last 1 safari version"
39 | ]
40 | }
41 | }
42 |
--------------------------------------------------------------------------------
/src/utilities/fakedb.js:
--------------------------------------------------------------------------------
1 | // use local storage as your db for now
2 | const addToDb = id => {
3 | const exists = getDb();
4 | let shopping_cart = {};
5 | if (!exists) {
6 | shopping_cart[id] = 1;
7 | }
8 | else {
9 | shopping_cart = JSON.parse(exists);
10 | if (shopping_cart[id]) {
11 | const newCount = shopping_cart[id] + 1;
12 | shopping_cart[id] = newCount;
13 | }
14 | else {
15 | shopping_cart[id] = 1;
16 | }
17 | }
18 | updateDb(shopping_cart);
19 | }
20 |
21 | const getDb = () => localStorage.getItem('shopping_cart');
22 | const updateDb = cart => {
23 | localStorage.setItem('shopping_cart', JSON.stringify(cart));
24 | }
25 |
26 | const removeFromDb = id => {
27 | const exists = getDb();
28 | if (!exists) {
29 |
30 | }
31 | else {
32 | const shopping_cart = JSON.parse(exists);
33 | delete shopping_cart[id];
34 | updateDb(shopping_cart);
35 | }
36 | }
37 |
38 | const getStoredCart = () => {
39 | const exists = getDb();
40 | return exists ? JSON.parse(exists) : {};
41 | }
42 |
43 | const clearTheCart = () => {
44 | localStorage.removeItem('shopping_cart');
45 | }
46 |
47 | export { addToDb, removeFromDb as deleteFromDb, clearTheCart, getStoredCart }
48 |
--------------------------------------------------------------------------------
/public/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
12 |
13 |
17 |
18 |
27 | React App
28 |
29 |
30 |
31 |
32 |
42 |
43 |
44 |
--------------------------------------------------------------------------------
/src/Components/Shop/Shop.js:
--------------------------------------------------------------------------------
1 | import React, { useEffect, useState } from 'react';
2 | import { addToDb, getStoredCart } from '../../utilities/fakedb';
3 | import Cart from '../Cart/Cart';
4 | import Product from '../Product/Product';
5 | import "./Shop.css";
6 |
7 | const Shop = () => {
8 | const [products, setProducts] = useState([]);
9 | const [cart, setCart] = useState([]);
10 |
11 | useEffect(()=>{
12 | fetch("./products.json")
13 | .then(res => res.json())
14 | .then(data =>setProducts(data));
15 | },[]);
16 |
17 | useEffect(() => {
18 | const savedCart = getStoredCart();
19 | const savedProducts = [];
20 | if(products.length){
21 | for (const key in savedCart) {
22 | const quantity = savedCart[key]
23 | const savedProduct = products.find(product => product.key === key);
24 | if(savedProduct){
25 | savedProduct.quantity = quantity;
26 | savedProducts.push(savedProduct);
27 | }
28 | setCart(savedProducts);
29 | }
30 | }
31 | },[products]);
32 |
33 | const handleAddToCart = (product) =>{
34 | const checkAlreadyAdded = cart.find(addedProduct => product.key === addedProduct.key);
35 | if(!checkAlreadyAdded){
36 | product.quantity = 1;
37 | const newCart = [...cart, product];
38 | setCart(newCart);
39 | addToDb(product.key);
40 | } else {
41 | checkAlreadyAdded["quantity"] += 1;
42 | const updatedCart = [...cart];
43 | setCart(updatedCart);
44 | addToDb(product.key);
45 | }
46 | }
47 |
48 | return (
49 |
50 |
51 | {
52 | products.map(product =>
)
53 | }
54 |
55 |
56 |
57 |
58 |
59 | );
60 | };
61 |
62 | export default Shop;
--------------------------------------------------------------------------------
/src/logo.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/public/products.JSON:
--------------------------------------------------------------------------------
1 | [
2 | {
3 | "key": "B002RL8IYK",
4 | "category": "laptop",
5 | "name": "3M Gold Privacy Filter for 17\" Widescreen Laptop (16:10) (GF170W1B)",
6 | "seller": "3M",
7 | "wholePrice": "68",
8 | "priceFraction": "36",
9 | "stock": 36,
10 | "star": 3,
11 | "starCount": 3245,
12 | "img": "https://images-na.ssl-images-amazon.com/images/I/415oziPFA0L._AC_US218_.jpg",
13 | "url": "https://www.amazon.com/gp/slredirect/picassoRedirect.html/ref=pa_sp_atf_electronics_sr_pg1_1?ie=UTF8&adId=A03956601N6RBLKGAP4W1&url=https%3A%2F%2Fwww.amazon.com%2F3M-Privacy-Filter-Widescreen-Laptop%2Fdp%2FB002RL8IYK%2Fref%3Dsr_1_1%3Fs%3Delectronics%26ie%3DUTF8%26qid%3D1499124890%26sr%3D1-1-spons%26keywords%3Dlaptop%26psc%3D1&qualifier=1499124889&id=6267744216991374&widgetName=sp_atf",
14 | "features": [
15 | {
16 | "description": "Display Size",
17 | "value": "17 inches"
18 | },
19 | {
20 | "description": "Hardware Platform",
21 | "value": "PC"
22 | }
23 | ],
24 | "price": 68.36,
25 | "shipping": 7.99
26 | },
27 | {
28 | "key": "B01LZ2WZGH",
29 | "category": "laptop",
30 | "name": "Manfrotto MB LF-WN-BP camera & laptop backpack for DSLR Lifestyle Windsor, grey",
31 | "seller": "Manfrotto",
32 | "wholePrice": "169",
33 | "priceFraction": "88",
34 | "stock": 55,
35 | "star": 2,
36 | "starCount": 2899,
37 | "img": "https://images-na.ssl-images-amazon.com/images/I/51mEVhwXGKL._AC_US218_.jpg",
38 | "url": "https://www.amazon.com/gp/slredirect/picassoRedirect.html/ref=pa_sp_atf_electronics_sr_pg1_2?ie=UTF8&adId=A04941221ULRUNSJPY1RW&url=https%3A%2F%2Fwww.amazon.com%2FManfrotto-MB-LF-WN-BP-backpack-Lifestyle%2Fdp%2FB01LZ2WZGH%2Fref%3Dsr_1_2%3Fs%3Delectronics%26ie%3DUTF8%26qid%3D1499124890%26sr%3D1-2-spons%26keywords%3Dlaptop%26psc%3D1&qualifier=1499124889&id=6267744216991374&widgetName=sp_atf",
39 | "features": [],
40 | "price": 169.88,
41 | "shipping": 3.99
42 | },
43 | {
44 | "key": "B01K1IO3QW",
45 | "category": "laptop",
46 | "name": "Acer Aspire E 15 E5-575-33BM 15.6-Inch Full HD Notebook (Intel Core i3-7100U Processor 7th Generation , 4GB DDR4, 1TB 5400RPM Hard Drive, Intel HD Graphics 620, Windows 10 Home), Obsidian Black",
47 | "seller": "Acer",
48 | "wholePrice": "349",
49 | "priceFraction": "99",
50 | "stock": 3,
51 | "star": 3,
52 | "starCount": 3525,
53 | "img": "https://images-na.ssl-images-amazon.com/images/I/41HfDkXXyeL._AC_US218_.jpg",
54 | "url": "https://www.amazon.com/Acer-E5-575-33BM-15-6-Inch-Processor-Generation/dp/B01K1IO3QW/ref=sr_1_3?s=electronics&ie=UTF8&qid=1499124890&sr=1-3&keywords=laptop",
55 | "features": [
56 | {
57 | "description": "Display Size",
58 | "value": "15.6 inches"
59 | },
60 | {
61 | "description": "Computer Memory Size",
62 | "value": "4 GB"
63 | },
64 | {
65 | "description": "Operating System",
66 | "value": "Windows 10"
67 | },
68 | {
69 | "description": "Hard Disk Size",
70 | "value": "1000 GB"
71 | },
72 | {
73 | "description": "Cpu Model Family",
74 | "value": "core i3"
75 | }
76 | ],
77 | "price": 349.99,
78 | "shipping": 3.99
79 | },
80 | {
81 | "key": "B01LD4MGY4",
82 | "category": "laptop",
83 | "name": "Acer Aspire E 15 E5-575G-57D4 15.6-Inches Full HD Notebook (i5-7200U, 8GB DDR4 SDRAM, 256GB SSD, Windows 10 Home), Obsidian Black",
84 | "seller": "Acer",
85 | "wholePrice": "579",
86 | "priceFraction": "99",
87 | "stock": 49,
88 | "star": 4,
89 | "starCount": 4232,
90 | "img": "https://images-na.ssl-images-amazon.com/images/I/41HfDkXXyeL._AC_US218_.jpg",
91 | "url": "https://www.amazon.com/Acer-E5-575G-57D4-15-6-Inches-Notebook-i5-7200U/dp/B01LD4MGY4/ref=sr_1_4?s=electronics&ie=UTF8&qid=1499124890&sr=1-4&keywords=laptop",
92 | "features": [
93 | {
94 | "description": "Display Size",
95 | "value": "15.6 inches"
96 | },
97 | {
98 | "description": "Computer Memory Size",
99 | "value": "8 GB"
100 | },
101 | {
102 | "description": "Operating System",
103 | "value": "Windows 10"
104 | },
105 | {
106 | "description": "Cpu Model Family",
107 | "value": "core i5"
108 | },
109 | {
110 | "description": "Display Technology",
111 | "value": "LED-Lit"
112 | }
113 | ],
114 | "price": 579.99,
115 | "shipping": 7.99
116 | },
117 | {
118 | "key": "B01M18UZF5",
119 | "category": "laptop",
120 | "name": "ASUS ZenBook UX330UA-AH54 13.3-inch Ultra-Slim Laptop (Core i5 Processor, 8GB DDR3, 256GB SSD, Windows 10) With Harman Kardon Audio, Backlit keyboard, Fingerprint Reader",
121 | "seller": "Asus",
122 | "wholePrice": "699",
123 | "priceFraction": "00",
124 | "stock": 23,
125 | "star": 4,
126 | "starCount": 2457,
127 | "img": "https://images-na.ssl-images-amazon.com/images/I/417yCr3mvYL._AC_US218_.jpg",
128 | "url": "https://www.amazon.com/UX330UA-AH54-13-3-inch-Ultra-Slim-Processor-Fingerprint/dp/B01M18UZF5/ref=sr_1_5?s=electronics&ie=UTF8&qid=1499124890&sr=1-5&keywords=laptop",
129 | "features": [
130 | {
131 | "description": "Display Size",
132 | "value": "13.3 inches"
133 | },
134 | {
135 | "description": "Computer Memory Size",
136 | "value": "8 GB"
137 | },
138 | {
139 | "description": "Operating System",
140 | "value": "Windows 10"
141 | },
142 | {
143 | "description": "Hard Disk Size",
144 | "value": "256 GB"
145 | },
146 | {
147 | "description": "Cpu Model Family",
148 | "value": "core i5 7200u"
149 | }
150 | ],
151 | "price": 699,
152 | "shipping": 3.99
153 | },
154 | {
155 | "key": "B01DBGVB7K",
156 | "category": "laptop",
157 | "name": "ASUS Chromebook C202SA-YS02 11.6\" Ruggedized and Water Resistant Design with 180 Degree (Intel Celeron 4 GB, 16GB eMMC, Dark Blue)",
158 | "seller": "Asus",
159 | "wholePrice": 220,
160 | "priceFraction": 49,
161 | "stock": 54,
162 | "star": 4,
163 | "starCount": 2777,
164 | "img": "https://images-na.ssl-images-amazon.com/images/I/31inMpRxCFL._AC_US218_.jpg",
165 | "url": "https://www.amazon.com/Chromebook-C202SA-YS02-Ruggedized-Resistant-Celeron/dp/B01DBGVB7K/ref=sr_1_6?s=electronics&ie=UTF8&qid=1499124890&sr=1-6&keywords=laptop",
166 | "features": [
167 | {
168 | "description": "Display Size",
169 | "value": "11.6 inches"
170 | },
171 | {
172 | "description": "Computer Memory Size",
173 | "value": "4 GB"
174 | },
175 | {
176 | "description": "Operating System",
177 | "value": "Chrome"
178 | },
179 | {
180 | "description": "Hard Disk Size",
181 | "value": "16 GB"
182 | },
183 | {
184 | "description": "Cpu Model Family",
185 | "value": "celeron"
186 | }
187 | ],
188 | "price": 220.49,
189 | "shipping": 3.99
190 | },
191 | {
192 | "key": "B015WXL0C6",
193 | "category": "laptop",
194 | "name": "Apple MacBook Air 13.3-Inch Laptop (Intel Core i5 1.6GHz, 128GB Flash, 8GB RAM, OS X El Capitan)",
195 | "seller": "Apple",
196 | "wholePrice": "848",
197 | "priceFraction": "99",
198 | "stock": 22,
199 | "star": 4,
200 | "starCount": 2830,
201 | "img": "https://images-na.ssl-images-amazon.com/images/I/51GRACqhHbL._AC_US218_.jpg",
202 | "url": "https://www.amazon.com/Apple-MacBook-13-3-Inch-Laptop-Capitan/dp/B015WXL0C6/ref=sr_1_7?s=electronics&ie=UTF8&qid=1499124890&sr=1-7&keywords=laptop",
203 | "features": [
204 | {
205 | "description": "Display Size",
206 | "value": "13.3 inches"
207 | },
208 | {
209 | "description": "Computer Memory Size",
210 | "value": "8.0 GB"
211 | },
212 | {
213 | "description": "Operating System",
214 | "value": "Mac OS X"
215 | },
216 | {
217 | "description": "Hard Disk Size",
218 | "value": "128 GB"
219 | },
220 | {
221 | "description": "Cpu Model Family",
222 | "value": "core i5"
223 | }
224 | ],
225 | "price": 848.99,
226 | "shipping": 7.99
227 | },
228 | {
229 | "key": "B06Y4GZS9C",
230 | "category": "laptop",
231 | "name": "Acer Predator Helios 300 Gaming Laptop, Intel Core i7, GeForce GTX 1 060, 15.6\" Full HD, 16GB DDR4, 256GB SSD, G3-571-77QK",
232 | "seller": "Acer",
233 | "wholePrice": "1,049",
234 | "priceFraction": "99",
235 | "stock": 22,
236 | "star": 3,
237 | "starCount": 257,
238 | "img": "https://images-na.ssl-images-amazon.com/images/I/41v2oytxs9L._AC_US218_.jpg",
239 | "url": "https://www.amazon.com/Acer-Predator-Helios-GeForce-G3-571-77QK/dp/B06Y4GZS9C/ref=sr_1_8?s=electronics&ie=UTF8&qid=1499124890&sr=1-8&keywords=laptop",
240 | "features": [
241 | {
242 | "description": "Display Size",
243 | "value": "15.6 inches"
244 | },
245 | {
246 | "description": "Computer Memory Size",
247 | "value": "16 GB"
248 | },
249 | {
250 | "description": "Operating System",
251 | "value": "Windows 10 Home"
252 | },
253 | {
254 | "description": "Cpu Model Family",
255 | "value": "core i7"
256 | },
257 | {
258 | "description": "Cpu Model Manufacturer",
259 | "value": "Intel"
260 | }
261 | ],
262 | "price": 1,
263 | "shipping": 7.99
264 | },
265 | {
266 | "key": "B06XJJG4PD",
267 | "category": "laptop",
268 | "name": "ASUS P-Series P2540UA-AB51 business standard Laptop, 7th Gen Intel Core i5, 2.5GHz (3M Cache, up to 3.1GHz), FHD Display, 8GB RAM, 1TB HDD, Windows 10 Home, Fingerprint, TPM, 9hrs battery life",
269 | "seller": "Asus",
270 | "wholePrice": "499",
271 | "priceFraction": "00",
272 | "stock": 35,
273 | "star": 3,
274 | "starCount": 599,
275 | "img": "https://images-na.ssl-images-amazon.com/images/I/41PUHRFGpvL._AC_US218_.jpg",
276 | "url": "https://www.amazon.com/P2540UA-AB51-business-standard-Display-Fingerprint/dp/B06XJJG4PD/ref=sr_1_9?s=electronics&ie=UTF8&qid=1499124890&sr=1-9&keywords=laptop",
277 | "features": [
278 | {
279 | "description": "Display Size",
280 | "value": "15.6 inches"
281 | },
282 | {
283 | "description": "Computer Memory Size",
284 | "value": "8 GB"
285 | },
286 | {
287 | "description": "Operating System",
288 | "value": "Windows 10"
289 | },
290 | {
291 | "description": "Hard Disk Size",
292 | "value": "1000 GB"
293 | },
294 | {
295 | "description": "Cpu Model Family",
296 | "value": "core i5 7200u"
297 | }
298 | ],
299 | "price": 499,
300 | "shipping": 7.99
301 | },
302 | {
303 | "key": "B01NBE6Y5D",
304 | "category": "laptop",
305 | "name": "HP 15.6\" HD WLED Backlit Display Laptop, AMD A6-7310 Quad-Core APU 2GHz, 4GB RAM, 500GB HDD WiFi, DVD+/-RW, Webcam, Windows 10, Black",
306 | "seller": "HP",
307 | "wholePrice": "247",
308 | "priceFraction": "98",
309 | "stock": 74,
310 | "star": 3,
311 | "starCount": 4293,
312 | "img": "https://images-na.ssl-images-amazon.com/images/I/51-2Z4ZWimL._AC_US218_.jpg",
313 | "url": "https://www.amazon.com/HP-Backlit-Display-A6-7310-Quad-Core/dp/B01NBE6Y5D/ref=sr_1_10?s=electronics&ie=UTF8&qid=1499124890&sr=1-10&keywords=laptop",
314 | "features": [
315 | {
316 | "description": "Display Size",
317 | "value": "15.6 inches"
318 | },
319 | {
320 | "description": "Computer Memory Size",
321 | "value": "4.0 GB"
322 | },
323 | {
324 | "description": "Operating System",
325 | "value": "Windows 10"
326 | },
327 | {
328 | "description": "Hard Disk Size",
329 | "value": "500.0 GB"
330 | },
331 | {
332 | "description": "Cpu Model Family",
333 | "value": "amd a series"
334 | }
335 | ],
336 | "price": 247.98,
337 | "shipping": 7.99
338 | },
339 | {
340 | "key": "B01J42JPJG",
341 | "category": "laptop",
342 | "name": "Acer Chromebook R 11 Convertible, 11.6-Inch HD Touch, Intel Celeron N3150, 4GB DDR3L, 32GB, Chrome, CB5-132T-C1LK",
343 | "seller": "Acer",
344 | "wholePrice": "279",
345 | "priceFraction": "99",
346 | "stock": 19,
347 | "star": 4,
348 | "starCount": 4646,
349 | "img": "https://images-na.ssl-images-amazon.com/images/I/51xMqkFZ+RL._AC_US218_.jpg",
350 | "url": "https://www.amazon.com/Acer-Chromebook-Convertible-11-6-Inch-CB5-132T-C1LK/dp/B01J42JPJG/ref=sr_1_11?s=electronics&ie=UTF8&qid=1499124890&sr=1-11&keywords=laptop",
351 | "features": [
352 | {
353 | "description": "Display Size",
354 | "value": "11.6 inches"
355 | },
356 | {
357 | "description": "Computer Memory Size",
358 | "value": "4 GB"
359 | },
360 | {
361 | "description": "Operating System",
362 | "value": "Chrome"
363 | },
364 | {
365 | "description": "Hard Disk Size",
366 | "value": "32 GB"
367 | },
368 | {
369 | "description": "Cpu Model Family",
370 | "value": "celeron"
371 | }
372 | ],
373 | "price": 279.99,
374 | "shipping": 3.99
375 | },
376 | {
377 | "key": "B01F4ZG68A",
378 | "category": "laptop",
379 | "name": "HP 14-inch Laptop, AMD E2-7110, 4GB RAM, 32GB eMMC, Windows 10 (14-an013nr, Silver)",
380 | "seller": "HP",
381 | "wholePrice": "212",
382 | "priceFraction": "33",
383 | "stock": 33,
384 | "star": 3,
385 | "starCount": 2066,
386 | "img": "https://images-na.ssl-images-amazon.com/images/I/414egKO4O3L._AC_US218_.jpg",
387 | "url": "https://www.amazon.com/HP-14-inch-E2-7110-Windows-14-an013nr/dp/B01F4ZG68A/ref=sr_1_13?s=electronics&ie=UTF8&qid=1499124890&sr=1-13&keywords=laptop",
388 | "features": [
389 | {
390 | "description": "Display Size",
391 | "value": "14 inches"
392 | },
393 | {
394 | "description": "Computer Memory Size",
395 | "value": "4 GB"
396 | },
397 | {
398 | "description": "Operating System",
399 | "value": "Windows 10 Home"
400 | },
401 | {
402 | "description": "Hard Disk Size",
403 | "value": "32 GB"
404 | },
405 | {
406 | "description": "Cpu Model Family",
407 | "value": "e2 7110"
408 | }
409 | ],
410 | "price": 212.33,
411 | "shipping": 7.99
412 | },
413 | {
414 | "key": "B01D27ERMO",
415 | "category": "laptop",
416 | "name": "Dell Inspiron Flagship 15.6-Inch FHD Touchscreen Backlit Keyboard Laptop PC (Intel Core i5-6200U, 8GB RAM, 1TB HDD, RealSense 3D Camera, DVD +/- RW, Bluetooth, Windows 10), Silver",
417 | "seller": "Dell",
418 | "wholePrice": "498",
419 | "priceFraction": "94",
420 | "stock": 14,
421 | "star": 3,
422 | "starCount": 3141,
423 | "img": "https://images-na.ssl-images-amazon.com/images/I/51xk4birT2L._AC_US218_.jpg",
424 | "url": "https://www.amazon.com/Dell-15-6-Inch-Touchscreen-RealSense-Bluetooth/dp/B01D27ERMO/ref=sr_1_14?s=electronics&ie=UTF8&qid=1499124890&sr=1-14&keywords=laptop",
425 | "features": [
426 | {
427 | "description": "Display Size",
428 | "value": "15.6 inches"
429 | },
430 | {
431 | "description": "Computer Memory Size",
432 | "value": "8.0 GB"
433 | },
434 | {
435 | "description": "Operating System",
436 | "value": "Windows 10"
437 | },
438 | {
439 | "description": "Hard Disk Size",
440 | "value": "1.0 TB"
441 | },
442 | {
443 | "description": "Cpu Model Family",
444 | "value": "core i5"
445 | }
446 | ],
447 | "price": 498.94,
448 | "shipping": 3.99
449 | },
450 | {
451 | "key": "B06X6J2RLY",
452 | "category": "laptop",
453 | "name": "HP 15.6-Inch HD Touchscreen Laptop (Intel Quad Core Pentium N3540 2.16 GHz, 4GB DDR3L-1600 Memory, 500 GB HDD, DVD Burner, HDMI, HD Webcam, Win 10)",
454 | "seller": "HP",
455 | "wholePrice": "287",
456 | "priceFraction": "94",
457 | "stock": 85,
458 | "star": 4,
459 | "starCount": 149,
460 | "img": "https://images-na.ssl-images-amazon.com/images/I/416UTZJ0FbL._AC_US218_.jpg",
461 | "url": "https://www.amazon.com/HP-15-6-Inch-Touchscreen-Pentium-DDR3L-1600/dp/B06X6J2RLY/ref=sr_1_15?s=electronics&ie=UTF8&qid=1499124890&sr=1-15&keywords=laptop",
462 | "features": [
463 | {
464 | "description": "Display Size",
465 | "value": "15.6 inches"
466 | },
467 | {
468 | "description": "Computer Memory Size",
469 | "value": "4.0 GB"
470 | },
471 | {
472 | "description": "Operating System",
473 | "value": "Windows 10"
474 | },
475 | {
476 | "description": "Hard Disk Size",
477 | "value": "500.0 GB"
478 | },
479 | {
480 | "description": "Cpu Model Family",
481 | "value": "pentium"
482 | }
483 | ],
484 | "price": 287.94,
485 | "shipping": 7.99
486 | },
487 | {
488 | "key": "B01N5G5PG2",
489 | "category": "laptop",
490 | "name": "ASUS Chromebook Flip C302CA-DHM4 12.5-Inch Touchscreen Intel Core m3 with 64GB storage and 4GB RAM",
491 | "seller": "Asus",
492 | "wholePrice": "499",
493 | "priceFraction": "00",
494 | "stock": 52,
495 | "star": 4,
496 | "starCount": 1146,
497 | "img": "https://images-na.ssl-images-amazon.com/images/I/41LBkDN-S3L._AC_US218_.jpg",
498 | "url": "https://www.amazon.com/Chromebook-C302CA-DHM4-12-5-Inch-Touchscreen-storage/dp/B01N5G5PG2/ref=sr_1_16?s=electronics&ie=UTF8&qid=1499124890&sr=1-16&keywords=laptop",
499 | "features": [
500 | {
501 | "description": "Display Size",
502 | "value": "12.5 inches"
503 | },
504 | {
505 | "description": "Computer Memory Size",
506 | "value": "4 GB"
507 | },
508 | {
509 | "description": "Operating System",
510 | "value": "Chrome"
511 | },
512 | {
513 | "description": "Hard Disk Size",
514 | "value": "64 GB"
515 | },
516 | {
517 | "description": "Cpu Model Family",
518 | "value": "core m"
519 | }
520 | ],
521 | "price": 499,
522 | "shipping": 0
523 | },
524 | {
525 | "key": "B01LZ6XKS6",
526 | "category": "laptop",
527 | "name": "Samsung Chromebook Plus Convertible Touch Laptop (XE513C24-K01US)",
528 | "seller": "Samsung",
529 | "wholePrice": "408",
530 | "priceFraction": "45",
531 | "stock": 96,
532 | "star": 4,
533 | "starCount": 3742,
534 | "img": "https://images-na.ssl-images-amazon.com/images/I/41Ux4186xoL._AC_US218_.jpg",
535 | "url": "https://www.amazon.com/Samsung-Chromebook-Convertible-Laptop-XE513C24-K01US/dp/B01LZ6XKS6/ref=sr_1_17?s=electronics&ie=UTF8&qid=1499124890&sr=1-17&keywords=laptop",
536 | "features": [
537 | {
538 | "description": "Display Size",
539 | "value": "12.3 inches"
540 | },
541 | {
542 | "description": "Computer Memory Size",
543 | "value": "4 GB"
544 | },
545 | {
546 | "description": "Operating System",
547 | "value": "Chrome"
548 | },
549 | {
550 | "description": "Hard Disk Size",
551 | "value": "32 GB"
552 | },
553 | {
554 | "description": "Connectivity Technology",
555 | "value": "wireless"
556 | }
557 | ],
558 | "price": 408.45,
559 | "shipping": 3.99
560 | },
561 | {
562 | "key": "B06XFGF7SN",
563 | "category": "laptop",
564 | "name": "Dell Inspiron 15.6\" Gaming Laptop (7th Gen Intel Core i7, 8 GB RAM, 1000 GB HDD + 128GB SSD), NVIDIA GTX 1050) (i5577-7359BLK-PUS)",
565 | "seller": "Dell",
566 | "wholePrice": "899",
567 | "priceFraction": "99",
568 | "stock": 57,
569 | "star": 3,
570 | "starCount": 3972,
571 | "img": "https://images-na.ssl-images-amazon.com/images/I/41zfabBnrLL._AC_US218_.jpg",
572 | "url": "https://www.amazon.com/Dell-Inspiron-Gaming-Laptop-i5577-7359BLK-PUS/dp/B06XFGF7SN/ref=sr_1_18?s=electronics&ie=UTF8&qid=1499124890&sr=1-18&keywords=laptop",
573 | "features": [
574 | {
575 | "description": "Display Size",
576 | "value": "15.6 inches"
577 | },
578 | {
579 | "description": "Computer Memory Size",
580 | "value": "8 GB"
581 | },
582 | {
583 | "description": "Operating System",
584 | "value": "Windows 10 Home 64-bit English"
585 | },
586 | {
587 | "description": "Hard Disk Size",
588 | "value": "1000 GB"
589 | },
590 | {
591 | "description": "Cpu Model Family",
592 | "value": "core i5 6300hq"
593 | }
594 | ],
595 | "price": 899.99,
596 | "shipping": 3.99
597 | },
598 | {
599 | "key": "B01LT692RK",
600 | "category": "laptop",
601 | "name": "ASUS E200HA Portable Lightweight 11.6-inch Intel Quad-Core Laptop, 4GB RAM, 32GB Storage, Windows 10 with 1 Year Microsoft Office 365 Subscription",
602 | "seller": "Asus",
603 | "wholePrice": "199",
604 | "priceFraction": "00",
605 | "stock": 41,
606 | "star": 3,
607 | "starCount": 4074,
608 | "img": "https://images-na.ssl-images-amazon.com/images/I/51zIMkOI70L._AC_US218_.jpg",
609 | "url": "https://www.amazon.com/Lightweight-11-6-inch-Quad-Core-Microsoft-Subscription/dp/B01LT692RK/ref=sr_1_19?s=electronics&ie=UTF8&qid=1499124890&sr=1-19&keywords=laptop",
610 | "features": [
611 | {
612 | "description": "Display Size",
613 | "value": "11.6 inches"
614 | },
615 | {
616 | "description": "Computer Memory Size",
617 | "value": "4 GB"
618 | },
619 | {
620 | "description": "Operating System",
621 | "value": "Windows 10"
622 | },
623 | {
624 | "description": "Hard Disk Size",
625 | "value": "32 GB"
626 | },
627 | {
628 | "description": "Cpu Model Family",
629 | "value": "intel atom"
630 | }
631 | ],
632 | "price": 199,
633 | "shipping": 3.99
634 | },
635 | {
636 | "key": "B071LB1GG4",
637 | "category": "laptop",
638 | "name": "Samsung XE510C24-K01US Chromebook Pro",
639 | "seller": "Samsung",
640 | "wholePrice": "549",
641 | "priceFraction": "99",
642 | "stock": 91,
643 | "star": 4,
644 | "starCount": 1157,
645 | "img": "https://images-na.ssl-images-amazon.com/images/I/41QCsi3gCrL._AC_US218_.jpg",
646 | "url": "https://www.amazon.com/Samsung-XE510C24-K01US-Chromebook-Pro/dp/B071LB1GG4/ref=sr_1_20?s=electronics&ie=UTF8&qid=1499124890&sr=1-20&keywords=laptop",
647 | "features": [
648 | {
649 | "description": "Display Size",
650 | "value": "12.3 inches"
651 | },
652 | {
653 | "description": "Computer Memory Size",
654 | "value": "4 GB"
655 | },
656 | {
657 | "description": "Operating System",
658 | "value": "Chrome"
659 | },
660 | {
661 | "description": "Connectivity Technology",
662 | "value": "wireless"
663 | },
664 | {
665 | "description": "Hardware Platform",
666 | "value": "Chrome"
667 | }
668 | ],
669 | "price": 549.99,
670 | "shipping": 0
671 | },
672 | {
673 | "key": "B01CVOLVPA",
674 | "category": "laptop",
675 | "name": "Acer Chromebook 14, Aluminum, 14-inch Full HD, Intel Celeron Quad-Core N3160, 4GB LPDDR3, 32GB, Chrome, CB3-431-C5FM",
676 | "seller": "Acer",
677 | "wholePrice": "294",
678 | "priceFraction": "98",
679 | "stock": 57,
680 | "star": 4,
681 | "starCount": 678,
682 | "img": "https://images-na.ssl-images-amazon.com/images/I/518PvURfFsL._AC_US218_.jpg",
683 | "url": "https://www.amazon.com/Acer-Chromebook-Aluminum-Quad-Core-CB3-431-C5FM/dp/B01CVOLVPA/ref=sr_1_21?s=electronics&ie=UTF8&qid=1499124890&sr=1-21&keywords=laptop",
684 | "features": [
685 | {
686 | "description": "Display Size",
687 | "value": "14 inches"
688 | },
689 | {
690 | "description": "Computer Memory Size",
691 | "value": "4 GB"
692 | },
693 | {
694 | "description": "Operating System",
695 | "value": "Chrome"
696 | },
697 | {
698 | "description": "Hard Disk Size",
699 | "value": "32 GB"
700 | },
701 | {
702 | "description": "Cpu Model Family",
703 | "value": "celeron"
704 | }
705 | ],
706 | "price": 294.98,
707 | "shipping": 7.99
708 | },
709 | {
710 | "key": "B01EIUOSRS",
711 | "category": "laptop",
712 | "name": "Apple MMGF2LL/A MacBook Air 13.3-Inch Laptop (8GB RAM 128 GB SSD) MMGF2",
713 | "seller": "Apple",
714 | "wholePrice": "799",
715 | "priceFraction": "99",
716 | "stock": 51,
717 | "star": 4,
718 | "starCount": 3295,
719 | "img": "https://images-na.ssl-images-amazon.com/images/I/41AerRC5u6L._AC_US218_.jpg",
720 | "url": "https://www.amazon.com/Apple-MMGF2LL-MacBook-13-3-Inch-Laptop/dp/B01EIUOSRS/ref=sr_1_22?s=electronics&ie=UTF8&qid=1499124890&sr=1-22&keywords=laptop",
721 | "features": [
722 | {
723 | "description": "Display Size",
724 | "value": "13.3 inches"
725 | },
726 | {
727 | "description": "Computer Memory Size",
728 | "value": "8 GB"
729 | },
730 | {
731 | "description": "Operating System",
732 | "value": "Mac OS X"
733 | },
734 | {
735 | "description": "Hard Disk Size",
736 | "value": "128 GB"
737 | },
738 | {
739 | "description": "Cpu Model Family",
740 | "value": "core i5"
741 | }
742 | ],
743 | "price": 799.99,
744 | "shipping": 7.99
745 | },
746 | {
747 | "key": "B01JLCKP34",
748 | "category": "laptop",
749 | "name": "HP Stream Laptop PC 14-ax010nr (Intel Celeron N3060, 4 GB RAM, 32 GB eMMC) with Office 365 Personal for one year",
750 | "seller": "HP",
751 | "wholePrice": "219",
752 | "priceFraction": "99",
753 | "stock": 62,
754 | "star": 3,
755 | "starCount": 2286,
756 | "img": "https://images-na.ssl-images-amazon.com/images/I/51h+5rcpStL._AC_US218_.jpg",
757 | "url": "https://www.amazon.com/HP-Stream-14-ax010nr-Celeron-Personal/dp/B01JLCKP34/ref=sr_1_23?s=electronics&ie=UTF8&qid=1499124890&sr=1-23&keywords=laptop",
758 | "features": [
759 | {
760 | "description": "Display Size",
761 | "value": "14 inches"
762 | },
763 | {
764 | "description": "Computer Memory Size",
765 | "value": "4 GB"
766 | },
767 | {
768 | "description": "Operating System",
769 | "value": "Windows 10"
770 | },
771 | {
772 | "description": "Hard Disk Size",
773 | "value": "32 GB"
774 | },
775 | {
776 | "description": "Cpu Model Family",
777 | "value": "celeron"
778 | }
779 | ],
780 | "price": 219.99,
781 | "shipping": 7.99
782 | },
783 | {
784 | "key": "B071SF41Y9",
785 | "category": "laptop",
786 | "name": "Microsoft Surface Pro (Intel Core i5, 8GB RAM, 256GB)",
787 | "seller": "Microsoft",
788 | "wholePrice": "1,294",
789 | "priceFraction": "99",
790 | "stock": 99,
791 | "star": 3,
792 | "starCount": 461,
793 | "img": "https://images-na.ssl-images-amazon.com/images/I/418g6Q3eTHL._AC_US218_.jpg",
794 | "url": "https://www.amazon.com/Microsoft-Surface-Intel-Core-256GB/dp/B071SF41Y9/ref=sr_1_25?s=electronics&ie=UTF8&qid=1499124890&sr=1-25&keywords=laptop",
795 | "features": [
796 | {
797 | "description": "Display Size",
798 | "value": "12.3 inches"
799 | },
800 | {
801 | "description": "Computer Memory Size",
802 | "value": "8 GB"
803 | },
804 | {
805 | "description": "Operating System",
806 | "value": "Windows 10 Pro"
807 | },
808 | {
809 | "description": "Cpu Model Family",
810 | "value": "8032"
811 | },
812 | {
813 | "description": "Display Technology",
814 | "value": "LCD"
815 | }
816 | ],
817 | "price": 1,
818 | "shipping": 7.99
819 | },
820 | {
821 | "key": "B01N5P6TJW",
822 | "category": "laptop",
823 | "name": "Samsung Chromebook 3, 11.6\", 4GB RAM, 16GB eMMC, Chromebook (XE500C13-K04US)",
824 | "seller": "Samsung",
825 | "wholePrice": "169",
826 | "priceFraction": "00",
827 | "stock": 36,
828 | "star": 3,
829 | "starCount": 2527,
830 | "img": "https://images-na.ssl-images-amazon.com/images/I/41XCWymAVaL._AC_US218_.jpg",
831 | "url": "https://www.amazon.com/Samsung-Chromebook-11-6-16GB-XE500C13-K04US/dp/B01N5P6TJW/ref=sr_1_26?s=electronics&ie=UTF8&qid=1499124890&sr=1-26&keywords=laptop",
832 | "features": [
833 | {
834 | "description": "Display Size",
835 | "value": "11.6 inches"
836 | },
837 | {
838 | "description": "Computer Memory Size",
839 | "value": "4 GB"
840 | },
841 | {
842 | "description": "Operating System",
843 | "value": "Chrome OS"
844 | },
845 | {
846 | "description": "Hard Disk Size",
847 | "value": "16 GB"
848 | },
849 | {
850 | "description": "Cpu Model Family",
851 | "value": "8032"
852 | }
853 | ],
854 | "price": 169,
855 | "shipping": 7.99
856 | },
857 | {
858 | "key": "B01M8J68W0",
859 | "category": "laptop",
860 | "name": "Kayond Bule Rose Pattern 12-13 inch Canvas laptop sleeve with pocket 12.5inch 13.3 inch laptop case macbook air 13 case macbook pro 13 sleeve",
861 | "seller": "kayond",
862 | "wholePrice": "11",
863 | "priceFraction": "99",
864 | "stock": 86,
865 | "star": 4,
866 | "starCount": 2359,
867 | "img": "https://images-na.ssl-images-amazon.com/images/I/51zDiHyaE1L._AC_US218_.jpg",
868 | "url": "https://www.amazon.com/gp/slredirect/picassoRedirect.html/ref=pa_sp_btf_electronics_sr_pg1_1?ie=UTF8&adId=A03286941HBVHVI1MCDYH&url=https%3A%2F%2Fwww.amazon.com%2FKayond-Pattern-Canvas-12-5inch-macbook%2Fdp%2FB01M8J68W0%2Fref%3Dsr_1_27%3Fs%3Delectronics%26ie%3DUTF8%26qid%3D1499124890%26sr%3D1-27-spons%26keywords%3Dlaptop%26psc%3D1&qualifier=1499124889&id=6267744216991374&widgetName=sp_btf",
869 | "features": [],
870 | "price": 11.99,
871 | "shipping": 3.99
872 | },
873 | {
874 | "key": "B072TY6LZL",
875 | "category": "laptop",
876 | "name": "Microsoft Surface Laptop 13.5 inch Screen Protector, Megoo Premium [Tempered Glass] Anti-scratch bubble free Screen Protector for Microsoft Surface Laptop (2017 Release)",
877 | "seller": "Megoo",
878 | "wholePrice": "17",
879 | "priceFraction": "77",
880 | "stock": 75,
881 | "star": 0,
882 | "starCount": 3019,
883 | "img": "https://images-na.ssl-images-amazon.com/images/I/51YGz9inR9L._AC_US218_.jpg",
884 | "url": "https://www.amazon.com/gp/slredirect/picassoRedirect.html/ref=pa_sp_btf_electronics_sr_pg1_2?ie=UTF8&adId=A08835611S2XQ8K5PH7WW&url=https%3A%2F%2Fwww.amazon.com%2FMicrosoft-Protector-Megoo-Tempered-Anti-scratch%2Fdp%2FB072TY6LZL%2Fref%3Dsr_1_28%3Fs%3Delectronics%26ie%3DUTF8%26qid%3D1499124890%26sr%3D1-28-spons%26keywords%3Dlaptop%26psc%3D1&qualifier=1499124889&id=6267744216991374&widgetName=sp_btf",
885 | "features": [],
886 | "price": 17.77,
887 | "shipping": 3.99
888 | },
889 | {
890 | "key": "B00OSTKZWM",
891 | "category": "android",
892 | "name": "RCA M1 4.0 Unlocked Cell Phone, Dual SIM, 5MP Camera, Android 4.4, 1.3GHz (White)",
893 | "seller": "RCA",
894 | "wholePrice": "57",
895 | "priceFraction": "99",
896 | "stock": 96,
897 | "star": 3,
898 | "starCount": 620,
899 | "img": "https://images-na.ssl-images-amazon.com/images/I/51VCP05020L._AC_US218_.jpg",
900 | "url": "https://www.amazon.com/gp/slredirect/picassoRedirect.html/ref=pa_sp_atf_electronics_sr_pg1_1?ie=UTF8&adId=A03332262DHW9SCX1W5WM&url=https%3A%2F%2Fwww.amazon.com%2FRCA-M1-Unlocked-Camera-Android%2Fdp%2FB00OSTKZWM%2Fref%3Dsr_1_1%3Fs%3Delectronics%26ie%3DUTF8%26qid%3D1499124826%26sr%3D1-1-spons%26keywords%3Dandroid%26psc%3D1&qualifier=1499124825&id=1141793968325395&widgetName=sp_atf",
901 | "features": [
902 | {
903 | "description": "Display Size",
904 | "value": "4.0 inches"
905 | },
906 | {
907 | "description": "Computer Memory Size",
908 | "value": "4 GB"
909 | },
910 | {
911 | "description": "Operating System",
912 | "value": "Android"
913 | },
914 | {
915 | "description": "Cpu Model Speed",
916 | "value": "1.3 GHz"
917 | },
918 | {
919 | "description": "Special Feature",
920 | "value": "smartphone"
921 | }
922 | ],
923 | "price": 57.99,
924 | "shipping": 3.99
925 | },
926 | {
927 | "key": "B01H2E0J5M",
928 | "category": "android",
929 | "name": "BLU R1 HD - 16 GB - Black - Prime Exclusive - with Lockscreen Offers & Ads",
930 | "seller": "BLU",
931 | "wholePrice": "59",
932 | "priceFraction": "99",
933 | "stock": 5,
934 | "star": 3,
935 | "starCount": 2318,
936 | "img": "https://images-na.ssl-images-amazon.com/images/I/416TS-ODxfL._AC_US218_.jpg",
937 | "url": "https://www.amazon.com/BLU-R1-HD-Exclusive-Lockscreen/dp/B01H2E0J5M/ref=sr_1_2?s=electronics&ie=UTF8&qid=1499124822&sr=1-2&keywords=android",
938 | "features": [
939 | {
940 | "description": "Display Size",
941 | "value": "5.0 inches"
942 | },
943 | {
944 | "description": "Computer Memory Size",
945 | "value": "16 GB"
946 | },
947 | {
948 | "description": "Operating System",
949 | "value": "Android 6.0 Marshmallow"
950 | },
951 | {
952 | "description": "Display Type",
953 | "value": "LCD"
954 | },
955 | {
956 | "description": "Special Feature",
957 | "value": "card slots"
958 | }
959 | ],
960 | "price": 59.99,
961 | "shipping": 7.99
962 | },
963 | {
964 | "key": "B0713WPJKX",
965 | "category": "android",
966 | "name": "Celltronics Micro USB Cable,10FT Nylon Braided Tangle-free Data Sync Heavy Duty Android Charging Cable Power Cord High Speed USB2.0 for Samsung HTC LG MP3 Bluetooth Speaker-3 Pack",
967 | "seller": "Cell-Tronics",
968 | "wholePrice": "10",
969 | "priceFraction": "99",
970 | "stock": 87,
971 | "star": 4,
972 | "starCount": 3392,
973 | "img": "https://images-na.ssl-images-amazon.com/images/I/61+-qmTKy8L._AC_US218_.jpg",
974 | "url": "https://www.amazon.com/Celltronics-Tangle-free-Charging-Bluetooth-Speaker-3/dp/B0713WPJKX/ref=sr_1_3?s=electronics&ie=UTF8&qid=1499124822&sr=1-3&keywords=android",
975 | "features": [],
976 | "price": 10.99,
977 | "shipping": 3.99
978 | },
979 | {
980 | "key": "B01LPZD1N6",
981 | "category": "android",
982 | "name": "ATOTO 7\"HD Touchscreen 2Din Android Car Navigation Stereo - Quadcore Car Entertainment Multimedia w/ FM/RDS Radio,WIFI,BT,Mirror Link,and more(No DVD Player)M4171 (178101/16G)",
983 | "seller": "ATOTO",
984 | "wholePrice": "164",
985 | "priceFraction": "90",
986 | "stock": 20,
987 | "star": 3,
988 | "starCount": 4029,
989 | "img": "https://images-na.ssl-images-amazon.com/images/I/51xI8gJTNYL._AC_US218_.jpg",
990 | "url": "https://www.amazon.com/ATOTO-Touchscreen-Android-Navigation-Stereo/dp/B01LPZD1N6/ref=sr_1_4?s=electronics&ie=UTF8&qid=1499124822&sr=1-4&keywords=android",
991 | "features": [
992 | {
993 | "description": "Display Size",
994 | "value": "7.0 inches"
995 | },
996 | {
997 | "description": "Operating System",
998 | "value": "Android"
999 | },
1000 | {
1001 | "description": "Hardware Platform",
1002 | "value": "Android"
1003 | },
1004 | {
1005 | "description": "Cpu Model Manufacturer",
1006 | "value": "MTK"
1007 | },
1008 | {
1009 | "description": "Wireless Communication Technology",
1010 | "value": "AM/FM"
1011 | }
1012 | ],
1013 | "price": 164.9,
1014 | "shipping": 0
1015 | },
1016 | {
1017 | "key": "B01N1SE4EP",
1018 | "category": "android",
1019 | "name": "NeuTab 7 inch Quad Core Android 5.1 Lollipop Tablet PC, Bluetooth 4.0, Dual Camera, FCC Certified(2017 Upgraded Edition)",
1020 | "seller": "NeuTab",
1021 | "wholePrice": "49",
1022 | "priceFraction": "99",
1023 | "stock": 50,
1024 | "star": 3,
1025 | "starCount": 4947,
1026 | "img": "https://images-na.ssl-images-amazon.com/images/I/41HNbRSKpfL._AC_US218_.jpg",
1027 | "url": "https://www.amazon.com/NeuTab-Lollipop-Bluetooth-Certified-Upgraded/dp/B01N1SE4EP/ref=sr_1_5?s=electronics&ie=UTF8&qid=1499124822&sr=1-5&keywords=android",
1028 | "features": [
1029 | {
1030 | "description": "Display Size",
1031 | "value": "7.0 inches"
1032 | },
1033 | {
1034 | "description": "Operating System",
1035 | "value": "android 5.1 (Lollipop)"
1036 | },
1037 | {
1038 | "description": "Hard Disk Size",
1039 | "value": "8.0 GB"
1040 | },
1041 | {
1042 | "description": "Connectivity Technology",
1043 | "value": "usb"
1044 | },
1045 | {
1046 | "description": "System Ram Type",
1047 | "value": "ddr3 sdram"
1048 | }
1049 | ],
1050 | "price": 49.99,
1051 | "shipping": 7.99
1052 | },
1053 | {
1054 | "key": "B017LDNLIG",
1055 | "category": "android",
1056 | "name": "Tracfone Alcatel Onetouch Pixi Glitz A463BG",
1057 | "seller": "Tracfone",
1058 | "wholePrice": "19",
1059 | "priceFraction": "94",
1060 | "stock": 85,
1061 | "star": 3,
1062 | "starCount": 381,
1063 | "img": "https://images-na.ssl-images-amazon.com/images/I/51QdgznaNTL._AC_US218_.jpg",
1064 | "url": "https://www.amazon.com/Tracfone-Alcatel-Onetouch-Glitz-A463BG/dp/B017LDNLIG/ref=sr_1_6?s=electronics&ie=UTF8&qid=1499124822&sr=1-6&keywords=android",
1065 | "features": [
1066 | {
1067 | "description": "Display Size",
1068 | "value": "3.5"
1069 | },
1070 | {
1071 | "description": "Computer Memory Size",
1072 | "value": "2 GB"
1073 | },
1074 | {
1075 | "description": "Operating System",
1076 | "value": "Android 4.4 KitKat"
1077 | },
1078 | {
1079 | "description": "Display Type",
1080 | "value": "LCD"
1081 | },
1082 | {
1083 | "description": "Special Feature",
1084 | "value": "smartphone"
1085 | }
1086 | ],
1087 | "price": 19.94,
1088 | "shipping": 7.99
1089 | },
1090 | {
1091 | "key": "B018IZ0SWI",
1092 | "category": "android",
1093 | "name": "BLU Advance 5.0 - Unlocked Dual Sim Smartphone - US GSM - Black",
1094 | "seller": "BLU",
1095 | "wholePrice": "59",
1096 | "priceFraction": "99",
1097 | "stock": 10,
1098 | "star": 3,
1099 | "starCount": 395,
1100 | "img": "https://images-na.ssl-images-amazon.com/images/I/41mXjdLezRL._AC_US218_.jpg",
1101 | "url": "https://www.amazon.com/BLU-Advance-5-0-Unlocked-Smartphone/dp/B018IZ0SWI/ref=sr_1_7?s=electronics&ie=UTF8&qid=1499124822&sr=1-7&keywords=android",
1102 | "features": [
1103 | {
1104 | "description": "Display Size",
1105 | "value": "5 inches"
1106 | },
1107 | {
1108 | "description": "Computer Memory Size",
1109 | "value": "4 GB"
1110 | },
1111 | {
1112 | "description": "Operating System",
1113 | "value": "Android"
1114 | },
1115 | {
1116 | "description": "Wireless Communication Technology",
1117 | "value": "GSM, 3G, 4G"
1118 | },
1119 | {
1120 | "description": "Cpu Model Speed",
1121 | "value": "1 GHz"
1122 | }
1123 | ],
1124 | "price": 59.99,
1125 | "shipping": 3.99
1126 | },
1127 | {
1128 | "key": "B01N4HS7B8",
1129 | "category": "android",
1130 | "name": "Smart tv box Wechip V5 Android 6.0 Marshmallow 2g 16g Amlogic S905X quad core 4K Dual WiFi",
1131 | "seller": "Wechip",
1132 | "wholePrice": "53",
1133 | "priceFraction": "99",
1134 | "stock": 34,
1135 | "star": 4,
1136 | "starCount": 4740,
1137 | "img": "https://images-na.ssl-images-amazon.com/images/I/41q+adG0lNL._AC_US218_.jpg",
1138 | "url": "https://www.amazon.com/Smart-Wechip-Android-Marshmallow-Amlogic/dp/B01N4HS7B8/ref=sr_1_8?s=electronics&ie=UTF8&qid=1499124822&sr=1-8&keywords=android",
1139 | "features": [],
1140 | "price": 53.99,
1141 | "shipping": 7.99
1142 | },
1143 | {
1144 | "key": "B01LX0JZUM",
1145 | "category": "android",
1146 | "name": "ONSON Android Charger Cable,3Pack 10FT Extra Long Nylon Braided High Speed 2.0 USB to Micro USB Charging Cord Fast Charger Cable for Samsung Galaxy S7/S6 Edge,Note 5/4,HTC,LG,Nexus(Gray White)",
1147 | "seller": "ONSON",
1148 | "wholePrice": "11",
1149 | "priceFraction": "99",
1150 | "stock": 8,
1151 | "star": 3,
1152 | "starCount": 2636,
1153 | "img": "https://images-na.ssl-images-amazon.com/images/I/51P8qI8KzNL._AC_US218_.jpg",
1154 | "url": "https://www.amazon.com/ONSON-Android-Charger-Braided-Charging/dp/B01LX0JZUM/ref=sr_1_9?s=electronics&ie=UTF8&qid=1499124822&sr=1-9&keywords=android",
1155 | "features": [],
1156 | "price": 11.99,
1157 | "shipping": 3.99
1158 | },
1159 | {
1160 | "key": "B072NYXDLY",
1161 | "category": "android",
1162 | "name": "5.0\" Phone Unlocked Dual Sim Quad Core 8GB Android 5.1 Cellphone Gold by TIMMY",
1163 | "seller": "Timmy",
1164 | "wholePrice": "68",
1165 | "priceFraction": "99",
1166 | "stock": 14,
1167 | "star": 5,
1168 | "starCount": 1182,
1169 | "img": "https://images-na.ssl-images-amazon.com/images/I/411fzxxuuFL._AC_US218_.jpg",
1170 | "url": "https://www.amazon.com/Phone-Unlocked-Android-Cellphone-TIMMY/dp/B072NYXDLY/ref=sr_1_10?s=electronics&ie=UTF8&qid=1499124822&sr=1-10&keywords=android",
1171 | "features": [
1172 | {
1173 | "description": "Display Size",
1174 | "value": "5.0 inches"
1175 | },
1176 | {
1177 | "description": "Operating System",
1178 | "value": "google android"
1179 | }
1180 | ],
1181 | "price": 68.99,
1182 | "shipping": 3.99
1183 | },
1184 | {
1185 | "key": "B071RK857H",
1186 | "category": "android",
1187 | "name": "QacQoc A12 Pro Android 6.0 TV BOX Amlogic S912 Octa-Core [2G DDR3/16G eMMC] Dual Wifi 2.4G/5G AC OTA Update 4K 1000M Android TV Box",
1188 | "seller": "QacQoc",
1189 | "wholePrice": "65",
1190 | "priceFraction": "99",
1191 | "stock": 1,
1192 | "star": 5,
1193 | "starCount": 1836,
1194 | "img": "https://images-na.ssl-images-amazon.com/images/I/51+GT3mluJL._AC_US218_.jpg",
1195 | "url": "https://www.amazon.com/QacQoc-A12-Android-Amlogic-Octa-Core/dp/B071RK857H/ref=sr_1_11?s=electronics&ie=UTF8&qid=1499124822&sr=1-11&keywords=android",
1196 | "features": [
1197 | {
1198 | "description": "Connectivity Technology",
1199 | "value": "wi-fi ready"
1200 | },
1201 | {
1202 | "description": "Special Feature",
1203 | "value": "network ready"
1204 | }
1205 | ],
1206 | "price": 65.99,
1207 | "shipping": 7.99
1208 | },
1209 | {
1210 | "key": "B06XWMQRS6",
1211 | "category": "android",
1212 | "name": "QacQoc M9C max Android 6.0 Marshmallow TV Box New Amlogic S905X Chipset [2G DDR3/16G eMMC] 4K Smart Box Unlocked 2.4G WIFI Media Player",
1213 | "seller": "QacQoc",
1214 | "wholePrice": "49",
1215 | "priceFraction": "99",
1216 | "stock": 54,
1217 | "star": 4,
1218 | "starCount": 2618,
1219 | "img": "https://images-na.ssl-images-amazon.com/images/I/41Sx5HrzuhL._AC_US218_.jpg",
1220 | "url": "https://www.amazon.com/QacQoc-Android-Marshmallow-Amlogic-Unlocked/dp/B06XWMQRS6/ref=sr_1_12?s=electronics&ie=UTF8&qid=1499124822&sr=1-12&keywords=android",
1221 | "features": [],
1222 | "price": 49.99,
1223 | "shipping": 3.99
1224 | },
1225 | {
1226 | "key": "B01N41AKT3",
1227 | "category": "android",
1228 | "name": "Antimi Sweatproof Smart Watch Phone for Android HTC Sony Samsung LG Google Pixel /Pixel and iPhone 5 5S 6 6 Plus 7 Smartphones Black",
1229 | "seller": "Antimi",
1230 | "wholePrice": "25",
1231 | "priceFraction": "99",
1232 | "stock": 66,
1233 | "star": 3,
1234 | "starCount": 3316,
1235 | "img": "https://images-na.ssl-images-amazon.com/images/I/41Z3XFc1-5L._AC_US218_.jpg",
1236 | "url": "https://www.amazon.com/Antimi-Sweatproof-Android-Samsung-Smartphones/dp/B01N41AKT3/ref=sr_1_13?s=electronics&ie=UTF8&qid=1499124822&sr=1-13&keywords=android",
1237 | "features": [
1238 | {
1239 | "description": "Operating System",
1240 | "value": "Android/iOS"
1241 | },
1242 | {
1243 | "description": "Hardware Platform",
1244 | "value": "Android"
1245 | }
1246 | ],
1247 | "price": 25.99,
1248 | "shipping": 3.99
1249 | },
1250 | {
1251 | "key": "B06XY8W1DC",
1252 | "category": "android",
1253 | "name": "SUNNZO T2 TV Box Streaming Devices for TV/Streaming Media Players Android 6.0 4K WIFI",
1254 | "seller": "sunnzo",
1255 | "wholePrice": "29",
1256 | "priceFraction": "99",
1257 | "stock": 97,
1258 | "star": 3,
1259 | "starCount": 4951,
1260 | "img": "https://images-na.ssl-images-amazon.com/images/I/51sZTRzpQjL._AC_US218_.jpg",
1261 | "url": "https://www.amazon.com/T2-Streaming-Devices-Players-Android/dp/B06XY8W1DC/ref=sr_1_14?s=electronics&ie=UTF8&qid=1499124822&sr=1-14&keywords=android",
1262 | "features": [],
1263 | "price": 29.99,
1264 | "shipping": 7.99
1265 | },
1266 | {
1267 | "key": "B01N0VVQ13",
1268 | "category": "android",
1269 | "name": "Goodsail Micro USB Cables, 3Pack 6FT/2M durable Nylon Braided High Charging Speed USB 2.0 A Male to Micro USB Cord For Samsung, HTC, Motorola, Blackberry, Tablets and Android Smartphones Blue Black",
1270 | "seller": "Goodsail",
1271 | "wholePrice": "9",
1272 | "priceFraction": "99",
1273 | "stock": 80,
1274 | "star": 4,
1275 | "starCount": 4758,
1276 | "img": "https://images-na.ssl-images-amazon.com/images/I/51+MK7D4pLL._AC_US218_.jpg",
1277 | "url": "https://www.amazon.com/Goodsail-Charging-Motorola-Blackberry-Smartphones/dp/B01N0VVQ13/ref=sr_1_15?s=electronics&ie=UTF8&qid=1499124822&sr=1-15&keywords=android",
1278 | "features": [],
1279 | "price": 9.99,
1280 | "shipping": 7.99
1281 | },
1282 | {
1283 | "key": "B01JOT42JW",
1284 | "category": "android",
1285 | "name": "2017 Model GooBang Doo Android 6.0 TV Box, Abox Android TV Box Amlogic S905X 64 Bits and True 4K Playing",
1286 | "seller": "GooBang Doo",
1287 | "wholePrice": "39",
1288 | "priceFraction": "99",
1289 | "stock": 54,
1290 | "star": 3,
1291 | "starCount": 856,
1292 | "img": "https://images-na.ssl-images-amazon.com/images/I/41sPPh71RXL._AC_US218_.jpg",
1293 | "url": "https://www.amazon.com/GooBang-Doo-Android-Amlogic-Playing/dp/B01JOT42JW/ref=sr_1_16?s=electronics&ie=UTF8&qid=1499124822&sr=1-16&keywords=android",
1294 | "features": [],
1295 | "price": 39.99,
1296 | "shipping": 3.99
1297 | },
1298 | {
1299 | "key": "B06Y5PY61J",
1300 | "category": "android",
1301 | "name": "RBSCH M96X Smart Tv Box Android 6.0 Amlogic S905X Quad Core 64bit 2GB / 8GB 4K HD 100Mbps LAN Wifi Mini Home player",
1302 | "seller": "RBSCH",
1303 | "wholePrice": "44",
1304 | "priceFraction": "99",
1305 | "stock": 34,
1306 | "star": 5,
1307 | "starCount": 1151,
1308 | "img": "https://images-na.ssl-images-amazon.com/images/I/41c3yiJtjCL._AC_US218_.jpg",
1309 | "url": "https://www.amazon.com/RBSCH-Android-Amlogic-100Mbps-player/dp/B06Y5PY61J/ref=sr_1_17?s=electronics&ie=UTF8&qid=1499124822&sr=1-17&keywords=android",
1310 | "features": [],
1311 | "price": 44.99,
1312 | "shipping": 7.99
1313 | },
1314 | {
1315 | "key": "B0182YJ4V6",
1316 | "category": "android",
1317 | "name": "Yezz Andy 3.5E2 unlocked android phone black",
1318 | "seller": "Yezz",
1319 | "wholePrice": "37",
1320 | "priceFraction": "50",
1321 | "stock": 97,
1322 | "star": 3,
1323 | "starCount": 2770,
1324 | "img": "https://images-na.ssl-images-amazon.com/images/I/51PADZ7CaeL._AC_US218_.jpg",
1325 | "url": "https://www.amazon.com/Yezz-3-5E2-unlocked-android-phone/dp/B0182YJ4V6/ref=sr_1_18?s=electronics&ie=UTF8&qid=1499124822&sr=1-18&keywords=android",
1326 | "features": [
1327 | {
1328 | "description": "Display Size",
1329 | "value": "3.5 inches"
1330 | },
1331 | {
1332 | "description": "Computer Memory Size",
1333 | "value": "512.0 MB"
1334 | },
1335 | {
1336 | "description": "Operating System",
1337 | "value": "google android"
1338 | },
1339 | {
1340 | "description": "Wireless Communication Technology",
1341 | "value": "GSM"
1342 | },
1343 | {
1344 | "description": "Special Feature",
1345 | "value": "smartphone"
1346 | }
1347 | ],
1348 | "price": 37.5,
1349 | "shipping": 7.99
1350 | },
1351 | {
1352 | "key": "B01GL7EB50",
1353 | "category": "android",
1354 | "name": "Pandawell OTG Micro USB Mobile Phone Fan Portable Dock Cool Cooler Rotating Fan for Samsung Galaxy S7, S7 Edge, LG G5 & Other Android Smart Phone (Black)",
1355 | "seller": "Pandawell",
1356 | "wholePrice": "4",
1357 | "priceFraction": "99",
1358 | "stock": 68,
1359 | "star": 3,
1360 | "starCount": 2806,
1361 | "img": "https://images-na.ssl-images-amazon.com/images/I/31Q6QEVwmDL._AC_US218_.jpg",
1362 | "url": "https://www.amazon.com/Pandawell-Portable-Rotating-Samsung-Android/dp/B01GL7EB50/ref=sr_1_19?s=electronics&ie=UTF8&qid=1499124822&sr=1-19&keywords=android",
1363 | "features": [],
1364 | "price": 4.99,
1365 | "shipping": 7.99
1366 | },
1367 | {
1368 | "key": "B06XKH29C8",
1369 | "category": "android",
1370 | "name": "TYD 10.1 inch Tablet Android 6.0 GPS Octa Core 2560X1600 IPS Bluetooth RAM 4GB ROM 64GB 13.0MP 3G Phone Call Tablets PC Dual sim card TYD-107-Black",
1371 | "seller": "Tianyida",
1372 | "wholePrice": "99",
1373 | "priceFraction": "00",
1374 | "stock": 95,
1375 | "star": 2,
1376 | "starCount": 1718,
1377 | "img": "https://images-na.ssl-images-amazon.com/images/I/513RoqwKmPL._AC_US218_.jpg",
1378 | "url": "https://www.amazon.com/Android-2560X1600-Bluetooth-Tablets-TYD-107-Black/dp/B06XKH29C8/ref=sr_1_20?s=electronics&ie=UTF8&qid=1499124822&sr=1-20&keywords=android",
1379 | "features": [
1380 | {
1381 | "description": "Display Size",
1382 | "value": "10.1 inches"
1383 | },
1384 | {
1385 | "description": "Operating System",
1386 | "value": "Android"
1387 | },
1388 | {
1389 | "description": "Hard Disk Size",
1390 | "value": "64.0 GB"
1391 | },
1392 | {
1393 | "description": "Connectivity Technology",
1394 | "value": "usb"
1395 | },
1396 | {
1397 | "description": "Hardware Platform",
1398 | "value": "android 6.0"
1399 | }
1400 | ],
1401 | "price": 99,
1402 | "shipping": 3.99
1403 | },
1404 | {
1405 | "key": "B01MG086CV",
1406 | "category": "android",
1407 | "name": "[Apple Certified] 3 Feet Coiled Charging Cable for iPhone and Android, YellowKnife 8-Pin Lightning & Micro to USB Date Wire for iPhone 5 6 7 Plus SE, iPad Mini Air iPod, Samsung Sony LG Phones, Black",
1408 | "seller": "Yellowknife",
1409 | "wholePrice": "11",
1410 | "priceFraction": "98",
1411 | "stock": 3,
1412 | "star": 4,
1413 | "starCount": 103,
1414 | "img": "https://images-na.ssl-images-amazon.com/images/I/41Htivct16L._AC_US218_.jpg",
1415 | "url": "https://www.amazon.com/Certified-Charging-Android-YellowKnife-Lightning/dp/B01MG086CV/ref=sr_1_21?s=electronics&ie=UTF8&qid=1499124822&sr=1-21&keywords=android",
1416 | "features": [],
1417 | "price": 11.98,
1418 | "shipping": 7.99
1419 | },
1420 | {
1421 | "key": "B01MUA1QMU",
1422 | "category": "android",
1423 | "name": "TracFone Alcatel OneTouch Pixi Eclipse Prepaid Smartphone - Certified Preowned",
1424 | "seller": "Tracfone",
1425 | "wholePrice": "20",
1426 | "priceFraction": "81",
1427 | "stock": 66,
1428 | "star": 3,
1429 | "starCount": 3507,
1430 | "img": "https://images-na.ssl-images-amazon.com/images/I/41gV+33qdoL._AC_US218_.jpg",
1431 | "url": "https://www.amazon.com/TracFone-Alcatel-OneTouch-Pixi-Eclipse-Prepaid-Smartphone-Certified/dp/B01MUA1QMU/ref=sr_1_22?s=electronics&ie=UTF8&qid=1499124822&sr=1-22&keywords=android",
1432 | "features": [
1433 | {
1434 | "description": "Display Size",
1435 | "value": "4"
1436 | },
1437 | {
1438 | "description": "Display Type",
1439 | "value": "LCD"
1440 | }
1441 | ],
1442 | "price": 20.81,
1443 | "shipping": 7.99
1444 | },
1445 | {
1446 | "key": "B015MJLEUS",
1447 | "category": "android",
1448 | "name": "Anker [3-Pack] PowerLine Micro USB (3ft) - Charging Cable for Samsung, Nexus, LG, Android Smartphones and More (Black)",
1449 | "seller": "Anker",
1450 | "wholePrice": "10",
1451 | "priceFraction": "99",
1452 | "stock": 75,
1453 | "star": 4,
1454 | "starCount": 315,
1455 | "img": "https://images-na.ssl-images-amazon.com/images/I/41pKUQFLc8L._AC_US218_.jpg",
1456 | "url": "https://www.amazon.com/Anker-3-Pack-PowerLine-Micro-USB/dp/B015MJLEUS/ref=sr_1_23?s=electronics&ie=UTF8&qid=1499124822&sr=1-23&keywords=android",
1457 | "features": [],
1458 | "price": 10.99,
1459 | "shipping": 3.99
1460 | },
1461 | {
1462 | "key": "B06WWPFVNV",
1463 | "category": "android",
1464 | "name": "Antimi SmartWatch Sweatproof Smart Watch Phone for Android HTC Sony Samsung LG Google Pixel /Pixel and iPhone 5 5S 6 6 Plus 7 Smartphones Black",
1465 | "seller": "Antimi",
1466 | "wholePrice": "34",
1467 | "priceFraction": "99",
1468 | "stock": 37,
1469 | "star": 4,
1470 | "starCount": 1880,
1471 | "img": "https://images-na.ssl-images-amazon.com/images/I/51yaeSUl8DL._AC_US218_.jpg",
1472 | "url": "https://www.amazon.com/Antimi-SmartWatch-Sweatproof-Android-Smartphones/dp/B06WWPFVNV/ref=sr_1_24?s=electronics&ie=UTF8&qid=1499124822&sr=1-24&keywords=android",
1473 | "features": [
1474 | {
1475 | "description": "Operating System",
1476 | "value": "Android/iOS"
1477 | },
1478 | {
1479 | "description": "Hardware Platform",
1480 | "value": "Android"
1481 | }
1482 | ],
1483 | "price": 34.99,
1484 | "shipping": 7.99
1485 | },
1486 | {
1487 | "key": "B00NH2COZC",
1488 | "category": "android",
1489 | "name": "Native Union NIGHT Cable for Android Devices 10ft Micro-USB to USB Charging Cable (Zebra)",
1490 | "seller": "Native Union",
1491 | "wholePrice": "39",
1492 | "priceFraction": "99",
1493 | "stock": 73,
1494 | "star": 3,
1495 | "starCount": 1894,
1496 | "img": "https://images-na.ssl-images-amazon.com/images/I/3167uhg4DPL._AC_US218_.jpg",
1497 | "url": "https://www.amazon.com/Native-Union-Android-Micro-USB-Charging/dp/B00NH2COZC/ref=sr_1_25?s=electronics&ie=UTF8&qid=1499124822&sr=1-25&keywords=android",
1498 | "features": [],
1499 | "price": 39.99,
1500 | "shipping": 7.99
1501 | },
1502 | {
1503 | "key": "B01DMVLE7Q",
1504 | "category": "android",
1505 | "name": "Samsung Galaxy Tab E Lite 7.0\" 8GB (Wi-Fi) Black Accessory Bundle includes Tablet, Cleaning Kit, 3 Stylus Pens and Metal Ear Buds",
1506 | "seller": "Samsung",
1507 | "wholePrice": "129",
1508 | "priceFraction": "99",
1509 | "stock": 14,
1510 | "star": 4,
1511 | "starCount": 1362,
1512 | "img": "https://images-na.ssl-images-amazon.com/images/I/51jViuKHqdL._AC_US218_.jpg",
1513 | "url": "https://www.amazon.com/gp/slredirect/picassoRedirect.html/ref=pa_sp_btf_electronics_sr_pg1_1?ie=UTF8&adId=A06599961RWOD7JVO4914&url=https%3A%2F%2Fwww.amazon.com%2FSamsung-Galaxy-Accessory-Bundle-Cleaning%2Fdp%2FB01DMVLE7Q%2Fref%3Dsr_1_26%3Fs%3Delectronics%26ie%3DUTF8%26qid%3D1499124822%26sr%3D1-26-spons%26keywords%3Dandroid%26psc%3D1&qualifier=1499124826&id=4777421193755769&widgetName=sp_btf",
1514 | "features": [
1515 | {
1516 | "description": "Display Size",
1517 | "value": "7.0 inches"
1518 | },
1519 | {
1520 | "description": "Computer Memory Size",
1521 | "value": "1.0 GB"
1522 | },
1523 | {
1524 | "description": "Operating System",
1525 | "value": "Android"
1526 | },
1527 | {
1528 | "description": "Connectivity Technology",
1529 | "value": "wi-fi"
1530 | },
1531 | {
1532 | "description": "Wireless Communication Technology",
1533 | "value": "Wi-Fi"
1534 | }
1535 | ],
1536 | "price": 129.99,
1537 | "shipping": 7.99
1538 | },
1539 | {
1540 | "key": "B017SD8RWO",
1541 | "category": "android",
1542 | "name": "Zmodo Outdoor Wireless IP Security Surveillance Camera System - 4 Pack HD Night Vision Remote Access Motion Detection",
1543 | "seller": "Zmodo",
1544 | "wholePrice": "99",
1545 | "priceFraction": "99",
1546 | "stock": 9,
1547 | "star": 3,
1548 | "starCount": 4638,
1549 | "img": "https://images-na.ssl-images-amazon.com/images/I/51jegGDgy2L._AC_US218_.jpg",
1550 | "url": "https://www.amazon.com/gp/slredirect/picassoRedirect.html/ref=pa_sp_btf_electronics_sr_pg1_2?ie=UTF8&adId=A07535107J9TJPUG5AAX&url=https%3A%2F%2Fwww.amazon.com%2FZmodo-Outdoor-Wireless-Security-Surveillance%2Fdp%2FB017SD8RWO%2Fref%3Dsr_1_27%3Fs%3Delectronics%26ie%3DUTF8%26qid%3D1499124822%26sr%3D1-27-spons%26keywords%3Dandroid%26psc%3D1&qualifier=1499124826&id=4777421193755769&widgetName=sp_btf",
1551 | "features": [],
1552 | "price": 99.99,
1553 | "shipping": 0
1554 | },
1555 | {
1556 | "key": "B01N5PRSOT",
1557 | "category": "android",
1558 | "name": "EVANPO Android 6.0 TV BOX Amlogic S905X Quad Core 1GB DDR3 8GB EMMC Flash 3D 4K2K Smart Mini PC Wifi TV Player Set Top Box with Keyboard",
1559 | "seller": "EVANPO",
1560 | "wholePrice": "48",
1561 | "priceFraction": "98",
1562 | "stock": 47,
1563 | "star": 4,
1564 | "starCount": 88,
1565 | "img": "https://images-na.ssl-images-amazon.com/images/I/51JVSEmcsCL._AC_US218_.jpg",
1566 | "url": "https://www.amazon.com/gp/slredirect/picassoRedirect.html/ref=pa_sp_btf_electronics_sr_pg1_3?ie=UTF8&adId=A00155643QO9QUBJOBSJT&url=https%3A%2F%2Fwww.amazon.com%2FEVANPO-Android-Amlogic-Player-Keyboard%2Fdp%2FB01N5PRSOT%2Fref%3Dsr_1_28%3Fs%3Delectronics%26ie%3DUTF8%26qid%3D1499124822%26sr%3D1-28-spons%26keywords%3Dandroid%26psc%3D1&qualifier=1499124826&id=4777421193755769&widgetName=sp_btf",
1567 | "features": [],
1568 | "price": 48.98,
1569 | "shipping": 7.99
1570 | },
1571 | {
1572 | "key": "B016F3M7OM",
1573 | "category": "camera",
1574 | "name": "YI Home Camera Wireless IP Security Surveillance System (US Edition) White",
1575 | "seller": "YI",
1576 | "wholePrice": "39",
1577 | "priceFraction": "99",
1578 | "stock": 48,
1579 | "star": 4,
1580 | "starCount": 985,
1581 | "img": "https://images-na.ssl-images-amazon.com/images/I/314hcoZg2JL._AC_US218_.jpg",
1582 | "url": "https://www.amazon.com/gp/slredirect/picassoRedirect.html/ref=pa_sp_atf_electronics_sr_pg1_1?ie=UTF8&adId=A03127032JGFCK6OPGZQ9&url=https%3A%2F%2Fwww.amazon.com%2FYI-Wireless-Security-Surveillance-US%2Fdp%2FB016F3M7OM%2Fref%3Dsr_1_1%3Fs%3Delectronics%26ie%3DUTF8%26qid%3D1499124549%26sr%3D1-1-spons%26keywords%3Dcamera%26psc%3D1&qualifier=1499124549&id=8228299164163419&widgetName=sp_atf",
1583 | "features": [
1584 | {
1585 | "description": "Connectivity Technology",
1586 | "value": "wi-fi ready"
1587 | },
1588 | {
1589 | "description": "Wireless Communication Technology",
1590 | "value": "Wireless"
1591 | }
1592 | ],
1593 | "price": 39.99,
1594 | "shipping": 3.99
1595 | },
1596 | {
1597 | "key": "B01MQ0FSS0",
1598 | "category": "camera",
1599 | "name": "Sony Cyber-Shot DSC-RX100 Digital Camera + 64GB SDXC Memory Dual Battery Kit + Accessory Bundle",
1600 | "seller": "Beach Camera",
1601 | "wholePrice": "499",
1602 | "priceFraction": "00",
1603 | "stock": 52,
1604 | "star": 4,
1605 | "starCount": 128,
1606 | "img": "https://images-na.ssl-images-amazon.com/images/I/61T6hxWFVlL._AC_US218_.jpg",
1607 | "url": "https://www.amazon.com/gp/slredirect/picassoRedirect.html/ref=pa_sp_atf_electronics_sr_pg1_2?ie=UTF8&adId=A05196583793V13Q2RYYJ&url=https%3A%2F%2Fwww.amazon.com%2FCyber-Shot-DSC-RX100-Digital-Camera-Accessory%2Fdp%2FB01MQ0FSS0%2Fref%3Dsr_1_2%3Fs%3Delectronics%26ie%3DUTF8%26qid%3D1499124549%26sr%3D1-2-spons%26keywords%3Dcamera%26psc%3D1&qualifier=1499124549&id=8228299164163419&widgetName=sp_atf",
1608 | "features": [],
1609 | "price": 499,
1610 | "shipping": 3.99
1611 | },
1612 | {
1613 | "key": "B01KVIN26O",
1614 | "category": "camera",
1615 | "name": "Cell Phone Camera Lens - TURATA 2 in 1 Professional HD Camera Lens Kit 0.45X Super Wide Angle & 12.5X Macro Lens for iPhone7 6s 6s plus 6 plus 5s & Most Smartphone, Tablet",
1616 | "seller": "TURATA",
1617 | "wholePrice": "11",
1618 | "priceFraction": "98",
1619 | "stock": 51,
1620 | "star": 4,
1621 | "starCount": 1011,
1622 | "img": "https://images-na.ssl-images-amazon.com/images/I/41wyZE9sWLL._AC_US218_.jpg",
1623 | "url": "https://www.amazon.com/Cell-Phone-Camera-Lens-Professional/dp/B01KVIN26O/ref=sr_1_3?s=electronics&ie=UTF8&qid=1499124549&sr=1-3&keywords=camera",
1624 | "features": [
1625 | {
1626 | "description": "Display Dimensions",
1627 | "value": "37mm"
1628 | },
1629 | {
1630 | "description": "Special Feature",
1631 | "value": "Fit for most smartphones."
1632 | }
1633 | ],
1634 | "price": 11.98,
1635 | "shipping": 3.99
1636 | },
1637 | {
1638 | "key": "B00UV6I8QQ",
1639 | "category": "camera",
1640 | "name": "Nikon Coolpix L340 20.2MP Digital Camera with 28x Optical Zoom",
1641 | "seller": "Nikon",
1642 | "wholePrice": "148",
1643 | "priceFraction": "00",
1644 | "stock": 7,
1645 | "star": 3,
1646 | "starCount": 1560,
1647 | "img": "https://images-na.ssl-images-amazon.com/images/I/41VVqVvKuNL._AC_US218_.jpg",
1648 | "url": "https://www.amazon.com/Nikon-Coolpix-L340-Digital-Optical/dp/B00UV6I8QQ/ref=sr_1_4?s=electronics&ie=UTF8&qid=1499124549&sr=1-4&keywords=camera",
1649 | "features": [
1650 | {
1651 | "description": "Display Size",
1652 | "value": "7.6 inches"
1653 | },
1654 | {
1655 | "description": "Computer Memory Size",
1656 | "value": "43.0 MB"
1657 | },
1658 | {
1659 | "description": "Hardware Interface",
1660 | "value": "audio video port"
1661 | },
1662 | {
1663 | "description": "Special Feature",
1664 | "value": "image-stabilization"
1665 | }
1666 | ],
1667 | "price": 148,
1668 | "shipping": 3.99
1669 | },
1670 | {
1671 | "key": "B00W68DSWQ",
1672 | "category": "camera",
1673 | "name": "Nikon COOLPIX L340 Digital Camera with 28x Zoom & Full HD Video (Black) International Version + 4 AA Batteries & Charger + 32GB Dlx Accessory Kit w/HeroFiber Cleaning Cloth",
1674 | "seller": "HeroFiber",
1675 | "wholePrice": "239",
1676 | "priceFraction": "99",
1677 | "stock": 16,
1678 | "star": 4,
1679 | "starCount": 4472,
1680 | "img": "https://images-na.ssl-images-amazon.com/images/I/61yFYo02UzL._AC_US218_.jpg",
1681 | "url": "https://www.amazon.com/International-Batteries-Accessory-HeroFiber-Cleaning/dp/B00W68DSWQ/ref=sr_1_5?s=electronics&ie=UTF8&qid=1499124549&sr=1-5&keywords=camera",
1682 | "features": [],
1683 | "price": 239.99,
1684 | "shipping": 7.99
1685 | },
1686 | {
1687 | "key": "B01N6E66RN",
1688 | "category": "camera",
1689 | "name": "Aberg Best 18 mega pixels HD Digital Camera - Digital video camera - Students cameras - Students Camcorder - Handheld Sized Digital Camcorder Indoor Outdoor for Adult /Seniors / Kids (silver)",
1690 | "seller": "Aberg Best",
1691 | "wholePrice": "35",
1692 | "priceFraction": "00",
1693 | "stock": 46,
1694 | "star": 2,
1695 | "starCount": 80,
1696 | "img": "https://images-na.ssl-images-amazon.com/images/I/51AasF06FwL._AC_US218_.jpg",
1697 | "url": "https://www.amazon.com/Aberg-Best-pixels-Digital-Camera/dp/B01N6E66RN/ref=sr_1_6?s=electronics&ie=UTF8&qid=1499124549&sr=1-6&keywords=camera",
1698 | "features": [],
1699 | "price": 35,
1700 | "shipping": 3.99
1701 | },
1702 | {
1703 | "key": "B01CG62D00",
1704 | "category": "camera",
1705 | "name": "Kodak PIXPRO Friendly Zoom FZ43 16 MP Digital Camera with 4X Optical Zoom and 2.7\" LCD Screen (Black)",
1706 | "seller": "Kodak",
1707 | "wholePrice": "66",
1708 | "priceFraction": "40",
1709 | "stock": 59,
1710 | "star": 3,
1711 | "starCount": 3095,
1712 | "img": "https://images-na.ssl-images-amazon.com/images/I/41XZUouAKJL._AC_US218_.jpg",
1713 | "url": "https://www.amazon.com/Kodak-PIXPRO-Friendly-Digital-Optical/dp/B01CG62D00/ref=sr_1_7?s=electronics&ie=UTF8&qid=1499124549&sr=1-7&keywords=camera",
1714 | "features": [
1715 | {
1716 | "description": "Display Size",
1717 | "value": "2.7 inches"
1718 | },
1719 | {
1720 | "description": "Computer Memory Size",
1721 | "value": "8 MB"
1722 | },
1723 | {
1724 | "description": "Hardware Interface",
1725 | "value": "audio video port"
1726 | },
1727 | {
1728 | "description": "Display Technology",
1729 | "value": "LCD"
1730 | },
1731 | {
1732 | "description": "Display Resolution Maximum",
1733 | "value": "720p"
1734 | }
1735 | ],
1736 | "price": 66.4,
1737 | "shipping": 3.99
1738 | },
1739 | {
1740 | "key": "B01LWPSB57",
1741 | "category": "camera",
1742 | "name": "Camera Camcorders, Besteker HD 1080P 24MP 16X Digital Zoom Video Camcorder with 2.7\" LCD and 270 Degree Rotation Screen",
1743 | "seller": "Besteker",
1744 | "wholePrice": "53",
1745 | "priceFraction": "99",
1746 | "stock": 71,
1747 | "star": 3,
1748 | "starCount": 553,
1749 | "img": "https://images-na.ssl-images-amazon.com/images/I/417uVGTgAlL._AC_US218_.jpg",
1750 | "url": "https://www.amazon.com/Camcorders-Besteker-Digital-Camcorder-Rotation/dp/B01LWPSB57/ref=sr_1_8?s=electronics&ie=UTF8&qid=1499124549&sr=1-8&keywords=camera",
1751 | "features": [
1752 | {
1753 | "description": "Display Size",
1754 | "value": "2.7 inches"
1755 | },
1756 | {
1757 | "description": "Display Resolution Maximum",
1758 | "value": "1920X1080"
1759 | },
1760 | {
1761 | "description": "Form Factor",
1762 | "value": "rotating"
1763 | }
1764 | ],
1765 | "price": 53.99,
1766 | "shipping": 3.99
1767 | },
1768 | {
1769 | "key": "B01D93Z89W",
1770 | "category": "camera",
1771 | "name": "Canon EOS Rebel T6 Digital SLR Camera with 18-55mm EF-S f/3.5-5.6 IS II Lens + 58mm Wide Angle Lens + 2x Telephoto Lens + Flash + 48GB SD Memory Card + UV Filter Kit + Tripod + Full Accessory Bundle",
1772 | "seller": "PHOTO4LESS",
1773 | "wholePrice": "469",
1774 | "priceFraction": "00",
1775 | "stock": 10,
1776 | "star": 4,
1777 | "starCount": 2583,
1778 | "img": "https://images-na.ssl-images-amazon.com/images/I/61heZtEPPBL._AC_US218_.jpg",
1779 | "url": "https://www.amazon.com/Canon-T6-Digital-Telephoto-Accessory/dp/B01D93Z89W/ref=sr_1_9?s=electronics&ie=UTF8&qid=1499124549&sr=1-9&keywords=camera",
1780 | "features": [],
1781 | "price": 469,
1782 | "shipping": 7.99
1783 | },
1784 | {
1785 | "key": "B01N0XDRYO",
1786 | "category": "camera",
1787 | "name": "KINGEAR Pcam PDC001 2.7 inch TFT LCD HD Mini Digital Camera(black)",
1788 | "seller": "KINGEAR",
1789 | "wholePrice": "46",
1790 | "priceFraction": "99",
1791 | "stock": 11,
1792 | "star": 4,
1793 | "starCount": 3908,
1794 | "img": "https://images-na.ssl-images-amazon.com/images/I/51uKiDibbZL._AC_US218_.jpg",
1795 | "url": "https://www.amazon.com/KINGEAR-PDC001-2-7-Digital-Camera/dp/B01N0XDRYO/ref=sr_1_10?s=electronics&ie=UTF8&qid=1499124549&sr=1-10&keywords=camera",
1796 | "features": [],
1797 | "price": 46.99,
1798 | "shipping": 3.99
1799 | },
1800 | {
1801 | "key": "B01MRWZ4KL",
1802 | "category": "camera",
1803 | "name": "KINGEAR KG002 2.7 inch TFT LCD HD Mini Digital Camera",
1804 | "seller": "GordVE",
1805 | "wholePrice": "45",
1806 | "priceFraction": "99",
1807 | "stock": 24,
1808 | "star": 4,
1809 | "starCount": 3821,
1810 | "img": "https://images-na.ssl-images-amazon.com/images/I/51fNKzDjiyL._AC_US218_.jpg",
1811 | "url": "https://www.amazon.com/KINGEAR-KG002-inch-Digital-Camera/dp/B01MRWZ4KL/ref=sr_1_11?s=electronics&ie=UTF8&qid=1499124549&sr=1-11&keywords=camera",
1812 | "features": [],
1813 | "price": 45.99,
1814 | "shipping": 7.99
1815 | },
1816 | {
1817 | "key": "B006J0SVWE",
1818 | "category": "camera",
1819 | "name": "Vivitar 20 MP Digital Camera with 1.8\" LCD, Colors and Style May Vary",
1820 | "seller": "Vivitar",
1821 | "wholePrice": "25",
1822 | "priceFraction": "99",
1823 | "stock": 17,
1824 | "star": 2,
1825 | "starCount": 4688,
1826 | "img": "https://images-na.ssl-images-amazon.com/images/I/417t7EUvLpL._AC_US218_.jpg",
1827 | "url": "https://www.amazon.com/Vivitar-Digital-Camera-Colors-Style/dp/B006J0SVWE/ref=sr_1_12?s=electronics&ie=UTF8&qid=1499124549&sr=1-12&keywords=camera",
1828 | "features": [
1829 | {
1830 | "description": "Display Size",
1831 | "value": "2.4 inches"
1832 | },
1833 | {
1834 | "description": "Display Type",
1835 | "value": "LCD"
1836 | },
1837 | {
1838 | "description": "Form Factor",
1839 | "value": "Compact"
1840 | }
1841 | ],
1842 | "price": 25.99,
1843 | "shipping": 7.99
1844 | },
1845 | {
1846 | "key": "B019UDHOMO",
1847 | "category": "camera",
1848 | "name": "Canon PowerShot ELPH 180 (Silver) with 20.0 MP CCD Sensor and 8x Optical Zoom",
1849 | "seller": "Canon",
1850 | "wholePrice": "119",
1851 | "priceFraction": "00",
1852 | "stock": 35,
1853 | "star": 4,
1854 | "starCount": 2898,
1855 | "img": "https://images-na.ssl-images-amazon.com/images/I/418Z3vJAlEL._AC_US218_.jpg",
1856 | "url": "https://www.amazon.com/Canon-PowerShot-Silver-Sensor-Optical/dp/B019UDHOMO/ref=sr_1_13?s=electronics&ie=UTF8&qid=1499124549&sr=1-13&keywords=camera",
1857 | "features": [
1858 | {
1859 | "description": "Display Size",
1860 | "value": "5 inches"
1861 | },
1862 | {
1863 | "description": "Hardware Interface",
1864 | "value": "audio video port"
1865 | },
1866 | {
1867 | "description": "Display Technology",
1868 | "value": "LCD"
1869 | },
1870 | {
1871 | "description": "Display Resolution Maximum",
1872 | "value": "1"
1873 | },
1874 | {
1875 | "description": "Display Type",
1876 | "value": "LCD"
1877 | }
1878 | ],
1879 | "price": 119,
1880 | "shipping": 7.99
1881 | },
1882 | {
1883 | "key": "B01M7V2FKC",
1884 | "category": "camera",
1885 | "name": "Mini Digital Camera,KINGEAR 2.7 inch TFT LCD HD Digital Camera(Black)",
1886 | "seller": "KINGEAR",
1887 | "wholePrice": "46",
1888 | "priceFraction": "99",
1889 | "stock": 29,
1890 | "star": 4,
1891 | "starCount": 1710,
1892 | "img": "https://images-na.ssl-images-amazon.com/images/I/51ILz01lxmL._AC_US218_.jpg",
1893 | "url": "https://www.amazon.com/Mini-Digital-Camera-KINGEAR-Black/dp/B01M7V2FKC/ref=sr_1_14?s=electronics&ie=UTF8&qid=1499124549&sr=1-14&keywords=camera",
1894 | "features": [],
1895 | "price": 46.99,
1896 | "shipping": 3.99
1897 | },
1898 | {
1899 | "key": "B071Z19L5T",
1900 | "category": "camera",
1901 | "name": "Nikon Coolpix L340 20.2 MP Digital Camera with 8GB memory card bundle (28x Optical Zoom, 3.0-Inch LCD, 720P Video, Black)",
1902 | "seller": "Nikon",
1903 | "wholePrice": "169",
1904 | "priceFraction": "99",
1905 | "stock": 99,
1906 | "star": 0,
1907 | "starCount": 1665,
1908 | "img": "https://images-na.ssl-images-amazon.com/images/I/417bGBOCqBL._AC_US218_.jpg",
1909 | "url": "https://www.amazon.com/Nikon-Coolpix-L340-Digital-3-0-Inch/dp/B071Z19L5T/ref=sr_1_15?s=electronics&ie=UTF8&qid=1499124549&sr=1-15&keywords=camera",
1910 | "features": [],
1911 | "price": 169.99,
1912 | "shipping": 3.99
1913 | },
1914 | {
1915 | "key": "B01N6NDHPY",
1916 | "category": "camera",
1917 | "name": "PowerLead PLDH17 2.7 Inch TFT 5X Optical Zoom 15MP 1280 X 720 HD Anti-shake Smile Capture Digital Video Camera(Gold)",
1918 | "seller": "PowerLead",
1919 | "wholePrice": "65",
1920 | "priceFraction": "99",
1921 | "stock": 34,
1922 | "star": 4,
1923 | "starCount": 3490,
1924 | "img": "https://images-na.ssl-images-amazon.com/images/I/41lDD9GODtL._AC_US218_.jpg",
1925 | "url": "https://www.amazon.com/PowerLead-Optical-Anti-shake-Capture-Digital/dp/B01N6NDHPY/ref=sr_1_16?s=electronics&ie=UTF8&qid=1499124549&sr=1-16&keywords=camera",
1926 | "features": [],
1927 | "price": 65.99,
1928 | "shipping": 3.99
1929 | },
1930 | {
1931 | "key": "B00THKEKEQ",
1932 | "category": "camera",
1933 | "name": "Nikon Coolpix L340 20.2 MP Digital Camera with 28x Optical Zoom and 3.0-Inch LCD (Black)",
1934 | "seller": "Nikon",
1935 | "wholePrice": "159",
1936 | "priceFraction": "95",
1937 | "stock": 91,
1938 | "star": 4,
1939 | "starCount": 2620,
1940 | "img": "https://images-na.ssl-images-amazon.com/images/I/41d0gUpd0eL._AC_US218_.jpg",
1941 | "url": "https://www.amazon.com/Nikon-Coolpix-Digital-Optical-3-0-Inch/dp/B00THKEKEQ/ref=sr_1_17?s=electronics&ie=UTF8&qid=1499124549&sr=1-17&keywords=camera",
1942 | "features": [
1943 | {
1944 | "description": "Display Size",
1945 | "value": "3 inches"
1946 | },
1947 | {
1948 | "description": "Hardware Interface",
1949 | "value": "audio video port"
1950 | },
1951 | {
1952 | "description": "Memory Storage Capacity",
1953 | "value": "74 MB"
1954 | },
1955 | {
1956 | "description": "Display Type",
1957 | "value": "TFT"
1958 | },
1959 | {
1960 | "description": "Form Factor",
1961 | "value": "Compact"
1962 | }
1963 | ],
1964 | "price": 159.95,
1965 | "shipping": 7.99
1966 | },
1967 | {
1968 | "key": "B01MQIFINS",
1969 | "category": "camera",
1970 | "name": "Canon EOS Rebel T6 DSLR Camera Bundle with Canon EF-S 18-55mm f/3.5-5.6 IS II Lens + 2pc SanDisk 32GB Memory Cards + Accessory Kit",
1971 | "seller": "Canon",
1972 | "wholePrice": "465",
1973 | "priceFraction": "00",
1974 | "stock": 11,
1975 | "star": 4,
1976 | "starCount": 492,
1977 | "img": "https://images-na.ssl-images-amazon.com/images/I/61j4LE9gOBL._AC_US218_.jpg",
1978 | "url": "https://www.amazon.com/Canon-18-55mm-3-5-5-6-SanDisk-Accessory/dp/B01MQIFINS/ref=sr_1_18?s=electronics&ie=UTF8&qid=1499124549&sr=1-18&keywords=camera",
1979 | "features": [],
1980 | "price": 465,
1981 | "shipping": 7.99
1982 | },
1983 | {
1984 | "key": "B01BMFXNQE",
1985 | "category": "camera",
1986 | "name": "iGadgitz PT310 Mini Lightweight Table Top Stand Tripod and Grip Stabilizer for Digital Camera, DSLR, Video Camera & Camcorder – Black",
1987 | "seller": "igadgitz",
1988 | "wholePrice": "15",
1989 | "priceFraction": "99",
1990 | "stock": 16,
1991 | "star": 4,
1992 | "starCount": 3033,
1993 | "img": "https://images-na.ssl-images-amazon.com/images/I/411OpNYTMeL._AC_US218_.jpg",
1994 | "url": "https://www.amazon.com/iGadgitz-Lightweight-Stabilizer-Digital-Camcorder/dp/B01BMFXNQE/ref=sr_1_19?s=electronics&ie=UTF8&qid=1499124549&sr=1-19&keywords=camera",
1995 | "features": [],
1996 | "price": 15.99,
1997 | "shipping": 0
1998 | },
1999 | {
2000 | "key": "B06XCMCFZW",
2001 | "category": "camera",
2002 | "name": "Digital Camera,KINGEAR 2.7 inch TFT LCD HD Digital Camera",
2003 | "seller": "KINGEAR",
2004 | "wholePrice": "43",
2005 | "priceFraction": "99",
2006 | "stock": 13,
2007 | "star": 4,
2008 | "starCount": 1587,
2009 | "img": "https://images-na.ssl-images-amazon.com/images/I/51OSpayWCLL._AC_US218_.jpg",
2010 | "url": "https://www.amazon.com/Digital-Camera-KINGEAR-2-7-inch/dp/B06XCMCFZW/ref=sr_1_20?s=electronics&ie=UTF8&qid=1499124549&sr=1-20&keywords=camera",
2011 | "features": [],
2012 | "price": 43.99,
2013 | "shipping": 3.99
2014 | },
2015 | {
2016 | "key": "B071G4XXZ4",
2017 | "category": "camera",
2018 | "name": "Btopllc On Dash Video Dash Cam Car Driving Video Recorder Camera 2.5 inch TFT LCD Screen USB Charging Vehicle Video Camera Loop Recording with Night Vision Car Dashboard Camera Recorder-Black",
2019 | "seller": "Btopllc",
2020 | "wholePrice": "18",
2021 | "priceFraction": "95",
2022 | "stock": 17,
2023 | "star": 4,
2024 | "starCount": 4025,
2025 | "img": "https://images-na.ssl-images-amazon.com/images/I/41JPzJ2V0RL._AC_US218_.jpg",
2026 | "url": "https://www.amazon.com/Btopllc-Recorder-Recording-Dashboard-Recorder-Black/dp/B071G4XXZ4/ref=sr_1_21?s=electronics&ie=UTF8&qid=1499124549&sr=1-21&keywords=camera",
2027 | "features": [],
2028 | "price": 18.95,
2029 | "shipping": 7.99
2030 | },
2031 | {
2032 | "key": "B00HE9G3UQ",
2033 | "category": "camera",
2034 | "name": "SGC-598 Photography Interview Shotgun MIC Microphone for Nikon Canon DSLR Camera (Need 3.5mm Interface)",
2035 | "seller": "TAKSTAR",
2036 | "wholePrice": "26",
2037 | "priceFraction": "90",
2038 | "stock": 45,
2039 | "star": 3,
2040 | "starCount": 1225,
2041 | "img": "https://images-na.ssl-images-amazon.com/images/I/51SRyF-I1aL._AC_US218_.jpg",
2042 | "url": "https://www.amazon.com/SGC-598-Photography-Interview-Microphone-Interface/dp/B00HE9G3UQ/ref=sr_1_22?s=electronics&ie=UTF8&qid=1499124549&sr=1-22&keywords=camera",
2043 | "features": [],
2044 | "price": 26.9,
2045 | "shipping": 3.99
2046 | },
2047 | {
2048 | "key": "B00I8BIBCW",
2049 | "category": "camera",
2050 | "name": "Sony DSCW800/B 20.1 MP Digital Camera (Black)",
2051 | "seller": "Sony",
2052 | "wholePrice": "89",
2053 | "priceFraction": "98",
2054 | "stock": 37,
2055 | "star": 3,
2056 | "starCount": 3326,
2057 | "img": "https://images-na.ssl-images-amazon.com/images/I/41Huy05eJiL._AC_US218_.jpg",
2058 | "url": "https://www.amazon.com/Sony-DSCW800-Digital-Camera-Black/dp/B00I8BIBCW/ref=sr_1_24?s=electronics&ie=UTF8&qid=1499124549&sr=1-24&keywords=camera",
2059 | "features": [
2060 | {
2061 | "description": "Display Size",
2062 | "value": "2.7 inches"
2063 | },
2064 | {
2065 | "description": "Display Fixture Type",
2066 | "value": "Fixed"
2067 | },
2068 | {
2069 | "description": "Display Resolution Maximum",
2070 | "value": "230000"
2071 | },
2072 | {
2073 | "description": "Memory Storage Capacity",
2074 | "value": "29 MB"
2075 | },
2076 | {
2077 | "description": "Display Type",
2078 | "value": "LCD"
2079 | }
2080 | ],
2081 | "price": 89.98,
2082 | "shipping": 3.99
2083 | },
2084 | {
2085 | "key": "B01MY0HQWS",
2086 | "category": "camera",
2087 | "name": "KINGEAR KG0016 2.7 Inch TFT 3X Optical Zoom 18MP 1280 X 720 Digital Video Camera",
2088 | "seller": "GordVE",
2089 | "wholePrice": "59",
2090 | "priceFraction": "89",
2091 | "stock": 97,
2092 | "star": 4,
2093 | "starCount": 2763,
2094 | "img": "https://images-na.ssl-images-amazon.com/images/I/413kYxodmNL._AC_US218_.jpg",
2095 | "url": "https://www.amazon.com/KINGEAR-KG0016-Optical-Digital-Camera/dp/B01MY0HQWS/ref=sr_1_25?s=electronics&ie=UTF8&qid=1499124549&sr=1-25&keywords=camera",
2096 | "features": [],
2097 | "price": 59.89,
2098 | "shipping": 7.99
2099 | },
2100 | {
2101 | "key": "B00RKNND2W",
2102 | "category": "camera",
2103 | "name": "Canon SX530 HS 9779B001 PowerShot",
2104 | "seller": "Canon",
2105 | "wholePrice": "249",
2106 | "priceFraction": "00",
2107 | "stock": 81,
2108 | "star": 4,
2109 | "starCount": 3147,
2110 | "img": "https://images-na.ssl-images-amazon.com/images/I/412kGjEHJjL._AC_US218_.jpg",
2111 | "url": "https://www.amazon.com/Canon-SX530-HS-9779B001-PowerShot/dp/B00RKNND2W/ref=sr_1_26?s=electronics&ie=UTF8&qid=1499124549&sr=1-26&keywords=camera",
2112 | "features": [
2113 | {
2114 | "description": "Display Size",
2115 | "value": "3 inches"
2116 | },
2117 | {
2118 | "description": "Display Fixture Type",
2119 | "value": "Fixed"
2120 | },
2121 | {
2122 | "description": "Hardware Interface",
2123 | "value": "audio video port"
2124 | },
2125 | {
2126 | "description": "Wireless Communication Technology",
2127 | "value": "Yes"
2128 | },
2129 | {
2130 | "description": "Display Resolution Maximum",
2131 | "value": "461000"
2132 | }
2133 | ],
2134 | "price": 249,
2135 | "shipping": 0
2136 | },
2137 | {
2138 | "key": "B06XGZB6P3",
2139 | "category": "camera",
2140 | "name": "Akaso EK7000 Ultra HD 4k WIFI 170 Degree Wide Waterproof Sports Action Camera Black + 32GB Outdoor Adventure Mounting Bundle",
2141 | "seller": "AKASO",
2142 | "wholePrice": "116",
2143 | "priceFraction": "33",
2144 | "stock": 31,
2145 | "star": 4,
2146 | "starCount": 4896,
2147 | "img": "https://images-na.ssl-images-amazon.com/images/I/51xBO1ijxWL._AC_US218_.jpg",
2148 | "url": "https://www.amazon.com/gp/slredirect/picassoRedirect.html/ref=pa_sp_btf_electronics_sr_pg1_1?ie=UTF8&adId=A0699155IZEFEU9092Y5&url=https%3A%2F%2Fwww.amazon.com%2FEK7000-Waterproof-Outdoor-Adventure-Mounting%2Fdp%2FB06XGZB6P3%2Fref%3Dsr_1_27%3Fs%3Delectronics%26ie%3DUTF8%26qid%3D1499124549%26sr%3D1-27-spons%26keywords%3Dcamera%26psc%3D1&qualifier=1499124549&id=8228299164163419&widgetName=sp_btf",
2149 | "features": [],
2150 | "price": 116.33,
2151 | "shipping": 0
2152 | },
2153 | {
2154 | "key": "B06XRTN893",
2155 | "category": "camera",
2156 | "name": "Video Camera Camcorder, incoSKY 1080P 24MP 16X Digital Zoom Camera with 2.7\" TFT LCD 270 Degree Rotation Screen, Black",
2157 | "seller": "incoSKY",
2158 | "wholePrice": "49",
2159 | "priceFraction": "99",
2160 | "stock": 96,
2161 | "star": 3,
2162 | "starCount": 4565,
2163 | "img": "https://images-na.ssl-images-amazon.com/images/I/41Ql6BycBCL._AC_US218_.jpg",
2164 | "url": "https://www.amazon.com/gp/slredirect/picassoRedirect.html/ref=pa_sp_btf_electronics_sr_pg1_2?ie=UTF8&adId=A1008791K1VQMNSWD4IF&url=https%3A%2F%2Fwww.amazon.com%2FCamera-Camcorder-incoSKY-Digital-Rotation%2Fdp%2FB06XRTN893%2Fref%3Dsr_1_28%3Fs%3Delectronics%26ie%3DUTF8%26qid%3D1499124549%26sr%3D1-28-spons%26keywords%3Dcamera%26psc%3D1&qualifier=1499124549&id=8228299164163419&widgetName=sp_btf",
2165 | "features": [
2166 | {
2167 | "description": "Display Size",
2168 | "value": "2.7 inches"
2169 | },
2170 | {
2171 | "description": "Form Factor",
2172 | "value": "rotating"
2173 | }
2174 | ],
2175 | "price": 49.99,
2176 | "shipping": 7.99
2177 | }
2178 | ]
--------------------------------------------------------------------------------
/src/fakeData/products.JSON:
--------------------------------------------------------------------------------
1 | [
2 | {
3 | "key": "B002RL8IYK",
4 | "category": "laptop",
5 | "name": "3M Gold Privacy Filter for 17\" Widescreen Laptop (16:10) (GF170W1B)",
6 | "seller": "3M",
7 | "wholePrice": "68",
8 | "priceFraction": "36",
9 | "stock": 36,
10 | "star": 3,
11 | "starCount": 3245,
12 | "img": "https://images-na.ssl-images-amazon.com/images/I/415oziPFA0L._AC_US218_.jpg",
13 | "url": "https://www.amazon.com/gp/slredirect/picassoRedirect.html/ref=pa_sp_atf_electronics_sr_pg1_1?ie=UTF8&adId=A03956601N6RBLKGAP4W1&url=https%3A%2F%2Fwww.amazon.com%2F3M-Privacy-Filter-Widescreen-Laptop%2Fdp%2FB002RL8IYK%2Fref%3Dsr_1_1%3Fs%3Delectronics%26ie%3DUTF8%26qid%3D1499124890%26sr%3D1-1-spons%26keywords%3Dlaptop%26psc%3D1&qualifier=1499124889&id=6267744216991374&widgetName=sp_atf",
14 | "features": [
15 | {
16 | "description": "Display Size",
17 | "value": "17 inches"
18 | },
19 | {
20 | "description": "Hardware Platform",
21 | "value": "PC"
22 | }
23 | ],
24 | "price": 68.36,
25 | "shipping": 7.99
26 | },
27 | {
28 | "key": "B01LZ2WZGH",
29 | "category": "laptop",
30 | "name": "Manfrotto MB LF-WN-BP camera & laptop backpack for DSLR Lifestyle Windsor, grey",
31 | "seller": "Manfrotto",
32 | "wholePrice": "169",
33 | "priceFraction": "88",
34 | "stock": 55,
35 | "star": 2,
36 | "starCount": 2899,
37 | "img": "https://images-na.ssl-images-amazon.com/images/I/51mEVhwXGKL._AC_US218_.jpg",
38 | "url": "https://www.amazon.com/gp/slredirect/picassoRedirect.html/ref=pa_sp_atf_electronics_sr_pg1_2?ie=UTF8&adId=A04941221ULRUNSJPY1RW&url=https%3A%2F%2Fwww.amazon.com%2FManfrotto-MB-LF-WN-BP-backpack-Lifestyle%2Fdp%2FB01LZ2WZGH%2Fref%3Dsr_1_2%3Fs%3Delectronics%26ie%3DUTF8%26qid%3D1499124890%26sr%3D1-2-spons%26keywords%3Dlaptop%26psc%3D1&qualifier=1499124889&id=6267744216991374&widgetName=sp_atf",
39 | "features": [],
40 | "price": 169.88,
41 | "shipping": 3.99
42 | },
43 | {
44 | "key": "B01K1IO3QW",
45 | "category": "laptop",
46 | "name": "Acer Aspire E 15 E5-575-33BM 15.6-Inch Full HD Notebook (Intel Core i3-7100U Processor 7th Generation , 4GB DDR4, 1TB 5400RPM Hard Drive, Intel HD Graphics 620, Windows 10 Home), Obsidian Black",
47 | "seller": "Acer",
48 | "wholePrice": "349",
49 | "priceFraction": "99",
50 | "stock": 3,
51 | "star": 3,
52 | "starCount": 3525,
53 | "img": "https://images-na.ssl-images-amazon.com/images/I/41HfDkXXyeL._AC_US218_.jpg",
54 | "url": "https://www.amazon.com/Acer-E5-575-33BM-15-6-Inch-Processor-Generation/dp/B01K1IO3QW/ref=sr_1_3?s=electronics&ie=UTF8&qid=1499124890&sr=1-3&keywords=laptop",
55 | "features": [
56 | {
57 | "description": "Display Size",
58 | "value": "15.6 inches"
59 | },
60 | {
61 | "description": "Computer Memory Size",
62 | "value": "4 GB"
63 | },
64 | {
65 | "description": "Operating System",
66 | "value": "Windows 10"
67 | },
68 | {
69 | "description": "Hard Disk Size",
70 | "value": "1000 GB"
71 | },
72 | {
73 | "description": "Cpu Model Family",
74 | "value": "core i3"
75 | }
76 | ],
77 | "price": 349.99,
78 | "shipping": 3.99
79 | },
80 | {
81 | "key": "B01LD4MGY4",
82 | "category": "laptop",
83 | "name": "Acer Aspire E 15 E5-575G-57D4 15.6-Inches Full HD Notebook (i5-7200U, 8GB DDR4 SDRAM, 256GB SSD, Windows 10 Home), Obsidian Black",
84 | "seller": "Acer",
85 | "wholePrice": "579",
86 | "priceFraction": "99",
87 | "stock": 49,
88 | "star": 4,
89 | "starCount": 4232,
90 | "img": "https://images-na.ssl-images-amazon.com/images/I/41HfDkXXyeL._AC_US218_.jpg",
91 | "url": "https://www.amazon.com/Acer-E5-575G-57D4-15-6-Inches-Notebook-i5-7200U/dp/B01LD4MGY4/ref=sr_1_4?s=electronics&ie=UTF8&qid=1499124890&sr=1-4&keywords=laptop",
92 | "features": [
93 | {
94 | "description": "Display Size",
95 | "value": "15.6 inches"
96 | },
97 | {
98 | "description": "Computer Memory Size",
99 | "value": "8 GB"
100 | },
101 | {
102 | "description": "Operating System",
103 | "value": "Windows 10"
104 | },
105 | {
106 | "description": "Cpu Model Family",
107 | "value": "core i5"
108 | },
109 | {
110 | "description": "Display Technology",
111 | "value": "LED-Lit"
112 | }
113 | ],
114 | "price": 579.99,
115 | "shipping": 7.99
116 | },
117 | {
118 | "key": "B01M18UZF5",
119 | "category": "laptop",
120 | "name": "ASUS ZenBook UX330UA-AH54 13.3-inch Ultra-Slim Laptop (Core i5 Processor, 8GB DDR3, 256GB SSD, Windows 10) With Harman Kardon Audio, Backlit keyboard, Fingerprint Reader",
121 | "seller": "Asus",
122 | "wholePrice": "699",
123 | "priceFraction": "00",
124 | "stock": 23,
125 | "star": 4,
126 | "starCount": 2457,
127 | "img": "https://images-na.ssl-images-amazon.com/images/I/417yCr3mvYL._AC_US218_.jpg",
128 | "url": "https://www.amazon.com/UX330UA-AH54-13-3-inch-Ultra-Slim-Processor-Fingerprint/dp/B01M18UZF5/ref=sr_1_5?s=electronics&ie=UTF8&qid=1499124890&sr=1-5&keywords=laptop",
129 | "features": [
130 | {
131 | "description": "Display Size",
132 | "value": "13.3 inches"
133 | },
134 | {
135 | "description": "Computer Memory Size",
136 | "value": "8 GB"
137 | },
138 | {
139 | "description": "Operating System",
140 | "value": "Windows 10"
141 | },
142 | {
143 | "description": "Hard Disk Size",
144 | "value": "256 GB"
145 | },
146 | {
147 | "description": "Cpu Model Family",
148 | "value": "core i5 7200u"
149 | }
150 | ],
151 | "price": 699,
152 | "shipping": 3.99
153 | },
154 | {
155 | "key": "B01DBGVB7K",
156 | "category": "laptop",
157 | "name": "ASUS Chromebook C202SA-YS02 11.6\" Ruggedized and Water Resistant Design with 180 Degree (Intel Celeron 4 GB, 16GB eMMC, Dark Blue)",
158 | "seller": "Asus",
159 | "wholePrice": 220,
160 | "priceFraction": 49,
161 | "stock": 54,
162 | "star": 4,
163 | "starCount": 2777,
164 | "img": "https://images-na.ssl-images-amazon.com/images/I/31inMpRxCFL._AC_US218_.jpg",
165 | "url": "https://www.amazon.com/Chromebook-C202SA-YS02-Ruggedized-Resistant-Celeron/dp/B01DBGVB7K/ref=sr_1_6?s=electronics&ie=UTF8&qid=1499124890&sr=1-6&keywords=laptop",
166 | "features": [
167 | {
168 | "description": "Display Size",
169 | "value": "11.6 inches"
170 | },
171 | {
172 | "description": "Computer Memory Size",
173 | "value": "4 GB"
174 | },
175 | {
176 | "description": "Operating System",
177 | "value": "Chrome"
178 | },
179 | {
180 | "description": "Hard Disk Size",
181 | "value": "16 GB"
182 | },
183 | {
184 | "description": "Cpu Model Family",
185 | "value": "celeron"
186 | }
187 | ],
188 | "price": 220.49,
189 | "shipping": 3.99
190 | },
191 | {
192 | "key": "B015WXL0C6",
193 | "category": "laptop",
194 | "name": "Apple MacBook Air 13.3-Inch Laptop (Intel Core i5 1.6GHz, 128GB Flash, 8GB RAM, OS X El Capitan)",
195 | "seller": "Apple",
196 | "wholePrice": "848",
197 | "priceFraction": "99",
198 | "stock": 22,
199 | "star": 4,
200 | "starCount": 2830,
201 | "img": "https://images-na.ssl-images-amazon.com/images/I/51GRACqhHbL._AC_US218_.jpg",
202 | "url": "https://www.amazon.com/Apple-MacBook-13-3-Inch-Laptop-Capitan/dp/B015WXL0C6/ref=sr_1_7?s=electronics&ie=UTF8&qid=1499124890&sr=1-7&keywords=laptop",
203 | "features": [
204 | {
205 | "description": "Display Size",
206 | "value": "13.3 inches"
207 | },
208 | {
209 | "description": "Computer Memory Size",
210 | "value": "8.0 GB"
211 | },
212 | {
213 | "description": "Operating System",
214 | "value": "Mac OS X"
215 | },
216 | {
217 | "description": "Hard Disk Size",
218 | "value": "128 GB"
219 | },
220 | {
221 | "description": "Cpu Model Family",
222 | "value": "core i5"
223 | }
224 | ],
225 | "price": 848.99,
226 | "shipping": 7.99
227 | },
228 | {
229 | "key": "B06Y4GZS9C",
230 | "category": "laptop",
231 | "name": "Acer Predator Helios 300 Gaming Laptop, Intel Core i7, GeForce GTX 1 060, 15.6\" Full HD, 16GB DDR4, 256GB SSD, G3-571-77QK",
232 | "seller": "Acer",
233 | "wholePrice": "1,049",
234 | "priceFraction": "99",
235 | "stock": 22,
236 | "star": 3,
237 | "starCount": 257,
238 | "img": "https://images-na.ssl-images-amazon.com/images/I/41v2oytxs9L._AC_US218_.jpg",
239 | "url": "https://www.amazon.com/Acer-Predator-Helios-GeForce-G3-571-77QK/dp/B06Y4GZS9C/ref=sr_1_8?s=electronics&ie=UTF8&qid=1499124890&sr=1-8&keywords=laptop",
240 | "features": [
241 | {
242 | "description": "Display Size",
243 | "value": "15.6 inches"
244 | },
245 | {
246 | "description": "Computer Memory Size",
247 | "value": "16 GB"
248 | },
249 | {
250 | "description": "Operating System",
251 | "value": "Windows 10 Home"
252 | },
253 | {
254 | "description": "Cpu Model Family",
255 | "value": "core i7"
256 | },
257 | {
258 | "description": "Cpu Model Manufacturer",
259 | "value": "Intel"
260 | }
261 | ],
262 | "price": 1,
263 | "shipping": 7.99
264 | },
265 | {
266 | "key": "B06XJJG4PD",
267 | "category": "laptop",
268 | "name": "ASUS P-Series P2540UA-AB51 business standard Laptop, 7th Gen Intel Core i5, 2.5GHz (3M Cache, up to 3.1GHz), FHD Display, 8GB RAM, 1TB HDD, Windows 10 Home, Fingerprint, TPM, 9hrs battery life",
269 | "seller": "Asus",
270 | "wholePrice": "499",
271 | "priceFraction": "00",
272 | "stock": 35,
273 | "star": 3,
274 | "starCount": 599,
275 | "img": "https://images-na.ssl-images-amazon.com/images/I/41PUHRFGpvL._AC_US218_.jpg",
276 | "url": "https://www.amazon.com/P2540UA-AB51-business-standard-Display-Fingerprint/dp/B06XJJG4PD/ref=sr_1_9?s=electronics&ie=UTF8&qid=1499124890&sr=1-9&keywords=laptop",
277 | "features": [
278 | {
279 | "description": "Display Size",
280 | "value": "15.6 inches"
281 | },
282 | {
283 | "description": "Computer Memory Size",
284 | "value": "8 GB"
285 | },
286 | {
287 | "description": "Operating System",
288 | "value": "Windows 10"
289 | },
290 | {
291 | "description": "Hard Disk Size",
292 | "value": "1000 GB"
293 | },
294 | {
295 | "description": "Cpu Model Family",
296 | "value": "core i5 7200u"
297 | }
298 | ],
299 | "price": 499,
300 | "shipping": 7.99
301 | },
302 | {
303 | "key": "B01NBE6Y5D",
304 | "category": "laptop",
305 | "name": "HP 15.6\" HD WLED Backlit Display Laptop, AMD A6-7310 Quad-Core APU 2GHz, 4GB RAM, 500GB HDD WiFi, DVD+/-RW, Webcam, Windows 10, Black",
306 | "seller": "HP",
307 | "wholePrice": "247",
308 | "priceFraction": "98",
309 | "stock": 74,
310 | "star": 3,
311 | "starCount": 4293,
312 | "img": "https://images-na.ssl-images-amazon.com/images/I/51-2Z4ZWimL._AC_US218_.jpg",
313 | "url": "https://www.amazon.com/HP-Backlit-Display-A6-7310-Quad-Core/dp/B01NBE6Y5D/ref=sr_1_10?s=electronics&ie=UTF8&qid=1499124890&sr=1-10&keywords=laptop",
314 | "features": [
315 | {
316 | "description": "Display Size",
317 | "value": "15.6 inches"
318 | },
319 | {
320 | "description": "Computer Memory Size",
321 | "value": "4.0 GB"
322 | },
323 | {
324 | "description": "Operating System",
325 | "value": "Windows 10"
326 | },
327 | {
328 | "description": "Hard Disk Size",
329 | "value": "500.0 GB"
330 | },
331 | {
332 | "description": "Cpu Model Family",
333 | "value": "amd a series"
334 | }
335 | ],
336 | "price": 247.98,
337 | "shipping": 7.99
338 | },
339 | {
340 | "key": "B01J42JPJG",
341 | "category": "laptop",
342 | "name": "Acer Chromebook R 11 Convertible, 11.6-Inch HD Touch, Intel Celeron N3150, 4GB DDR3L, 32GB, Chrome, CB5-132T-C1LK",
343 | "seller": "Acer",
344 | "wholePrice": "279",
345 | "priceFraction": "99",
346 | "stock": 19,
347 | "star": 4,
348 | "starCount": 4646,
349 | "img": "https://images-na.ssl-images-amazon.com/images/I/51xMqkFZ+RL._AC_US218_.jpg",
350 | "url": "https://www.amazon.com/Acer-Chromebook-Convertible-11-6-Inch-CB5-132T-C1LK/dp/B01J42JPJG/ref=sr_1_11?s=electronics&ie=UTF8&qid=1499124890&sr=1-11&keywords=laptop",
351 | "features": [
352 | {
353 | "description": "Display Size",
354 | "value": "11.6 inches"
355 | },
356 | {
357 | "description": "Computer Memory Size",
358 | "value": "4 GB"
359 | },
360 | {
361 | "description": "Operating System",
362 | "value": "Chrome"
363 | },
364 | {
365 | "description": "Hard Disk Size",
366 | "value": "32 GB"
367 | },
368 | {
369 | "description": "Cpu Model Family",
370 | "value": "celeron"
371 | }
372 | ],
373 | "price": 279.99,
374 | "shipping": 3.99
375 | },
376 | {
377 | "key": "B01F4ZG68A",
378 | "category": "laptop",
379 | "name": "HP 14-inch Laptop, AMD E2-7110, 4GB RAM, 32GB eMMC, Windows 10 (14-an013nr, Silver)",
380 | "seller": "HP",
381 | "wholePrice": "212",
382 | "priceFraction": "33",
383 | "stock": 33,
384 | "star": 3,
385 | "starCount": 2066,
386 | "img": "https://images-na.ssl-images-amazon.com/images/I/414egKO4O3L._AC_US218_.jpg",
387 | "url": "https://www.amazon.com/HP-14-inch-E2-7110-Windows-14-an013nr/dp/B01F4ZG68A/ref=sr_1_13?s=electronics&ie=UTF8&qid=1499124890&sr=1-13&keywords=laptop",
388 | "features": [
389 | {
390 | "description": "Display Size",
391 | "value": "14 inches"
392 | },
393 | {
394 | "description": "Computer Memory Size",
395 | "value": "4 GB"
396 | },
397 | {
398 | "description": "Operating System",
399 | "value": "Windows 10 Home"
400 | },
401 | {
402 | "description": "Hard Disk Size",
403 | "value": "32 GB"
404 | },
405 | {
406 | "description": "Cpu Model Family",
407 | "value": "e2 7110"
408 | }
409 | ],
410 | "price": 212.33,
411 | "shipping": 7.99
412 | },
413 | {
414 | "key": "B01D27ERMO",
415 | "category": "laptop",
416 | "name": "Dell Inspiron Flagship 15.6-Inch FHD Touchscreen Backlit Keyboard Laptop PC (Intel Core i5-6200U, 8GB RAM, 1TB HDD, RealSense 3D Camera, DVD +/- RW, Bluetooth, Windows 10), Silver",
417 | "seller": "Dell",
418 | "wholePrice": "498",
419 | "priceFraction": "94",
420 | "stock": 14,
421 | "star": 3,
422 | "starCount": 3141,
423 | "img": "https://images-na.ssl-images-amazon.com/images/I/51xk4birT2L._AC_US218_.jpg",
424 | "url": "https://www.amazon.com/Dell-15-6-Inch-Touchscreen-RealSense-Bluetooth/dp/B01D27ERMO/ref=sr_1_14?s=electronics&ie=UTF8&qid=1499124890&sr=1-14&keywords=laptop",
425 | "features": [
426 | {
427 | "description": "Display Size",
428 | "value": "15.6 inches"
429 | },
430 | {
431 | "description": "Computer Memory Size",
432 | "value": "8.0 GB"
433 | },
434 | {
435 | "description": "Operating System",
436 | "value": "Windows 10"
437 | },
438 | {
439 | "description": "Hard Disk Size",
440 | "value": "1.0 TB"
441 | },
442 | {
443 | "description": "Cpu Model Family",
444 | "value": "core i5"
445 | }
446 | ],
447 | "price": 498.94,
448 | "shipping": 3.99
449 | },
450 | {
451 | "key": "B06X6J2RLY",
452 | "category": "laptop",
453 | "name": "HP 15.6-Inch HD Touchscreen Laptop (Intel Quad Core Pentium N3540 2.16 GHz, 4GB DDR3L-1600 Memory, 500 GB HDD, DVD Burner, HDMI, HD Webcam, Win 10)",
454 | "seller": "HP",
455 | "wholePrice": "287",
456 | "priceFraction": "94",
457 | "stock": 85,
458 | "star": 4,
459 | "starCount": 149,
460 | "img": "https://images-na.ssl-images-amazon.com/images/I/416UTZJ0FbL._AC_US218_.jpg",
461 | "url": "https://www.amazon.com/HP-15-6-Inch-Touchscreen-Pentium-DDR3L-1600/dp/B06X6J2RLY/ref=sr_1_15?s=electronics&ie=UTF8&qid=1499124890&sr=1-15&keywords=laptop",
462 | "features": [
463 | {
464 | "description": "Display Size",
465 | "value": "15.6 inches"
466 | },
467 | {
468 | "description": "Computer Memory Size",
469 | "value": "4.0 GB"
470 | },
471 | {
472 | "description": "Operating System",
473 | "value": "Windows 10"
474 | },
475 | {
476 | "description": "Hard Disk Size",
477 | "value": "500.0 GB"
478 | },
479 | {
480 | "description": "Cpu Model Family",
481 | "value": "pentium"
482 | }
483 | ],
484 | "price": 287.94,
485 | "shipping": 7.99
486 | },
487 | {
488 | "key": "B01N5G5PG2",
489 | "category": "laptop",
490 | "name": "ASUS Chromebook Flip C302CA-DHM4 12.5-Inch Touchscreen Intel Core m3 with 64GB storage and 4GB RAM",
491 | "seller": "Asus",
492 | "wholePrice": "499",
493 | "priceFraction": "00",
494 | "stock": 52,
495 | "star": 4,
496 | "starCount": 1146,
497 | "img": "https://images-na.ssl-images-amazon.com/images/I/41LBkDN-S3L._AC_US218_.jpg",
498 | "url": "https://www.amazon.com/Chromebook-C302CA-DHM4-12-5-Inch-Touchscreen-storage/dp/B01N5G5PG2/ref=sr_1_16?s=electronics&ie=UTF8&qid=1499124890&sr=1-16&keywords=laptop",
499 | "features": [
500 | {
501 | "description": "Display Size",
502 | "value": "12.5 inches"
503 | },
504 | {
505 | "description": "Computer Memory Size",
506 | "value": "4 GB"
507 | },
508 | {
509 | "description": "Operating System",
510 | "value": "Chrome"
511 | },
512 | {
513 | "description": "Hard Disk Size",
514 | "value": "64 GB"
515 | },
516 | {
517 | "description": "Cpu Model Family",
518 | "value": "core m"
519 | }
520 | ],
521 | "price": 499,
522 | "shipping": 0
523 | },
524 | {
525 | "key": "B01LZ6XKS6",
526 | "category": "laptop",
527 | "name": "Samsung Chromebook Plus Convertible Touch Laptop (XE513C24-K01US)",
528 | "seller": "Samsung",
529 | "wholePrice": "408",
530 | "priceFraction": "45",
531 | "stock": 96,
532 | "star": 4,
533 | "starCount": 3742,
534 | "img": "https://images-na.ssl-images-amazon.com/images/I/41Ux4186xoL._AC_US218_.jpg",
535 | "url": "https://www.amazon.com/Samsung-Chromebook-Convertible-Laptop-XE513C24-K01US/dp/B01LZ6XKS6/ref=sr_1_17?s=electronics&ie=UTF8&qid=1499124890&sr=1-17&keywords=laptop",
536 | "features": [
537 | {
538 | "description": "Display Size",
539 | "value": "12.3 inches"
540 | },
541 | {
542 | "description": "Computer Memory Size",
543 | "value": "4 GB"
544 | },
545 | {
546 | "description": "Operating System",
547 | "value": "Chrome"
548 | },
549 | {
550 | "description": "Hard Disk Size",
551 | "value": "32 GB"
552 | },
553 | {
554 | "description": "Connectivity Technology",
555 | "value": "wireless"
556 | }
557 | ],
558 | "price": 408.45,
559 | "shipping": 3.99
560 | },
561 | {
562 | "key": "B06XFGF7SN",
563 | "category": "laptop",
564 | "name": "Dell Inspiron 15.6\" Gaming Laptop (7th Gen Intel Core i7, 8 GB RAM, 1000 GB HDD + 128GB SSD), NVIDIA GTX 1050) (i5577-7359BLK-PUS)",
565 | "seller": "Dell",
566 | "wholePrice": "899",
567 | "priceFraction": "99",
568 | "stock": 57,
569 | "star": 3,
570 | "starCount": 3972,
571 | "img": "https://images-na.ssl-images-amazon.com/images/I/41zfabBnrLL._AC_US218_.jpg",
572 | "url": "https://www.amazon.com/Dell-Inspiron-Gaming-Laptop-i5577-7359BLK-PUS/dp/B06XFGF7SN/ref=sr_1_18?s=electronics&ie=UTF8&qid=1499124890&sr=1-18&keywords=laptop",
573 | "features": [
574 | {
575 | "description": "Display Size",
576 | "value": "15.6 inches"
577 | },
578 | {
579 | "description": "Computer Memory Size",
580 | "value": "8 GB"
581 | },
582 | {
583 | "description": "Operating System",
584 | "value": "Windows 10 Home 64-bit English"
585 | },
586 | {
587 | "description": "Hard Disk Size",
588 | "value": "1000 GB"
589 | },
590 | {
591 | "description": "Cpu Model Family",
592 | "value": "core i5 6300hq"
593 | }
594 | ],
595 | "price": 899.99,
596 | "shipping": 3.99
597 | },
598 | {
599 | "key": "B01LT692RK",
600 | "category": "laptop",
601 | "name": "ASUS E200HA Portable Lightweight 11.6-inch Intel Quad-Core Laptop, 4GB RAM, 32GB Storage, Windows 10 with 1 Year Microsoft Office 365 Subscription",
602 | "seller": "Asus",
603 | "wholePrice": "199",
604 | "priceFraction": "00",
605 | "stock": 41,
606 | "star": 3,
607 | "starCount": 4074,
608 | "img": "https://images-na.ssl-images-amazon.com/images/I/51zIMkOI70L._AC_US218_.jpg",
609 | "url": "https://www.amazon.com/Lightweight-11-6-inch-Quad-Core-Microsoft-Subscription/dp/B01LT692RK/ref=sr_1_19?s=electronics&ie=UTF8&qid=1499124890&sr=1-19&keywords=laptop",
610 | "features": [
611 | {
612 | "description": "Display Size",
613 | "value": "11.6 inches"
614 | },
615 | {
616 | "description": "Computer Memory Size",
617 | "value": "4 GB"
618 | },
619 | {
620 | "description": "Operating System",
621 | "value": "Windows 10"
622 | },
623 | {
624 | "description": "Hard Disk Size",
625 | "value": "32 GB"
626 | },
627 | {
628 | "description": "Cpu Model Family",
629 | "value": "intel atom"
630 | }
631 | ],
632 | "price": 199,
633 | "shipping": 3.99
634 | },
635 | {
636 | "key": "B071LB1GG4",
637 | "category": "laptop",
638 | "name": "Samsung XE510C24-K01US Chromebook Pro",
639 | "seller": "Samsung",
640 | "wholePrice": "549",
641 | "priceFraction": "99",
642 | "stock": 91,
643 | "star": 4,
644 | "starCount": 1157,
645 | "img": "https://images-na.ssl-images-amazon.com/images/I/41QCsi3gCrL._AC_US218_.jpg",
646 | "url": "https://www.amazon.com/Samsung-XE510C24-K01US-Chromebook-Pro/dp/B071LB1GG4/ref=sr_1_20?s=electronics&ie=UTF8&qid=1499124890&sr=1-20&keywords=laptop",
647 | "features": [
648 | {
649 | "description": "Display Size",
650 | "value": "12.3 inches"
651 | },
652 | {
653 | "description": "Computer Memory Size",
654 | "value": "4 GB"
655 | },
656 | {
657 | "description": "Operating System",
658 | "value": "Chrome"
659 | },
660 | {
661 | "description": "Connectivity Technology",
662 | "value": "wireless"
663 | },
664 | {
665 | "description": "Hardware Platform",
666 | "value": "Chrome"
667 | }
668 | ],
669 | "price": 549.99,
670 | "shipping": 0
671 | },
672 | {
673 | "key": "B01CVOLVPA",
674 | "category": "laptop",
675 | "name": "Acer Chromebook 14, Aluminum, 14-inch Full HD, Intel Celeron Quad-Core N3160, 4GB LPDDR3, 32GB, Chrome, CB3-431-C5FM",
676 | "seller": "Acer",
677 | "wholePrice": "294",
678 | "priceFraction": "98",
679 | "stock": 57,
680 | "star": 4,
681 | "starCount": 678,
682 | "img": "https://images-na.ssl-images-amazon.com/images/I/518PvURfFsL._AC_US218_.jpg",
683 | "url": "https://www.amazon.com/Acer-Chromebook-Aluminum-Quad-Core-CB3-431-C5FM/dp/B01CVOLVPA/ref=sr_1_21?s=electronics&ie=UTF8&qid=1499124890&sr=1-21&keywords=laptop",
684 | "features": [
685 | {
686 | "description": "Display Size",
687 | "value": "14 inches"
688 | },
689 | {
690 | "description": "Computer Memory Size",
691 | "value": "4 GB"
692 | },
693 | {
694 | "description": "Operating System",
695 | "value": "Chrome"
696 | },
697 | {
698 | "description": "Hard Disk Size",
699 | "value": "32 GB"
700 | },
701 | {
702 | "description": "Cpu Model Family",
703 | "value": "celeron"
704 | }
705 | ],
706 | "price": 294.98,
707 | "shipping": 7.99
708 | },
709 | {
710 | "key": "B01EIUOSRS",
711 | "category": "laptop",
712 | "name": "Apple MMGF2LL/A MacBook Air 13.3-Inch Laptop (8GB RAM 128 GB SSD) MMGF2",
713 | "seller": "Apple",
714 | "wholePrice": "799",
715 | "priceFraction": "99",
716 | "stock": 51,
717 | "star": 4,
718 | "starCount": 3295,
719 | "img": "https://images-na.ssl-images-amazon.com/images/I/41AerRC5u6L._AC_US218_.jpg",
720 | "url": "https://www.amazon.com/Apple-MMGF2LL-MacBook-13-3-Inch-Laptop/dp/B01EIUOSRS/ref=sr_1_22?s=electronics&ie=UTF8&qid=1499124890&sr=1-22&keywords=laptop",
721 | "features": [
722 | {
723 | "description": "Display Size",
724 | "value": "13.3 inches"
725 | },
726 | {
727 | "description": "Computer Memory Size",
728 | "value": "8 GB"
729 | },
730 | {
731 | "description": "Operating System",
732 | "value": "Mac OS X"
733 | },
734 | {
735 | "description": "Hard Disk Size",
736 | "value": "128 GB"
737 | },
738 | {
739 | "description": "Cpu Model Family",
740 | "value": "core i5"
741 | }
742 | ],
743 | "price": 799.99,
744 | "shipping": 7.99
745 | },
746 | {
747 | "key": "B01JLCKP34",
748 | "category": "laptop",
749 | "name": "HP Stream Laptop PC 14-ax010nr (Intel Celeron N3060, 4 GB RAM, 32 GB eMMC) with Office 365 Personal for one year",
750 | "seller": "HP",
751 | "wholePrice": "219",
752 | "priceFraction": "99",
753 | "stock": 62,
754 | "star": 3,
755 | "starCount": 2286,
756 | "img": "https://images-na.ssl-images-amazon.com/images/I/51h+5rcpStL._AC_US218_.jpg",
757 | "url": "https://www.amazon.com/HP-Stream-14-ax010nr-Celeron-Personal/dp/B01JLCKP34/ref=sr_1_23?s=electronics&ie=UTF8&qid=1499124890&sr=1-23&keywords=laptop",
758 | "features": [
759 | {
760 | "description": "Display Size",
761 | "value": "14 inches"
762 | },
763 | {
764 | "description": "Computer Memory Size",
765 | "value": "4 GB"
766 | },
767 | {
768 | "description": "Operating System",
769 | "value": "Windows 10"
770 | },
771 | {
772 | "description": "Hard Disk Size",
773 | "value": "32 GB"
774 | },
775 | {
776 | "description": "Cpu Model Family",
777 | "value": "celeron"
778 | }
779 | ],
780 | "price": 219.99,
781 | "shipping": 7.99
782 | },
783 | {
784 | "key": "B071SF41Y9",
785 | "category": "laptop",
786 | "name": "Microsoft Surface Pro (Intel Core i5, 8GB RAM, 256GB)",
787 | "seller": "Microsoft",
788 | "wholePrice": "1,294",
789 | "priceFraction": "99",
790 | "stock": 99,
791 | "star": 3,
792 | "starCount": 461,
793 | "img": "https://images-na.ssl-images-amazon.com/images/I/418g6Q3eTHL._AC_US218_.jpg",
794 | "url": "https://www.amazon.com/Microsoft-Surface-Intel-Core-256GB/dp/B071SF41Y9/ref=sr_1_25?s=electronics&ie=UTF8&qid=1499124890&sr=1-25&keywords=laptop",
795 | "features": [
796 | {
797 | "description": "Display Size",
798 | "value": "12.3 inches"
799 | },
800 | {
801 | "description": "Computer Memory Size",
802 | "value": "8 GB"
803 | },
804 | {
805 | "description": "Operating System",
806 | "value": "Windows 10 Pro"
807 | },
808 | {
809 | "description": "Cpu Model Family",
810 | "value": "8032"
811 | },
812 | {
813 | "description": "Display Technology",
814 | "value": "LCD"
815 | }
816 | ],
817 | "price": 1,
818 | "shipping": 7.99
819 | },
820 | {
821 | "key": "B01N5P6TJW",
822 | "category": "laptop",
823 | "name": "Samsung Chromebook 3, 11.6\", 4GB RAM, 16GB eMMC, Chromebook (XE500C13-K04US)",
824 | "seller": "Samsung",
825 | "wholePrice": "169",
826 | "priceFraction": "00",
827 | "stock": 36,
828 | "star": 3,
829 | "starCount": 2527,
830 | "img": "https://images-na.ssl-images-amazon.com/images/I/41XCWymAVaL._AC_US218_.jpg",
831 | "url": "https://www.amazon.com/Samsung-Chromebook-11-6-16GB-XE500C13-K04US/dp/B01N5P6TJW/ref=sr_1_26?s=electronics&ie=UTF8&qid=1499124890&sr=1-26&keywords=laptop",
832 | "features": [
833 | {
834 | "description": "Display Size",
835 | "value": "11.6 inches"
836 | },
837 | {
838 | "description": "Computer Memory Size",
839 | "value": "4 GB"
840 | },
841 | {
842 | "description": "Operating System",
843 | "value": "Chrome OS"
844 | },
845 | {
846 | "description": "Hard Disk Size",
847 | "value": "16 GB"
848 | },
849 | {
850 | "description": "Cpu Model Family",
851 | "value": "8032"
852 | }
853 | ],
854 | "price": 169,
855 | "shipping": 7.99
856 | },
857 | {
858 | "key": "B01M8J68W0",
859 | "category": "laptop",
860 | "name": "Kayond Bule Rose Pattern 12-13 inch Canvas laptop sleeve with pocket 12.5inch 13.3 inch laptop case macbook air 13 case macbook pro 13 sleeve",
861 | "seller": "kayond",
862 | "wholePrice": "11",
863 | "priceFraction": "99",
864 | "stock": 86,
865 | "star": 4,
866 | "starCount": 2359,
867 | "img": "https://images-na.ssl-images-amazon.com/images/I/51zDiHyaE1L._AC_US218_.jpg",
868 | "url": "https://www.amazon.com/gp/slredirect/picassoRedirect.html/ref=pa_sp_btf_electronics_sr_pg1_1?ie=UTF8&adId=A03286941HBVHVI1MCDYH&url=https%3A%2F%2Fwww.amazon.com%2FKayond-Pattern-Canvas-12-5inch-macbook%2Fdp%2FB01M8J68W0%2Fref%3Dsr_1_27%3Fs%3Delectronics%26ie%3DUTF8%26qid%3D1499124890%26sr%3D1-27-spons%26keywords%3Dlaptop%26psc%3D1&qualifier=1499124889&id=6267744216991374&widgetName=sp_btf",
869 | "features": [],
870 | "price": 11.99,
871 | "shipping": 3.99
872 | },
873 | {
874 | "key": "B072TY6LZL",
875 | "category": "laptop",
876 | "name": "Microsoft Surface Laptop 13.5 inch Screen Protector, Megoo Premium [Tempered Glass] Anti-scratch bubble free Screen Protector for Microsoft Surface Laptop (2017 Release)",
877 | "seller": "Megoo",
878 | "wholePrice": "17",
879 | "priceFraction": "77",
880 | "stock": 75,
881 | "star": 0,
882 | "starCount": 3019,
883 | "img": "https://images-na.ssl-images-amazon.com/images/I/51YGz9inR9L._AC_US218_.jpg",
884 | "url": "https://www.amazon.com/gp/slredirect/picassoRedirect.html/ref=pa_sp_btf_electronics_sr_pg1_2?ie=UTF8&adId=A08835611S2XQ8K5PH7WW&url=https%3A%2F%2Fwww.amazon.com%2FMicrosoft-Protector-Megoo-Tempered-Anti-scratch%2Fdp%2FB072TY6LZL%2Fref%3Dsr_1_28%3Fs%3Delectronics%26ie%3DUTF8%26qid%3D1499124890%26sr%3D1-28-spons%26keywords%3Dlaptop%26psc%3D1&qualifier=1499124889&id=6267744216991374&widgetName=sp_btf",
885 | "features": [],
886 | "price": 17.77,
887 | "shipping": 3.99
888 | },
889 | {
890 | "key": "B00OSTKZWM",
891 | "category": "android",
892 | "name": "RCA M1 4.0 Unlocked Cell Phone, Dual SIM, 5MP Camera, Android 4.4, 1.3GHz (White)",
893 | "seller": "RCA",
894 | "wholePrice": "57",
895 | "priceFraction": "99",
896 | "stock": 96,
897 | "star": 3,
898 | "starCount": 620,
899 | "img": "https://images-na.ssl-images-amazon.com/images/I/51VCP05020L._AC_US218_.jpg",
900 | "url": "https://www.amazon.com/gp/slredirect/picassoRedirect.html/ref=pa_sp_atf_electronics_sr_pg1_1?ie=UTF8&adId=A03332262DHW9SCX1W5WM&url=https%3A%2F%2Fwww.amazon.com%2FRCA-M1-Unlocked-Camera-Android%2Fdp%2FB00OSTKZWM%2Fref%3Dsr_1_1%3Fs%3Delectronics%26ie%3DUTF8%26qid%3D1499124826%26sr%3D1-1-spons%26keywords%3Dandroid%26psc%3D1&qualifier=1499124825&id=1141793968325395&widgetName=sp_atf",
901 | "features": [
902 | {
903 | "description": "Display Size",
904 | "value": "4.0 inches"
905 | },
906 | {
907 | "description": "Computer Memory Size",
908 | "value": "4 GB"
909 | },
910 | {
911 | "description": "Operating System",
912 | "value": "Android"
913 | },
914 | {
915 | "description": "Cpu Model Speed",
916 | "value": "1.3 GHz"
917 | },
918 | {
919 | "description": "Special Feature",
920 | "value": "smartphone"
921 | }
922 | ],
923 | "price": 57.99,
924 | "shipping": 3.99
925 | },
926 | {
927 | "key": "B01H2E0J5M",
928 | "category": "android",
929 | "name": "BLU R1 HD - 16 GB - Black - Prime Exclusive - with Lockscreen Offers & Ads",
930 | "seller": "BLU",
931 | "wholePrice": "59",
932 | "priceFraction": "99",
933 | "stock": 5,
934 | "star": 3,
935 | "starCount": 2318,
936 | "img": "https://images-na.ssl-images-amazon.com/images/I/416TS-ODxfL._AC_US218_.jpg",
937 | "url": "https://www.amazon.com/BLU-R1-HD-Exclusive-Lockscreen/dp/B01H2E0J5M/ref=sr_1_2?s=electronics&ie=UTF8&qid=1499124822&sr=1-2&keywords=android",
938 | "features": [
939 | {
940 | "description": "Display Size",
941 | "value": "5.0 inches"
942 | },
943 | {
944 | "description": "Computer Memory Size",
945 | "value": "16 GB"
946 | },
947 | {
948 | "description": "Operating System",
949 | "value": "Android 6.0 Marshmallow"
950 | },
951 | {
952 | "description": "Display Type",
953 | "value": "LCD"
954 | },
955 | {
956 | "description": "Special Feature",
957 | "value": "card slots"
958 | }
959 | ],
960 | "price": 59.99,
961 | "shipping": 7.99
962 | },
963 | {
964 | "key": "B0713WPJKX",
965 | "category": "android",
966 | "name": "Celltronics Micro USB Cable,10FT Nylon Braided Tangle-free Data Sync Heavy Duty Android Charging Cable Power Cord High Speed USB2.0 for Samsung HTC LG MP3 Bluetooth Speaker-3 Pack",
967 | "seller": "Cell-Tronics",
968 | "wholePrice": "10",
969 | "priceFraction": "99",
970 | "stock": 87,
971 | "star": 4,
972 | "starCount": 3392,
973 | "img": "https://images-na.ssl-images-amazon.com/images/I/61+-qmTKy8L._AC_US218_.jpg",
974 | "url": "https://www.amazon.com/Celltronics-Tangle-free-Charging-Bluetooth-Speaker-3/dp/B0713WPJKX/ref=sr_1_3?s=electronics&ie=UTF8&qid=1499124822&sr=1-3&keywords=android",
975 | "features": [],
976 | "price": 10.99,
977 | "shipping": 3.99
978 | },
979 | {
980 | "key": "B01LPZD1N6",
981 | "category": "android",
982 | "name": "ATOTO 7\"HD Touchscreen 2Din Android Car Navigation Stereo - Quadcore Car Entertainment Multimedia w/ FM/RDS Radio,WIFI,BT,Mirror Link,and more(No DVD Player)M4171 (178101/16G)",
983 | "seller": "ATOTO",
984 | "wholePrice": "164",
985 | "priceFraction": "90",
986 | "stock": 20,
987 | "star": 3,
988 | "starCount": 4029,
989 | "img": "https://images-na.ssl-images-amazon.com/images/I/51xI8gJTNYL._AC_US218_.jpg",
990 | "url": "https://www.amazon.com/ATOTO-Touchscreen-Android-Navigation-Stereo/dp/B01LPZD1N6/ref=sr_1_4?s=electronics&ie=UTF8&qid=1499124822&sr=1-4&keywords=android",
991 | "features": [
992 | {
993 | "description": "Display Size",
994 | "value": "7.0 inches"
995 | },
996 | {
997 | "description": "Operating System",
998 | "value": "Android"
999 | },
1000 | {
1001 | "description": "Hardware Platform",
1002 | "value": "Android"
1003 | },
1004 | {
1005 | "description": "Cpu Model Manufacturer",
1006 | "value": "MTK"
1007 | },
1008 | {
1009 | "description": "Wireless Communication Technology",
1010 | "value": "AM/FM"
1011 | }
1012 | ],
1013 | "price": 164.9,
1014 | "shipping": 0
1015 | },
1016 | {
1017 | "key": "B01N1SE4EP",
1018 | "category": "android",
1019 | "name": "NeuTab 7 inch Quad Core Android 5.1 Lollipop Tablet PC, Bluetooth 4.0, Dual Camera, FCC Certified(2017 Upgraded Edition)",
1020 | "seller": "NeuTab",
1021 | "wholePrice": "49",
1022 | "priceFraction": "99",
1023 | "stock": 50,
1024 | "star": 3,
1025 | "starCount": 4947,
1026 | "img": "https://images-na.ssl-images-amazon.com/images/I/41HNbRSKpfL._AC_US218_.jpg",
1027 | "url": "https://www.amazon.com/NeuTab-Lollipop-Bluetooth-Certified-Upgraded/dp/B01N1SE4EP/ref=sr_1_5?s=electronics&ie=UTF8&qid=1499124822&sr=1-5&keywords=android",
1028 | "features": [
1029 | {
1030 | "description": "Display Size",
1031 | "value": "7.0 inches"
1032 | },
1033 | {
1034 | "description": "Operating System",
1035 | "value": "android 5.1 (Lollipop)"
1036 | },
1037 | {
1038 | "description": "Hard Disk Size",
1039 | "value": "8.0 GB"
1040 | },
1041 | {
1042 | "description": "Connectivity Technology",
1043 | "value": "usb"
1044 | },
1045 | {
1046 | "description": "System Ram Type",
1047 | "value": "ddr3 sdram"
1048 | }
1049 | ],
1050 | "price": 49.99,
1051 | "shipping": 7.99
1052 | },
1053 | {
1054 | "key": "B017LDNLIG",
1055 | "category": "android",
1056 | "name": "Tracfone Alcatel Onetouch Pixi Glitz A463BG",
1057 | "seller": "Tracfone",
1058 | "wholePrice": "19",
1059 | "priceFraction": "94",
1060 | "stock": 85,
1061 | "star": 3,
1062 | "starCount": 381,
1063 | "img": "https://images-na.ssl-images-amazon.com/images/I/51QdgznaNTL._AC_US218_.jpg",
1064 | "url": "https://www.amazon.com/Tracfone-Alcatel-Onetouch-Glitz-A463BG/dp/B017LDNLIG/ref=sr_1_6?s=electronics&ie=UTF8&qid=1499124822&sr=1-6&keywords=android",
1065 | "features": [
1066 | {
1067 | "description": "Display Size",
1068 | "value": "3.5"
1069 | },
1070 | {
1071 | "description": "Computer Memory Size",
1072 | "value": "2 GB"
1073 | },
1074 | {
1075 | "description": "Operating System",
1076 | "value": "Android 4.4 KitKat"
1077 | },
1078 | {
1079 | "description": "Display Type",
1080 | "value": "LCD"
1081 | },
1082 | {
1083 | "description": "Special Feature",
1084 | "value": "smartphone"
1085 | }
1086 | ],
1087 | "price": 19.94,
1088 | "shipping": 7.99
1089 | },
1090 | {
1091 | "key": "B018IZ0SWI",
1092 | "category": "android",
1093 | "name": "BLU Advance 5.0 - Unlocked Dual Sim Smartphone - US GSM - Black",
1094 | "seller": "BLU",
1095 | "wholePrice": "59",
1096 | "priceFraction": "99",
1097 | "stock": 10,
1098 | "star": 3,
1099 | "starCount": 395,
1100 | "img": "https://images-na.ssl-images-amazon.com/images/I/41mXjdLezRL._AC_US218_.jpg",
1101 | "url": "https://www.amazon.com/BLU-Advance-5-0-Unlocked-Smartphone/dp/B018IZ0SWI/ref=sr_1_7?s=electronics&ie=UTF8&qid=1499124822&sr=1-7&keywords=android",
1102 | "features": [
1103 | {
1104 | "description": "Display Size",
1105 | "value": "5 inches"
1106 | },
1107 | {
1108 | "description": "Computer Memory Size",
1109 | "value": "4 GB"
1110 | },
1111 | {
1112 | "description": "Operating System",
1113 | "value": "Android"
1114 | },
1115 | {
1116 | "description": "Wireless Communication Technology",
1117 | "value": "GSM, 3G, 4G"
1118 | },
1119 | {
1120 | "description": "Cpu Model Speed",
1121 | "value": "1 GHz"
1122 | }
1123 | ],
1124 | "price": 59.99,
1125 | "shipping": 3.99
1126 | },
1127 | {
1128 | "key": "B01N4HS7B8",
1129 | "category": "android",
1130 | "name": "Smart tv box Wechip V5 Android 6.0 Marshmallow 2g 16g Amlogic S905X quad core 4K Dual WiFi",
1131 | "seller": "Wechip",
1132 | "wholePrice": "53",
1133 | "priceFraction": "99",
1134 | "stock": 34,
1135 | "star": 4,
1136 | "starCount": 4740,
1137 | "img": "https://images-na.ssl-images-amazon.com/images/I/41q+adG0lNL._AC_US218_.jpg",
1138 | "url": "https://www.amazon.com/Smart-Wechip-Android-Marshmallow-Amlogic/dp/B01N4HS7B8/ref=sr_1_8?s=electronics&ie=UTF8&qid=1499124822&sr=1-8&keywords=android",
1139 | "features": [],
1140 | "price": 53.99,
1141 | "shipping": 7.99
1142 | },
1143 | {
1144 | "key": "B01LX0JZUM",
1145 | "category": "android",
1146 | "name": "ONSON Android Charger Cable,3Pack 10FT Extra Long Nylon Braided High Speed 2.0 USB to Micro USB Charging Cord Fast Charger Cable for Samsung Galaxy S7/S6 Edge,Note 5/4,HTC,LG,Nexus(Gray White)",
1147 | "seller": "ONSON",
1148 | "wholePrice": "11",
1149 | "priceFraction": "99",
1150 | "stock": 8,
1151 | "star": 3,
1152 | "starCount": 2636,
1153 | "img": "https://images-na.ssl-images-amazon.com/images/I/51P8qI8KzNL._AC_US218_.jpg",
1154 | "url": "https://www.amazon.com/ONSON-Android-Charger-Braided-Charging/dp/B01LX0JZUM/ref=sr_1_9?s=electronics&ie=UTF8&qid=1499124822&sr=1-9&keywords=android",
1155 | "features": [],
1156 | "price": 11.99,
1157 | "shipping": 3.99
1158 | },
1159 | {
1160 | "key": "B072NYXDLY",
1161 | "category": "android",
1162 | "name": "5.0\" Phone Unlocked Dual Sim Quad Core 8GB Android 5.1 Cellphone Gold by TIMMY",
1163 | "seller": "Timmy",
1164 | "wholePrice": "68",
1165 | "priceFraction": "99",
1166 | "stock": 14,
1167 | "star": 5,
1168 | "starCount": 1182,
1169 | "img": "https://images-na.ssl-images-amazon.com/images/I/411fzxxuuFL._AC_US218_.jpg",
1170 | "url": "https://www.amazon.com/Phone-Unlocked-Android-Cellphone-TIMMY/dp/B072NYXDLY/ref=sr_1_10?s=electronics&ie=UTF8&qid=1499124822&sr=1-10&keywords=android",
1171 | "features": [
1172 | {
1173 | "description": "Display Size",
1174 | "value": "5.0 inches"
1175 | },
1176 | {
1177 | "description": "Operating System",
1178 | "value": "google android"
1179 | }
1180 | ],
1181 | "price": 68.99,
1182 | "shipping": 3.99
1183 | },
1184 | {
1185 | "key": "B071RK857H",
1186 | "category": "android",
1187 | "name": "QacQoc A12 Pro Android 6.0 TV BOX Amlogic S912 Octa-Core [2G DDR3/16G eMMC] Dual Wifi 2.4G/5G AC OTA Update 4K 1000M Android TV Box",
1188 | "seller": "QacQoc",
1189 | "wholePrice": "65",
1190 | "priceFraction": "99",
1191 | "stock": 1,
1192 | "star": 5,
1193 | "starCount": 1836,
1194 | "img": "https://images-na.ssl-images-amazon.com/images/I/51+GT3mluJL._AC_US218_.jpg",
1195 | "url": "https://www.amazon.com/QacQoc-A12-Android-Amlogic-Octa-Core/dp/B071RK857H/ref=sr_1_11?s=electronics&ie=UTF8&qid=1499124822&sr=1-11&keywords=android",
1196 | "features": [
1197 | {
1198 | "description": "Connectivity Technology",
1199 | "value": "wi-fi ready"
1200 | },
1201 | {
1202 | "description": "Special Feature",
1203 | "value": "network ready"
1204 | }
1205 | ],
1206 | "price": 65.99,
1207 | "shipping": 7.99
1208 | },
1209 | {
1210 | "key": "B06XWMQRS6",
1211 | "category": "android",
1212 | "name": "QacQoc M9C max Android 6.0 Marshmallow TV Box New Amlogic S905X Chipset [2G DDR3/16G eMMC] 4K Smart Box Unlocked 2.4G WIFI Media Player",
1213 | "seller": "QacQoc",
1214 | "wholePrice": "49",
1215 | "priceFraction": "99",
1216 | "stock": 54,
1217 | "star": 4,
1218 | "starCount": 2618,
1219 | "img": "https://images-na.ssl-images-amazon.com/images/I/41Sx5HrzuhL._AC_US218_.jpg",
1220 | "url": "https://www.amazon.com/QacQoc-Android-Marshmallow-Amlogic-Unlocked/dp/B06XWMQRS6/ref=sr_1_12?s=electronics&ie=UTF8&qid=1499124822&sr=1-12&keywords=android",
1221 | "features": [],
1222 | "price": 49.99,
1223 | "shipping": 3.99
1224 | },
1225 | {
1226 | "key": "B01N41AKT3",
1227 | "category": "android",
1228 | "name": "Antimi Sweatproof Smart Watch Phone for Android HTC Sony Samsung LG Google Pixel /Pixel and iPhone 5 5S 6 6 Plus 7 Smartphones Black",
1229 | "seller": "Antimi",
1230 | "wholePrice": "25",
1231 | "priceFraction": "99",
1232 | "stock": 66,
1233 | "star": 3,
1234 | "starCount": 3316,
1235 | "img": "https://images-na.ssl-images-amazon.com/images/I/41Z3XFc1-5L._AC_US218_.jpg",
1236 | "url": "https://www.amazon.com/Antimi-Sweatproof-Android-Samsung-Smartphones/dp/B01N41AKT3/ref=sr_1_13?s=electronics&ie=UTF8&qid=1499124822&sr=1-13&keywords=android",
1237 | "features": [
1238 | {
1239 | "description": "Operating System",
1240 | "value": "Android/iOS"
1241 | },
1242 | {
1243 | "description": "Hardware Platform",
1244 | "value": "Android"
1245 | }
1246 | ],
1247 | "price": 25.99,
1248 | "shipping": 3.99
1249 | },
1250 | {
1251 | "key": "B06XY8W1DC",
1252 | "category": "android",
1253 | "name": "SUNNZO T2 TV Box Streaming Devices for TV/Streaming Media Players Android 6.0 4K WIFI",
1254 | "seller": "sunnzo",
1255 | "wholePrice": "29",
1256 | "priceFraction": "99",
1257 | "stock": 97,
1258 | "star": 3,
1259 | "starCount": 4951,
1260 | "img": "https://images-na.ssl-images-amazon.com/images/I/51sZTRzpQjL._AC_US218_.jpg",
1261 | "url": "https://www.amazon.com/T2-Streaming-Devices-Players-Android/dp/B06XY8W1DC/ref=sr_1_14?s=electronics&ie=UTF8&qid=1499124822&sr=1-14&keywords=android",
1262 | "features": [],
1263 | "price": 29.99,
1264 | "shipping": 7.99
1265 | },
1266 | {
1267 | "key": "B01N0VVQ13",
1268 | "category": "android",
1269 | "name": "Goodsail Micro USB Cables, 3Pack 6FT/2M durable Nylon Braided High Charging Speed USB 2.0 A Male to Micro USB Cord For Samsung, HTC, Motorola, Blackberry, Tablets and Android Smartphones Blue Black",
1270 | "seller": "Goodsail",
1271 | "wholePrice": "9",
1272 | "priceFraction": "99",
1273 | "stock": 80,
1274 | "star": 4,
1275 | "starCount": 4758,
1276 | "img": "https://images-na.ssl-images-amazon.com/images/I/51+MK7D4pLL._AC_US218_.jpg",
1277 | "url": "https://www.amazon.com/Goodsail-Charging-Motorola-Blackberry-Smartphones/dp/B01N0VVQ13/ref=sr_1_15?s=electronics&ie=UTF8&qid=1499124822&sr=1-15&keywords=android",
1278 | "features": [],
1279 | "price": 9.99,
1280 | "shipping": 7.99
1281 | },
1282 | {
1283 | "key": "B01JOT42JW",
1284 | "category": "android",
1285 | "name": "2017 Model GooBang Doo Android 6.0 TV Box, Abox Android TV Box Amlogic S905X 64 Bits and True 4K Playing",
1286 | "seller": "GooBang Doo",
1287 | "wholePrice": "39",
1288 | "priceFraction": "99",
1289 | "stock": 54,
1290 | "star": 3,
1291 | "starCount": 856,
1292 | "img": "https://images-na.ssl-images-amazon.com/images/I/41sPPh71RXL._AC_US218_.jpg",
1293 | "url": "https://www.amazon.com/GooBang-Doo-Android-Amlogic-Playing/dp/B01JOT42JW/ref=sr_1_16?s=electronics&ie=UTF8&qid=1499124822&sr=1-16&keywords=android",
1294 | "features": [],
1295 | "price": 39.99,
1296 | "shipping": 3.99
1297 | },
1298 | {
1299 | "key": "B06Y5PY61J",
1300 | "category": "android",
1301 | "name": "RBSCH M96X Smart Tv Box Android 6.0 Amlogic S905X Quad Core 64bit 2GB / 8GB 4K HD 100Mbps LAN Wifi Mini Home player",
1302 | "seller": "RBSCH",
1303 | "wholePrice": "44",
1304 | "priceFraction": "99",
1305 | "stock": 34,
1306 | "star": 5,
1307 | "starCount": 1151,
1308 | "img": "https://images-na.ssl-images-amazon.com/images/I/41c3yiJtjCL._AC_US218_.jpg",
1309 | "url": "https://www.amazon.com/RBSCH-Android-Amlogic-100Mbps-player/dp/B06Y5PY61J/ref=sr_1_17?s=electronics&ie=UTF8&qid=1499124822&sr=1-17&keywords=android",
1310 | "features": [],
1311 | "price": 44.99,
1312 | "shipping": 7.99
1313 | },
1314 | {
1315 | "key": "B0182YJ4V6",
1316 | "category": "android",
1317 | "name": "Yezz Andy 3.5E2 unlocked android phone black",
1318 | "seller": "Yezz",
1319 | "wholePrice": "37",
1320 | "priceFraction": "50",
1321 | "stock": 97,
1322 | "star": 3,
1323 | "starCount": 2770,
1324 | "img": "https://images-na.ssl-images-amazon.com/images/I/51PADZ7CaeL._AC_US218_.jpg",
1325 | "url": "https://www.amazon.com/Yezz-3-5E2-unlocked-android-phone/dp/B0182YJ4V6/ref=sr_1_18?s=electronics&ie=UTF8&qid=1499124822&sr=1-18&keywords=android",
1326 | "features": [
1327 | {
1328 | "description": "Display Size",
1329 | "value": "3.5 inches"
1330 | },
1331 | {
1332 | "description": "Computer Memory Size",
1333 | "value": "512.0 MB"
1334 | },
1335 | {
1336 | "description": "Operating System",
1337 | "value": "google android"
1338 | },
1339 | {
1340 | "description": "Wireless Communication Technology",
1341 | "value": "GSM"
1342 | },
1343 | {
1344 | "description": "Special Feature",
1345 | "value": "smartphone"
1346 | }
1347 | ],
1348 | "price": 37.5,
1349 | "shipping": 7.99
1350 | },
1351 | {
1352 | "key": "B01GL7EB50",
1353 | "category": "android",
1354 | "name": "Pandawell OTG Micro USB Mobile Phone Fan Portable Dock Cool Cooler Rotating Fan for Samsung Galaxy S7, S7 Edge, LG G5 & Other Android Smart Phone (Black)",
1355 | "seller": "Pandawell",
1356 | "wholePrice": "4",
1357 | "priceFraction": "99",
1358 | "stock": 68,
1359 | "star": 3,
1360 | "starCount": 2806,
1361 | "img": "https://images-na.ssl-images-amazon.com/images/I/31Q6QEVwmDL._AC_US218_.jpg",
1362 | "url": "https://www.amazon.com/Pandawell-Portable-Rotating-Samsung-Android/dp/B01GL7EB50/ref=sr_1_19?s=electronics&ie=UTF8&qid=1499124822&sr=1-19&keywords=android",
1363 | "features": [],
1364 | "price": 4.99,
1365 | "shipping": 7.99
1366 | },
1367 | {
1368 | "key": "B06XKH29C8",
1369 | "category": "android",
1370 | "name": "TYD 10.1 inch Tablet Android 6.0 GPS Octa Core 2560X1600 IPS Bluetooth RAM 4GB ROM 64GB 13.0MP 3G Phone Call Tablets PC Dual sim card TYD-107-Black",
1371 | "seller": "Tianyida",
1372 | "wholePrice": "99",
1373 | "priceFraction": "00",
1374 | "stock": 95,
1375 | "star": 2,
1376 | "starCount": 1718,
1377 | "img": "https://images-na.ssl-images-amazon.com/images/I/513RoqwKmPL._AC_US218_.jpg",
1378 | "url": "https://www.amazon.com/Android-2560X1600-Bluetooth-Tablets-TYD-107-Black/dp/B06XKH29C8/ref=sr_1_20?s=electronics&ie=UTF8&qid=1499124822&sr=1-20&keywords=android",
1379 | "features": [
1380 | {
1381 | "description": "Display Size",
1382 | "value": "10.1 inches"
1383 | },
1384 | {
1385 | "description": "Operating System",
1386 | "value": "Android"
1387 | },
1388 | {
1389 | "description": "Hard Disk Size",
1390 | "value": "64.0 GB"
1391 | },
1392 | {
1393 | "description": "Connectivity Technology",
1394 | "value": "usb"
1395 | },
1396 | {
1397 | "description": "Hardware Platform",
1398 | "value": "android 6.0"
1399 | }
1400 | ],
1401 | "price": 99,
1402 | "shipping": 3.99
1403 | },
1404 | {
1405 | "key": "B01MG086CV",
1406 | "category": "android",
1407 | "name": "[Apple Certified] 3 Feet Coiled Charging Cable for iPhone and Android, YellowKnife 8-Pin Lightning & Micro to USB Date Wire for iPhone 5 6 7 Plus SE, iPad Mini Air iPod, Samsung Sony LG Phones, Black",
1408 | "seller": "Yellowknife",
1409 | "wholePrice": "11",
1410 | "priceFraction": "98",
1411 | "stock": 3,
1412 | "star": 4,
1413 | "starCount": 103,
1414 | "img": "https://images-na.ssl-images-amazon.com/images/I/41Htivct16L._AC_US218_.jpg",
1415 | "url": "https://www.amazon.com/Certified-Charging-Android-YellowKnife-Lightning/dp/B01MG086CV/ref=sr_1_21?s=electronics&ie=UTF8&qid=1499124822&sr=1-21&keywords=android",
1416 | "features": [],
1417 | "price": 11.98,
1418 | "shipping": 7.99
1419 | },
1420 | {
1421 | "key": "B01MUA1QMU",
1422 | "category": "android",
1423 | "name": "TracFone Alcatel OneTouch Pixi Eclipse Prepaid Smartphone - Certified Preowned",
1424 | "seller": "Tracfone",
1425 | "wholePrice": "20",
1426 | "priceFraction": "81",
1427 | "stock": 66,
1428 | "star": 3,
1429 | "starCount": 3507,
1430 | "img": "https://images-na.ssl-images-amazon.com/images/I/41gV+33qdoL._AC_US218_.jpg",
1431 | "url": "https://www.amazon.com/TracFone-Alcatel-OneTouch-Pixi-Eclipse-Prepaid-Smartphone-Certified/dp/B01MUA1QMU/ref=sr_1_22?s=electronics&ie=UTF8&qid=1499124822&sr=1-22&keywords=android",
1432 | "features": [
1433 | {
1434 | "description": "Display Size",
1435 | "value": "4"
1436 | },
1437 | {
1438 | "description": "Display Type",
1439 | "value": "LCD"
1440 | }
1441 | ],
1442 | "price": 20.81,
1443 | "shipping": 7.99
1444 | },
1445 | {
1446 | "key": "B015MJLEUS",
1447 | "category": "android",
1448 | "name": "Anker [3-Pack] PowerLine Micro USB (3ft) - Charging Cable for Samsung, Nexus, LG, Android Smartphones and More (Black)",
1449 | "seller": "Anker",
1450 | "wholePrice": "10",
1451 | "priceFraction": "99",
1452 | "stock": 75,
1453 | "star": 4,
1454 | "starCount": 315,
1455 | "img": "https://images-na.ssl-images-amazon.com/images/I/41pKUQFLc8L._AC_US218_.jpg",
1456 | "url": "https://www.amazon.com/Anker-3-Pack-PowerLine-Micro-USB/dp/B015MJLEUS/ref=sr_1_23?s=electronics&ie=UTF8&qid=1499124822&sr=1-23&keywords=android",
1457 | "features": [],
1458 | "price": 10.99,
1459 | "shipping": 3.99
1460 | },
1461 | {
1462 | "key": "B06WWPFVNV",
1463 | "category": "android",
1464 | "name": "Antimi SmartWatch Sweatproof Smart Watch Phone for Android HTC Sony Samsung LG Google Pixel /Pixel and iPhone 5 5S 6 6 Plus 7 Smartphones Black",
1465 | "seller": "Antimi",
1466 | "wholePrice": "34",
1467 | "priceFraction": "99",
1468 | "stock": 37,
1469 | "star": 4,
1470 | "starCount": 1880,
1471 | "img": "https://images-na.ssl-images-amazon.com/images/I/51yaeSUl8DL._AC_US218_.jpg",
1472 | "url": "https://www.amazon.com/Antimi-SmartWatch-Sweatproof-Android-Smartphones/dp/B06WWPFVNV/ref=sr_1_24?s=electronics&ie=UTF8&qid=1499124822&sr=1-24&keywords=android",
1473 | "features": [
1474 | {
1475 | "description": "Operating System",
1476 | "value": "Android/iOS"
1477 | },
1478 | {
1479 | "description": "Hardware Platform",
1480 | "value": "Android"
1481 | }
1482 | ],
1483 | "price": 34.99,
1484 | "shipping": 7.99
1485 | },
1486 | {
1487 | "key": "B00NH2COZC",
1488 | "category": "android",
1489 | "name": "Native Union NIGHT Cable for Android Devices 10ft Micro-USB to USB Charging Cable (Zebra)",
1490 | "seller": "Native Union",
1491 | "wholePrice": "39",
1492 | "priceFraction": "99",
1493 | "stock": 73,
1494 | "star": 3,
1495 | "starCount": 1894,
1496 | "img": "https://images-na.ssl-images-amazon.com/images/I/3167uhg4DPL._AC_US218_.jpg",
1497 | "url": "https://www.amazon.com/Native-Union-Android-Micro-USB-Charging/dp/B00NH2COZC/ref=sr_1_25?s=electronics&ie=UTF8&qid=1499124822&sr=1-25&keywords=android",
1498 | "features": [],
1499 | "price": 39.99,
1500 | "shipping": 7.99
1501 | },
1502 | {
1503 | "key": "B01DMVLE7Q",
1504 | "category": "android",
1505 | "name": "Samsung Galaxy Tab E Lite 7.0\" 8GB (Wi-Fi) Black Accessory Bundle includes Tablet, Cleaning Kit, 3 Stylus Pens and Metal Ear Buds",
1506 | "seller": "Samsung",
1507 | "wholePrice": "129",
1508 | "priceFraction": "99",
1509 | "stock": 14,
1510 | "star": 4,
1511 | "starCount": 1362,
1512 | "img": "https://images-na.ssl-images-amazon.com/images/I/51jViuKHqdL._AC_US218_.jpg",
1513 | "url": "https://www.amazon.com/gp/slredirect/picassoRedirect.html/ref=pa_sp_btf_electronics_sr_pg1_1?ie=UTF8&adId=A06599961RWOD7JVO4914&url=https%3A%2F%2Fwww.amazon.com%2FSamsung-Galaxy-Accessory-Bundle-Cleaning%2Fdp%2FB01DMVLE7Q%2Fref%3Dsr_1_26%3Fs%3Delectronics%26ie%3DUTF8%26qid%3D1499124822%26sr%3D1-26-spons%26keywords%3Dandroid%26psc%3D1&qualifier=1499124826&id=4777421193755769&widgetName=sp_btf",
1514 | "features": [
1515 | {
1516 | "description": "Display Size",
1517 | "value": "7.0 inches"
1518 | },
1519 | {
1520 | "description": "Computer Memory Size",
1521 | "value": "1.0 GB"
1522 | },
1523 | {
1524 | "description": "Operating System",
1525 | "value": "Android"
1526 | },
1527 | {
1528 | "description": "Connectivity Technology",
1529 | "value": "wi-fi"
1530 | },
1531 | {
1532 | "description": "Wireless Communication Technology",
1533 | "value": "Wi-Fi"
1534 | }
1535 | ],
1536 | "price": 129.99,
1537 | "shipping": 7.99
1538 | },
1539 | {
1540 | "key": "B017SD8RWO",
1541 | "category": "android",
1542 | "name": "Zmodo Outdoor Wireless IP Security Surveillance Camera System - 4 Pack HD Night Vision Remote Access Motion Detection",
1543 | "seller": "Zmodo",
1544 | "wholePrice": "99",
1545 | "priceFraction": "99",
1546 | "stock": 9,
1547 | "star": 3,
1548 | "starCount": 4638,
1549 | "img": "https://images-na.ssl-images-amazon.com/images/I/51jegGDgy2L._AC_US218_.jpg",
1550 | "url": "https://www.amazon.com/gp/slredirect/picassoRedirect.html/ref=pa_sp_btf_electronics_sr_pg1_2?ie=UTF8&adId=A07535107J9TJPUG5AAX&url=https%3A%2F%2Fwww.amazon.com%2FZmodo-Outdoor-Wireless-Security-Surveillance%2Fdp%2FB017SD8RWO%2Fref%3Dsr_1_27%3Fs%3Delectronics%26ie%3DUTF8%26qid%3D1499124822%26sr%3D1-27-spons%26keywords%3Dandroid%26psc%3D1&qualifier=1499124826&id=4777421193755769&widgetName=sp_btf",
1551 | "features": [],
1552 | "price": 99.99,
1553 | "shipping": 0
1554 | },
1555 | {
1556 | "key": "B01N5PRSOT",
1557 | "category": "android",
1558 | "name": "EVANPO Android 6.0 TV BOX Amlogic S905X Quad Core 1GB DDR3 8GB EMMC Flash 3D 4K2K Smart Mini PC Wifi TV Player Set Top Box with Keyboard",
1559 | "seller": "EVANPO",
1560 | "wholePrice": "48",
1561 | "priceFraction": "98",
1562 | "stock": 47,
1563 | "star": 4,
1564 | "starCount": 88,
1565 | "img": "https://images-na.ssl-images-amazon.com/images/I/51JVSEmcsCL._AC_US218_.jpg",
1566 | "url": "https://www.amazon.com/gp/slredirect/picassoRedirect.html/ref=pa_sp_btf_electronics_sr_pg1_3?ie=UTF8&adId=A00155643QO9QUBJOBSJT&url=https%3A%2F%2Fwww.amazon.com%2FEVANPO-Android-Amlogic-Player-Keyboard%2Fdp%2FB01N5PRSOT%2Fref%3Dsr_1_28%3Fs%3Delectronics%26ie%3DUTF8%26qid%3D1499124822%26sr%3D1-28-spons%26keywords%3Dandroid%26psc%3D1&qualifier=1499124826&id=4777421193755769&widgetName=sp_btf",
1567 | "features": [],
1568 | "price": 48.98,
1569 | "shipping": 7.99
1570 | },
1571 | {
1572 | "key": "B016F3M7OM",
1573 | "category": "camera",
1574 | "name": "YI Home Camera Wireless IP Security Surveillance System (US Edition) White",
1575 | "seller": "YI",
1576 | "wholePrice": "39",
1577 | "priceFraction": "99",
1578 | "stock": 48,
1579 | "star": 4,
1580 | "starCount": 985,
1581 | "img": "https://images-na.ssl-images-amazon.com/images/I/314hcoZg2JL._AC_US218_.jpg",
1582 | "url": "https://www.amazon.com/gp/slredirect/picassoRedirect.html/ref=pa_sp_atf_electronics_sr_pg1_1?ie=UTF8&adId=A03127032JGFCK6OPGZQ9&url=https%3A%2F%2Fwww.amazon.com%2FYI-Wireless-Security-Surveillance-US%2Fdp%2FB016F3M7OM%2Fref%3Dsr_1_1%3Fs%3Delectronics%26ie%3DUTF8%26qid%3D1499124549%26sr%3D1-1-spons%26keywords%3Dcamera%26psc%3D1&qualifier=1499124549&id=8228299164163419&widgetName=sp_atf",
1583 | "features": [
1584 | {
1585 | "description": "Connectivity Technology",
1586 | "value": "wi-fi ready"
1587 | },
1588 | {
1589 | "description": "Wireless Communication Technology",
1590 | "value": "Wireless"
1591 | }
1592 | ],
1593 | "price": 39.99,
1594 | "shipping": 3.99
1595 | },
1596 | {
1597 | "key": "B01MQ0FSS0",
1598 | "category": "camera",
1599 | "name": "Sony Cyber-Shot DSC-RX100 Digital Camera + 64GB SDXC Memory Dual Battery Kit + Accessory Bundle",
1600 | "seller": "Beach Camera",
1601 | "wholePrice": "499",
1602 | "priceFraction": "00",
1603 | "stock": 52,
1604 | "star": 4,
1605 | "starCount": 128,
1606 | "img": "https://images-na.ssl-images-amazon.com/images/I/61T6hxWFVlL._AC_US218_.jpg",
1607 | "url": "https://www.amazon.com/gp/slredirect/picassoRedirect.html/ref=pa_sp_atf_electronics_sr_pg1_2?ie=UTF8&adId=A05196583793V13Q2RYYJ&url=https%3A%2F%2Fwww.amazon.com%2FCyber-Shot-DSC-RX100-Digital-Camera-Accessory%2Fdp%2FB01MQ0FSS0%2Fref%3Dsr_1_2%3Fs%3Delectronics%26ie%3DUTF8%26qid%3D1499124549%26sr%3D1-2-spons%26keywords%3Dcamera%26psc%3D1&qualifier=1499124549&id=8228299164163419&widgetName=sp_atf",
1608 | "features": [],
1609 | "price": 499,
1610 | "shipping": 3.99
1611 | },
1612 | {
1613 | "key": "B01KVIN26O",
1614 | "category": "camera",
1615 | "name": "Cell Phone Camera Lens - TURATA 2 in 1 Professional HD Camera Lens Kit 0.45X Super Wide Angle & 12.5X Macro Lens for iPhone7 6s 6s plus 6 plus 5s & Most Smartphone, Tablet",
1616 | "seller": "TURATA",
1617 | "wholePrice": "11",
1618 | "priceFraction": "98",
1619 | "stock": 51,
1620 | "star": 4,
1621 | "starCount": 1011,
1622 | "img": "https://images-na.ssl-images-amazon.com/images/I/41wyZE9sWLL._AC_US218_.jpg",
1623 | "url": "https://www.amazon.com/Cell-Phone-Camera-Lens-Professional/dp/B01KVIN26O/ref=sr_1_3?s=electronics&ie=UTF8&qid=1499124549&sr=1-3&keywords=camera",
1624 | "features": [
1625 | {
1626 | "description": "Display Dimensions",
1627 | "value": "37mm"
1628 | },
1629 | {
1630 | "description": "Special Feature",
1631 | "value": "Fit for most smartphones."
1632 | }
1633 | ],
1634 | "price": 11.98,
1635 | "shipping": 3.99
1636 | },
1637 | {
1638 | "key": "B00UV6I8QQ",
1639 | "category": "camera",
1640 | "name": "Nikon Coolpix L340 20.2MP Digital Camera with 28x Optical Zoom",
1641 | "seller": "Nikon",
1642 | "wholePrice": "148",
1643 | "priceFraction": "00",
1644 | "stock": 7,
1645 | "star": 3,
1646 | "starCount": 1560,
1647 | "img": "https://images-na.ssl-images-amazon.com/images/I/41VVqVvKuNL._AC_US218_.jpg",
1648 | "url": "https://www.amazon.com/Nikon-Coolpix-L340-Digital-Optical/dp/B00UV6I8QQ/ref=sr_1_4?s=electronics&ie=UTF8&qid=1499124549&sr=1-4&keywords=camera",
1649 | "features": [
1650 | {
1651 | "description": "Display Size",
1652 | "value": "7.6 inches"
1653 | },
1654 | {
1655 | "description": "Computer Memory Size",
1656 | "value": "43.0 MB"
1657 | },
1658 | {
1659 | "description": "Hardware Interface",
1660 | "value": "audio video port"
1661 | },
1662 | {
1663 | "description": "Special Feature",
1664 | "value": "image-stabilization"
1665 | }
1666 | ],
1667 | "price": 148,
1668 | "shipping": 3.99
1669 | },
1670 | {
1671 | "key": "B00W68DSWQ",
1672 | "category": "camera",
1673 | "name": "Nikon COOLPIX L340 Digital Camera with 28x Zoom & Full HD Video (Black) International Version + 4 AA Batteries & Charger + 32GB Dlx Accessory Kit w/HeroFiber Cleaning Cloth",
1674 | "seller": "HeroFiber",
1675 | "wholePrice": "239",
1676 | "priceFraction": "99",
1677 | "stock": 16,
1678 | "star": 4,
1679 | "starCount": 4472,
1680 | "img": "https://images-na.ssl-images-amazon.com/images/I/61yFYo02UzL._AC_US218_.jpg",
1681 | "url": "https://www.amazon.com/International-Batteries-Accessory-HeroFiber-Cleaning/dp/B00W68DSWQ/ref=sr_1_5?s=electronics&ie=UTF8&qid=1499124549&sr=1-5&keywords=camera",
1682 | "features": [],
1683 | "price": 239.99,
1684 | "shipping": 7.99
1685 | },
1686 | {
1687 | "key": "B01N6E66RN",
1688 | "category": "camera",
1689 | "name": "Aberg Best 18 mega pixels HD Digital Camera - Digital video camera - Students cameras - Students Camcorder - Handheld Sized Digital Camcorder Indoor Outdoor for Adult /Seniors / Kids (silver)",
1690 | "seller": "Aberg Best",
1691 | "wholePrice": "35",
1692 | "priceFraction": "00",
1693 | "stock": 46,
1694 | "star": 2,
1695 | "starCount": 80,
1696 | "img": "https://images-na.ssl-images-amazon.com/images/I/51AasF06FwL._AC_US218_.jpg",
1697 | "url": "https://www.amazon.com/Aberg-Best-pixels-Digital-Camera/dp/B01N6E66RN/ref=sr_1_6?s=electronics&ie=UTF8&qid=1499124549&sr=1-6&keywords=camera",
1698 | "features": [],
1699 | "price": 35,
1700 | "shipping": 3.99
1701 | },
1702 | {
1703 | "key": "B01CG62D00",
1704 | "category": "camera",
1705 | "name": "Kodak PIXPRO Friendly Zoom FZ43 16 MP Digital Camera with 4X Optical Zoom and 2.7\" LCD Screen (Black)",
1706 | "seller": "Kodak",
1707 | "wholePrice": "66",
1708 | "priceFraction": "40",
1709 | "stock": 59,
1710 | "star": 3,
1711 | "starCount": 3095,
1712 | "img": "https://images-na.ssl-images-amazon.com/images/I/41XZUouAKJL._AC_US218_.jpg",
1713 | "url": "https://www.amazon.com/Kodak-PIXPRO-Friendly-Digital-Optical/dp/B01CG62D00/ref=sr_1_7?s=electronics&ie=UTF8&qid=1499124549&sr=1-7&keywords=camera",
1714 | "features": [
1715 | {
1716 | "description": "Display Size",
1717 | "value": "2.7 inches"
1718 | },
1719 | {
1720 | "description": "Computer Memory Size",
1721 | "value": "8 MB"
1722 | },
1723 | {
1724 | "description": "Hardware Interface",
1725 | "value": "audio video port"
1726 | },
1727 | {
1728 | "description": "Display Technology",
1729 | "value": "LCD"
1730 | },
1731 | {
1732 | "description": "Display Resolution Maximum",
1733 | "value": "720p"
1734 | }
1735 | ],
1736 | "price": 66.4,
1737 | "shipping": 3.99
1738 | },
1739 | {
1740 | "key": "B01LWPSB57",
1741 | "category": "camera",
1742 | "name": "Camera Camcorders, Besteker HD 1080P 24MP 16X Digital Zoom Video Camcorder with 2.7\" LCD and 270 Degree Rotation Screen",
1743 | "seller": "Besteker",
1744 | "wholePrice": "53",
1745 | "priceFraction": "99",
1746 | "stock": 71,
1747 | "star": 3,
1748 | "starCount": 553,
1749 | "img": "https://images-na.ssl-images-amazon.com/images/I/417uVGTgAlL._AC_US218_.jpg",
1750 | "url": "https://www.amazon.com/Camcorders-Besteker-Digital-Camcorder-Rotation/dp/B01LWPSB57/ref=sr_1_8?s=electronics&ie=UTF8&qid=1499124549&sr=1-8&keywords=camera",
1751 | "features": [
1752 | {
1753 | "description": "Display Size",
1754 | "value": "2.7 inches"
1755 | },
1756 | {
1757 | "description": "Display Resolution Maximum",
1758 | "value": "1920X1080"
1759 | },
1760 | {
1761 | "description": "Form Factor",
1762 | "value": "rotating"
1763 | }
1764 | ],
1765 | "price": 53.99,
1766 | "shipping": 3.99
1767 | },
1768 | {
1769 | "key": "B01D93Z89W",
1770 | "category": "camera",
1771 | "name": "Canon EOS Rebel T6 Digital SLR Camera with 18-55mm EF-S f/3.5-5.6 IS II Lens + 58mm Wide Angle Lens + 2x Telephoto Lens + Flash + 48GB SD Memory Card + UV Filter Kit + Tripod + Full Accessory Bundle",
1772 | "seller": "PHOTO4LESS",
1773 | "wholePrice": "469",
1774 | "priceFraction": "00",
1775 | "stock": 10,
1776 | "star": 4,
1777 | "starCount": 2583,
1778 | "img": "https://images-na.ssl-images-amazon.com/images/I/61heZtEPPBL._AC_US218_.jpg",
1779 | "url": "https://www.amazon.com/Canon-T6-Digital-Telephoto-Accessory/dp/B01D93Z89W/ref=sr_1_9?s=electronics&ie=UTF8&qid=1499124549&sr=1-9&keywords=camera",
1780 | "features": [],
1781 | "price": 469,
1782 | "shipping": 7.99
1783 | },
1784 | {
1785 | "key": "B01N0XDRYO",
1786 | "category": "camera",
1787 | "name": "KINGEAR Pcam PDC001 2.7 inch TFT LCD HD Mini Digital Camera(black)",
1788 | "seller": "KINGEAR",
1789 | "wholePrice": "46",
1790 | "priceFraction": "99",
1791 | "stock": 11,
1792 | "star": 4,
1793 | "starCount": 3908,
1794 | "img": "https://images-na.ssl-images-amazon.com/images/I/51uKiDibbZL._AC_US218_.jpg",
1795 | "url": "https://www.amazon.com/KINGEAR-PDC001-2-7-Digital-Camera/dp/B01N0XDRYO/ref=sr_1_10?s=electronics&ie=UTF8&qid=1499124549&sr=1-10&keywords=camera",
1796 | "features": [],
1797 | "price": 46.99,
1798 | "shipping": 3.99
1799 | },
1800 | {
1801 | "key": "B01MRWZ4KL",
1802 | "category": "camera",
1803 | "name": "KINGEAR KG002 2.7 inch TFT LCD HD Mini Digital Camera",
1804 | "seller": "GordVE",
1805 | "wholePrice": "45",
1806 | "priceFraction": "99",
1807 | "stock": 24,
1808 | "star": 4,
1809 | "starCount": 3821,
1810 | "img": "https://images-na.ssl-images-amazon.com/images/I/51fNKzDjiyL._AC_US218_.jpg",
1811 | "url": "https://www.amazon.com/KINGEAR-KG002-inch-Digital-Camera/dp/B01MRWZ4KL/ref=sr_1_11?s=electronics&ie=UTF8&qid=1499124549&sr=1-11&keywords=camera",
1812 | "features": [],
1813 | "price": 45.99,
1814 | "shipping": 7.99
1815 | },
1816 | {
1817 | "key": "B006J0SVWE",
1818 | "category": "camera",
1819 | "name": "Vivitar 20 MP Digital Camera with 1.8\" LCD, Colors and Style May Vary",
1820 | "seller": "Vivitar",
1821 | "wholePrice": "25",
1822 | "priceFraction": "99",
1823 | "stock": 17,
1824 | "star": 2,
1825 | "starCount": 4688,
1826 | "img": "https://images-na.ssl-images-amazon.com/images/I/417t7EUvLpL._AC_US218_.jpg",
1827 | "url": "https://www.amazon.com/Vivitar-Digital-Camera-Colors-Style/dp/B006J0SVWE/ref=sr_1_12?s=electronics&ie=UTF8&qid=1499124549&sr=1-12&keywords=camera",
1828 | "features": [
1829 | {
1830 | "description": "Display Size",
1831 | "value": "2.4 inches"
1832 | },
1833 | {
1834 | "description": "Display Type",
1835 | "value": "LCD"
1836 | },
1837 | {
1838 | "description": "Form Factor",
1839 | "value": "Compact"
1840 | }
1841 | ],
1842 | "price": 25.99,
1843 | "shipping": 7.99
1844 | },
1845 | {
1846 | "key": "B019UDHOMO",
1847 | "category": "camera",
1848 | "name": "Canon PowerShot ELPH 180 (Silver) with 20.0 MP CCD Sensor and 8x Optical Zoom",
1849 | "seller": "Canon",
1850 | "wholePrice": "119",
1851 | "priceFraction": "00",
1852 | "stock": 35,
1853 | "star": 4,
1854 | "starCount": 2898,
1855 | "img": "https://images-na.ssl-images-amazon.com/images/I/418Z3vJAlEL._AC_US218_.jpg",
1856 | "url": "https://www.amazon.com/Canon-PowerShot-Silver-Sensor-Optical/dp/B019UDHOMO/ref=sr_1_13?s=electronics&ie=UTF8&qid=1499124549&sr=1-13&keywords=camera",
1857 | "features": [
1858 | {
1859 | "description": "Display Size",
1860 | "value": "5 inches"
1861 | },
1862 | {
1863 | "description": "Hardware Interface",
1864 | "value": "audio video port"
1865 | },
1866 | {
1867 | "description": "Display Technology",
1868 | "value": "LCD"
1869 | },
1870 | {
1871 | "description": "Display Resolution Maximum",
1872 | "value": "1"
1873 | },
1874 | {
1875 | "description": "Display Type",
1876 | "value": "LCD"
1877 | }
1878 | ],
1879 | "price": 119,
1880 | "shipping": 7.99
1881 | },
1882 | {
1883 | "key": "B01M7V2FKC",
1884 | "category": "camera",
1885 | "name": "Mini Digital Camera,KINGEAR 2.7 inch TFT LCD HD Digital Camera(Black)",
1886 | "seller": "KINGEAR",
1887 | "wholePrice": "46",
1888 | "priceFraction": "99",
1889 | "stock": 29,
1890 | "star": 4,
1891 | "starCount": 1710,
1892 | "img": "https://images-na.ssl-images-amazon.com/images/I/51ILz01lxmL._AC_US218_.jpg",
1893 | "url": "https://www.amazon.com/Mini-Digital-Camera-KINGEAR-Black/dp/B01M7V2FKC/ref=sr_1_14?s=electronics&ie=UTF8&qid=1499124549&sr=1-14&keywords=camera",
1894 | "features": [],
1895 | "price": 46.99,
1896 | "shipping": 3.99
1897 | },
1898 | {
1899 | "key": "B071Z19L5T",
1900 | "category": "camera",
1901 | "name": "Nikon Coolpix L340 20.2 MP Digital Camera with 8GB memory card bundle (28x Optical Zoom, 3.0-Inch LCD, 720P Video, Black)",
1902 | "seller": "Nikon",
1903 | "wholePrice": "169",
1904 | "priceFraction": "99",
1905 | "stock": 99,
1906 | "star": 0,
1907 | "starCount": 1665,
1908 | "img": "https://images-na.ssl-images-amazon.com/images/I/417bGBOCqBL._AC_US218_.jpg",
1909 | "url": "https://www.amazon.com/Nikon-Coolpix-L340-Digital-3-0-Inch/dp/B071Z19L5T/ref=sr_1_15?s=electronics&ie=UTF8&qid=1499124549&sr=1-15&keywords=camera",
1910 | "features": [],
1911 | "price": 169.99,
1912 | "shipping": 3.99
1913 | },
1914 | {
1915 | "key": "B01N6NDHPY",
1916 | "category": "camera",
1917 | "name": "PowerLead PLDH17 2.7 Inch TFT 5X Optical Zoom 15MP 1280 X 720 HD Anti-shake Smile Capture Digital Video Camera(Gold)",
1918 | "seller": "PowerLead",
1919 | "wholePrice": "65",
1920 | "priceFraction": "99",
1921 | "stock": 34,
1922 | "star": 4,
1923 | "starCount": 3490,
1924 | "img": "https://images-na.ssl-images-amazon.com/images/I/41lDD9GODtL._AC_US218_.jpg",
1925 | "url": "https://www.amazon.com/PowerLead-Optical-Anti-shake-Capture-Digital/dp/B01N6NDHPY/ref=sr_1_16?s=electronics&ie=UTF8&qid=1499124549&sr=1-16&keywords=camera",
1926 | "features": [],
1927 | "price": 65.99,
1928 | "shipping": 3.99
1929 | },
1930 | {
1931 | "key": "B00THKEKEQ",
1932 | "category": "camera",
1933 | "name": "Nikon Coolpix L340 20.2 MP Digital Camera with 28x Optical Zoom and 3.0-Inch LCD (Black)",
1934 | "seller": "Nikon",
1935 | "wholePrice": "159",
1936 | "priceFraction": "95",
1937 | "stock": 91,
1938 | "star": 4,
1939 | "starCount": 2620,
1940 | "img": "https://images-na.ssl-images-amazon.com/images/I/41d0gUpd0eL._AC_US218_.jpg",
1941 | "url": "https://www.amazon.com/Nikon-Coolpix-Digital-Optical-3-0-Inch/dp/B00THKEKEQ/ref=sr_1_17?s=electronics&ie=UTF8&qid=1499124549&sr=1-17&keywords=camera",
1942 | "features": [
1943 | {
1944 | "description": "Display Size",
1945 | "value": "3 inches"
1946 | },
1947 | {
1948 | "description": "Hardware Interface",
1949 | "value": "audio video port"
1950 | },
1951 | {
1952 | "description": "Memory Storage Capacity",
1953 | "value": "74 MB"
1954 | },
1955 | {
1956 | "description": "Display Type",
1957 | "value": "TFT"
1958 | },
1959 | {
1960 | "description": "Form Factor",
1961 | "value": "Compact"
1962 | }
1963 | ],
1964 | "price": 159.95,
1965 | "shipping": 7.99
1966 | },
1967 | {
1968 | "key": "B01MQIFINS",
1969 | "category": "camera",
1970 | "name": "Canon EOS Rebel T6 DSLR Camera Bundle with Canon EF-S 18-55mm f/3.5-5.6 IS II Lens + 2pc SanDisk 32GB Memory Cards + Accessory Kit",
1971 | "seller": "Canon",
1972 | "wholePrice": "465",
1973 | "priceFraction": "00",
1974 | "stock": 11,
1975 | "star": 4,
1976 | "starCount": 492,
1977 | "img": "https://images-na.ssl-images-amazon.com/images/I/61j4LE9gOBL._AC_US218_.jpg",
1978 | "url": "https://www.amazon.com/Canon-18-55mm-3-5-5-6-SanDisk-Accessory/dp/B01MQIFINS/ref=sr_1_18?s=electronics&ie=UTF8&qid=1499124549&sr=1-18&keywords=camera",
1979 | "features": [],
1980 | "price": 465,
1981 | "shipping": 7.99
1982 | },
1983 | {
1984 | "key": "B01BMFXNQE",
1985 | "category": "camera",
1986 | "name": "iGadgitz PT310 Mini Lightweight Table Top Stand Tripod and Grip Stabilizer for Digital Camera, DSLR, Video Camera & Camcorder – Black",
1987 | "seller": "igadgitz",
1988 | "wholePrice": "15",
1989 | "priceFraction": "99",
1990 | "stock": 16,
1991 | "star": 4,
1992 | "starCount": 3033,
1993 | "img": "https://images-na.ssl-images-amazon.com/images/I/411OpNYTMeL._AC_US218_.jpg",
1994 | "url": "https://www.amazon.com/iGadgitz-Lightweight-Stabilizer-Digital-Camcorder/dp/B01BMFXNQE/ref=sr_1_19?s=electronics&ie=UTF8&qid=1499124549&sr=1-19&keywords=camera",
1995 | "features": [],
1996 | "price": 15.99,
1997 | "shipping": 0
1998 | },
1999 | {
2000 | "key": "B06XCMCFZW",
2001 | "category": "camera",
2002 | "name": "Digital Camera,KINGEAR 2.7 inch TFT LCD HD Digital Camera",
2003 | "seller": "KINGEAR",
2004 | "wholePrice": "43",
2005 | "priceFraction": "99",
2006 | "stock": 13,
2007 | "star": 4,
2008 | "starCount": 1587,
2009 | "img": "https://images-na.ssl-images-amazon.com/images/I/51OSpayWCLL._AC_US218_.jpg",
2010 | "url": "https://www.amazon.com/Digital-Camera-KINGEAR-2-7-inch/dp/B06XCMCFZW/ref=sr_1_20?s=electronics&ie=UTF8&qid=1499124549&sr=1-20&keywords=camera",
2011 | "features": [],
2012 | "price": 43.99,
2013 | "shipping": 3.99
2014 | },
2015 | {
2016 | "key": "B071G4XXZ4",
2017 | "category": "camera",
2018 | "name": "Btopllc On Dash Video Dash Cam Car Driving Video Recorder Camera 2.5 inch TFT LCD Screen USB Charging Vehicle Video Camera Loop Recording with Night Vision Car Dashboard Camera Recorder-Black",
2019 | "seller": "Btopllc",
2020 | "wholePrice": "18",
2021 | "priceFraction": "95",
2022 | "stock": 17,
2023 | "star": 4,
2024 | "starCount": 4025,
2025 | "img": "https://images-na.ssl-images-amazon.com/images/I/41JPzJ2V0RL._AC_US218_.jpg",
2026 | "url": "https://www.amazon.com/Btopllc-Recorder-Recording-Dashboard-Recorder-Black/dp/B071G4XXZ4/ref=sr_1_21?s=electronics&ie=UTF8&qid=1499124549&sr=1-21&keywords=camera",
2027 | "features": [],
2028 | "price": 18.95,
2029 | "shipping": 7.99
2030 | },
2031 | {
2032 | "key": "B00HE9G3UQ",
2033 | "category": "camera",
2034 | "name": "SGC-598 Photography Interview Shotgun MIC Microphone for Nikon Canon DSLR Camera (Need 3.5mm Interface)",
2035 | "seller": "TAKSTAR",
2036 | "wholePrice": "26",
2037 | "priceFraction": "90",
2038 | "stock": 45,
2039 | "star": 3,
2040 | "starCount": 1225,
2041 | "img": "https://images-na.ssl-images-amazon.com/images/I/51SRyF-I1aL._AC_US218_.jpg",
2042 | "url": "https://www.amazon.com/SGC-598-Photography-Interview-Microphone-Interface/dp/B00HE9G3UQ/ref=sr_1_22?s=electronics&ie=UTF8&qid=1499124549&sr=1-22&keywords=camera",
2043 | "features": [],
2044 | "price": 26.9,
2045 | "shipping": 3.99
2046 | },
2047 | {
2048 | "key": "B00I8BIBCW",
2049 | "category": "camera",
2050 | "name": "Sony DSCW800/B 20.1 MP Digital Camera (Black)",
2051 | "seller": "Sony",
2052 | "wholePrice": "89",
2053 | "priceFraction": "98",
2054 | "stock": 37,
2055 | "star": 3,
2056 | "starCount": 3326,
2057 | "img": "https://images-na.ssl-images-amazon.com/images/I/41Huy05eJiL._AC_US218_.jpg",
2058 | "url": "https://www.amazon.com/Sony-DSCW800-Digital-Camera-Black/dp/B00I8BIBCW/ref=sr_1_24?s=electronics&ie=UTF8&qid=1499124549&sr=1-24&keywords=camera",
2059 | "features": [
2060 | {
2061 | "description": "Display Size",
2062 | "value": "2.7 inches"
2063 | },
2064 | {
2065 | "description": "Display Fixture Type",
2066 | "value": "Fixed"
2067 | },
2068 | {
2069 | "description": "Display Resolution Maximum",
2070 | "value": "230000"
2071 | },
2072 | {
2073 | "description": "Memory Storage Capacity",
2074 | "value": "29 MB"
2075 | },
2076 | {
2077 | "description": "Display Type",
2078 | "value": "LCD"
2079 | }
2080 | ],
2081 | "price": 89.98,
2082 | "shipping": 3.99
2083 | },
2084 | {
2085 | "key": "B01MY0HQWS",
2086 | "category": "camera",
2087 | "name": "KINGEAR KG0016 2.7 Inch TFT 3X Optical Zoom 18MP 1280 X 720 Digital Video Camera",
2088 | "seller": "GordVE",
2089 | "wholePrice": "59",
2090 | "priceFraction": "89",
2091 | "stock": 97,
2092 | "star": 4,
2093 | "starCount": 2763,
2094 | "img": "https://images-na.ssl-images-amazon.com/images/I/413kYxodmNL._AC_US218_.jpg",
2095 | "url": "https://www.amazon.com/KINGEAR-KG0016-Optical-Digital-Camera/dp/B01MY0HQWS/ref=sr_1_25?s=electronics&ie=UTF8&qid=1499124549&sr=1-25&keywords=camera",
2096 | "features": [],
2097 | "price": 59.89,
2098 | "shipping": 7.99
2099 | },
2100 | {
2101 | "key": "B00RKNND2W",
2102 | "category": "camera",
2103 | "name": "Canon SX530 HS 9779B001 PowerShot",
2104 | "seller": "Canon",
2105 | "wholePrice": "249",
2106 | "priceFraction": "00",
2107 | "stock": 81,
2108 | "star": 4,
2109 | "starCount": 3147,
2110 | "img": "https://images-na.ssl-images-amazon.com/images/I/412kGjEHJjL._AC_US218_.jpg",
2111 | "url": "https://www.amazon.com/Canon-SX530-HS-9779B001-PowerShot/dp/B00RKNND2W/ref=sr_1_26?s=electronics&ie=UTF8&qid=1499124549&sr=1-26&keywords=camera",
2112 | "features": [
2113 | {
2114 | "description": "Display Size",
2115 | "value": "3 inches"
2116 | },
2117 | {
2118 | "description": "Display Fixture Type",
2119 | "value": "Fixed"
2120 | },
2121 | {
2122 | "description": "Hardware Interface",
2123 | "value": "audio video port"
2124 | },
2125 | {
2126 | "description": "Wireless Communication Technology",
2127 | "value": "Yes"
2128 | },
2129 | {
2130 | "description": "Display Resolution Maximum",
2131 | "value": "461000"
2132 | }
2133 | ],
2134 | "price": 249,
2135 | "shipping": 0
2136 | },
2137 | {
2138 | "key": "B06XGZB6P3",
2139 | "category": "camera",
2140 | "name": "Akaso EK7000 Ultra HD 4k WIFI 170 Degree Wide Waterproof Sports Action Camera Black + 32GB Outdoor Adventure Mounting Bundle",
2141 | "seller": "AKASO",
2142 | "wholePrice": "116",
2143 | "priceFraction": "33",
2144 | "stock": 31,
2145 | "star": 4,
2146 | "starCount": 4896,
2147 | "img": "https://images-na.ssl-images-amazon.com/images/I/51xBO1ijxWL._AC_US218_.jpg",
2148 | "url": "https://www.amazon.com/gp/slredirect/picassoRedirect.html/ref=pa_sp_btf_electronics_sr_pg1_1?ie=UTF8&adId=A0699155IZEFEU9092Y5&url=https%3A%2F%2Fwww.amazon.com%2FEK7000-Waterproof-Outdoor-Adventure-Mounting%2Fdp%2FB06XGZB6P3%2Fref%3Dsr_1_27%3Fs%3Delectronics%26ie%3DUTF8%26qid%3D1499124549%26sr%3D1-27-spons%26keywords%3Dcamera%26psc%3D1&qualifier=1499124549&id=8228299164163419&widgetName=sp_btf",
2149 | "features": [],
2150 | "price": 116.33,
2151 | "shipping": 0
2152 | },
2153 | {
2154 | "key": "B06XRTN893",
2155 | "category": "camera",
2156 | "name": "Video Camera Camcorder, incoSKY 1080P 24MP 16X Digital Zoom Camera with 2.7\" TFT LCD 270 Degree Rotation Screen, Black",
2157 | "seller": "incoSKY",
2158 | "wholePrice": "49",
2159 | "priceFraction": "99",
2160 | "stock": 96,
2161 | "star": 3,
2162 | "starCount": 4565,
2163 | "img": "https://images-na.ssl-images-amazon.com/images/I/41Ql6BycBCL._AC_US218_.jpg",
2164 | "url": "https://www.amazon.com/gp/slredirect/picassoRedirect.html/ref=pa_sp_btf_electronics_sr_pg1_2?ie=UTF8&adId=A1008791K1VQMNSWD4IF&url=https%3A%2F%2Fwww.amazon.com%2FCamera-Camcorder-incoSKY-Digital-Rotation%2Fdp%2FB06XRTN893%2Fref%3Dsr_1_28%3Fs%3Delectronics%26ie%3DUTF8%26qid%3D1499124549%26sr%3D1-28-spons%26keywords%3Dcamera%26psc%3D1&qualifier=1499124549&id=8228299164163419&widgetName=sp_btf",
2165 | "features": [
2166 | {
2167 | "description": "Display Size",
2168 | "value": "2.7 inches"
2169 | },
2170 | {
2171 | "description": "Form Factor",
2172 | "value": "rotating"
2173 | }
2174 | ],
2175 | "price": 49.99,
2176 | "shipping": 7.99
2177 | }
2178 | ]
--------------------------------------------------------------------------------