@alexkroman1/aai-cli 5.3.0 → 5.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +51 -0
- package/dist/{_agent-D8zBb3M5.mjs → _agent-DMyOab9_.mjs} +2 -2
- package/dist/{_bundler-DFS4xxqE.mjs → _bundler-Cjaxa2wi.mjs} +1 -1
- package/dist/{_config-D3F9km8X.mjs → _config-5AEqhh-O.mjs} +2 -2
- package/dist/{_dev-server-BBUWo0sb.mjs → _dev-server-vV05Fnki.mjs} +3 -3
- package/dist/{_init-DU-sXH6S.mjs → _init-BZ9t_Kz-.mjs} +3 -56
- package/dist/{_slug-api-19R5kZ0U.mjs → _slug-api-DaqQJHk8.mjs} +1 -1
- package/dist/_templates-Bv8CR800.mjs +69 -0
- package/dist/_templates.d.ts +6 -0
- package/dist/{build-Xq1xxoSg.mjs → build-D_PgQOD4.mjs} +1 -1
- package/dist/cli.mjs +59 -17
- package/dist/{client-bundler-BWDkUeEP.mjs → client-bundler-yiWoXrgb.mjs} +3 -0
- package/dist/client-bundler.d.ts +9 -0
- package/dist/client-bundler.mjs +1 -1
- package/dist/{delete-kSXFLxek.mjs → delete-DXilFBb1.mjs} +1 -1
- package/dist/{deploy-Ci0X1gp2.mjs → deploy-1eaXcfUw.mjs} +3 -3
- package/dist/{dev-g7sGt8qX.mjs → dev-gVNdGFYY.mjs} +1 -1
- package/dist/{init-BjeK8crW.mjs → init-DoU4_txp.mjs} +3 -3
- package/dist/login-C59ZHzuO.mjs +109 -0
- package/dist/login.d.ts +34 -0
- package/dist/scaffold/CLAUDE.md +190 -120
- package/dist/scaffold/package.json +3 -3
- package/dist/{secret-DOva9OGk.mjs → secret-CGAIAbUx.mjs} +1 -1
- package/dist/{storage-vM6HjDZZ.mjs → storage-CnhOayhm.mjs} +1 -1
- package/dist/templates/code-interpreter/agent.ts +1 -2
- package/dist/templates/dispatch-center/agent.test.ts +3 -3
- package/dist/templates/dispatch-center/agent.ts +7 -7
- package/dist/templates/dispatch-center/client.tsx +7 -2
- package/dist/templates/dispatch-center/tools/incident_add_note.ts +1 -1
- package/dist/templates/dispatch-center/tools/incident_create.ts +1 -1
- package/dist/templates/dispatch-center/tools/incident_escalate.ts +1 -1
- package/dist/templates/dispatch-center/tools/incident_get.ts +1 -1
- package/dist/templates/dispatch-center/tools/incident_triage.ts +1 -1
- package/dist/templates/dispatch-center/tools/incident_update_status.ts +1 -1
- package/dist/templates/dispatch-center/tools/ops_protocols.ts +1 -1
- package/dist/templates/dispatch-center/tools/ops_run_scenario.ts +1 -1
- package/dist/templates/dispatch-center/tools/resources_dispatch.ts +1 -1
- package/dist/templates/dispatch-center/tools/resources_get_available.ts +1 -1
- package/dist/templates/dispatch-center/tools/resources_update_status.ts +1 -1
- package/dist/templates/embedded-assets/agent.ts +2 -3
- package/dist/templates/health-assistant/agent.ts +3 -4
- package/dist/templates/infocom-adventure/agent.ts +10 -12
- package/dist/templates/infocom-adventure/client.tsx +5 -5
- package/dist/templates/math-buddy/agent.ts +7 -6
- package/dist/templates/night-owl/agent.ts +2 -3
- package/dist/templates/personal-finance/agent.ts +1 -2
- package/dist/templates/pipeline-simple/agent.test.ts +13 -13
- package/dist/templates/pipeline-simple/agent.ts +5 -6
- package/dist/templates/pizza-ordering/agent.test.ts +13 -11
- package/dist/templates/pizza-ordering/agent.ts +5 -6
- package/dist/templates/retail/address.ts +29 -0
- package/dist/templates/retail/agent.test.ts +1030 -0
- package/dist/templates/retail/agent.ts +71 -0
- package/dist/templates/retail/authenticate.ts +34 -0
- package/dist/templates/retail/client.tsx +459 -0
- package/dist/templates/retail/refund.ts +19 -0
- package/dist/templates/retail/registry.test.ts +182 -0
- package/dist/templates/retail/resolve.test.ts +158 -0
- package/dist/templates/retail/resolve.ts +158 -0
- package/dist/templates/retail/seed.json +4260 -0
- package/dist/templates/retail/seed.test.ts +224 -0
- package/dist/templates/retail/shared.test.ts +192 -0
- package/dist/templates/retail/shared.ts +430 -0
- package/dist/templates/retail/store.test.ts +256 -0
- package/dist/templates/retail/store.ts +243 -0
- package/dist/templates/retail/swap.test.ts +186 -0
- package/dist/templates/retail/swap.ts +138 -0
- package/dist/templates/retail/system-prompt.md +111 -0
- package/dist/templates/retail/tools/cancel_pending_order.ts +82 -0
- package/dist/templates/retail/tools/exchange_delivered_order_items.ts +83 -0
- package/dist/templates/retail/tools/find_user_id_by_email.ts +32 -0
- package/dist/templates/retail/tools/find_user_id_by_name_zip.ts +38 -0
- package/dist/templates/retail/tools/get_item_details.ts +29 -0
- package/dist/templates/retail/tools/get_order_details.ts +41 -0
- package/dist/templates/retail/tools/get_product_details.ts +33 -0
- package/dist/templates/retail/tools/get_user_details.ts +44 -0
- package/dist/templates/retail/tools/list_all_product_types.ts +24 -0
- package/dist/templates/retail/tools/modify_pending_order_address.ts +46 -0
- package/dist/templates/retail/tools/modify_pending_order_items.ts +102 -0
- package/dist/templates/retail/tools/modify_pending_order_payment.ts +103 -0
- package/dist/templates/retail/tools/modify_user_address.ts +38 -0
- package/dist/templates/retail/tools/return_delivered_order_items.ts +101 -0
- package/dist/templates/retail/tools/transfer_to_human_agents.ts +22 -0
- package/dist/templates/simple/agent.test.ts +18 -0
- package/dist/templates/simple/agent.ts +3 -0
- package/dist/templates/solo-rpg/agent.test.ts +2 -2
- package/dist/templates/solo-rpg/agent.ts +1 -2
- package/dist/templates/solo-rpg/tools/action_roll.ts +1 -1
- package/dist/templates/solo-rpg/tools/load_game.ts +1 -1
- package/dist/templates/solo-rpg/tools/oracle.ts +1 -1
- package/dist/templates/solo-rpg/tools/save_game.ts +1 -1
- package/dist/templates/solo-rpg/tools/setup_character.ts +1 -1
- package/dist/templates/solo-rpg/tools/update_state.ts +1 -1
- package/dist/templates/web-researcher/agent.ts +1 -2
- package/dist/typecheck.d.ts +18 -0
- package/dist/typecheck.mjs +8 -0
- package/dist/worker-bundler.d.ts +9 -1
- package/dist/worker-bundler.mjs +8 -0
- package/package.json +3 -3
|
@@ -0,0 +1,4260 @@
|
|
|
1
|
+
{
|
|
2
|
+
"products": {
|
|
3
|
+
"9523456873": {
|
|
4
|
+
"name": "T-Shirt",
|
|
5
|
+
"product_id": "9523456873",
|
|
6
|
+
"variants": {
|
|
7
|
+
"9612497925": {
|
|
8
|
+
"item_id": "9612497925",
|
|
9
|
+
"options": {
|
|
10
|
+
"color": "blue",
|
|
11
|
+
"size": "M",
|
|
12
|
+
"material": "cotton",
|
|
13
|
+
"style": "crew neck"
|
|
14
|
+
},
|
|
15
|
+
"available": true,
|
|
16
|
+
"price": 50.88
|
|
17
|
+
},
|
|
18
|
+
"8124970213": {
|
|
19
|
+
"item_id": "8124970213",
|
|
20
|
+
"options": {
|
|
21
|
+
"color": "purple",
|
|
22
|
+
"size": "XL",
|
|
23
|
+
"material": "cotton",
|
|
24
|
+
"style": "crew neck"
|
|
25
|
+
},
|
|
26
|
+
"available": true,
|
|
27
|
+
"price": 49.67
|
|
28
|
+
},
|
|
29
|
+
"9354168549": {
|
|
30
|
+
"item_id": "9354168549",
|
|
31
|
+
"options": {
|
|
32
|
+
"color": "red",
|
|
33
|
+
"size": "XXL",
|
|
34
|
+
"material": "cotton",
|
|
35
|
+
"style": "crew neck"
|
|
36
|
+
},
|
|
37
|
+
"available": true,
|
|
38
|
+
"price": 46.85
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
},
|
|
42
|
+
"4760268021": {
|
|
43
|
+
"name": "Laptop",
|
|
44
|
+
"product_id": "4760268021",
|
|
45
|
+
"variants": {
|
|
46
|
+
"6017636844": {
|
|
47
|
+
"item_id": "6017636844",
|
|
48
|
+
"options": {
|
|
49
|
+
"screen size": "15-inch",
|
|
50
|
+
"processor": "i7",
|
|
51
|
+
"ram": "32GB",
|
|
52
|
+
"storage": "1TB SSD",
|
|
53
|
+
"color": "space grey"
|
|
54
|
+
},
|
|
55
|
+
"available": true,
|
|
56
|
+
"price": 2292.37
|
|
57
|
+
},
|
|
58
|
+
"8997785118": {
|
|
59
|
+
"item_id": "8997785118",
|
|
60
|
+
"options": {
|
|
61
|
+
"screen size": "13-inch",
|
|
62
|
+
"processor": "i7",
|
|
63
|
+
"ram": "32GB",
|
|
64
|
+
"storage": "256GB SSD",
|
|
65
|
+
"color": "space grey"
|
|
66
|
+
},
|
|
67
|
+
"available": false,
|
|
68
|
+
"price": 2674.4
|
|
69
|
+
},
|
|
70
|
+
"4241599783": {
|
|
71
|
+
"item_id": "4241599783",
|
|
72
|
+
"options": {
|
|
73
|
+
"screen size": "15-inch",
|
|
74
|
+
"processor": "i7",
|
|
75
|
+
"ram": "16GB",
|
|
76
|
+
"storage": "1TB SSD",
|
|
77
|
+
"color": "black"
|
|
78
|
+
},
|
|
79
|
+
"available": false,
|
|
80
|
+
"price": 2324.61
|
|
81
|
+
},
|
|
82
|
+
"9844888101": {
|
|
83
|
+
"item_id": "9844888101",
|
|
84
|
+
"options": {
|
|
85
|
+
"screen size": "15-inch",
|
|
86
|
+
"processor": "i7",
|
|
87
|
+
"ram": "8GB",
|
|
88
|
+
"storage": "1TB SSD",
|
|
89
|
+
"color": "black"
|
|
90
|
+
},
|
|
91
|
+
"available": true,
|
|
92
|
+
"price": 2459.74
|
|
93
|
+
},
|
|
94
|
+
"1684786391": {
|
|
95
|
+
"item_id": "1684786391",
|
|
96
|
+
"options": {
|
|
97
|
+
"screen size": "17-inch",
|
|
98
|
+
"processor": "i7",
|
|
99
|
+
"ram": "32GB",
|
|
100
|
+
"storage": "1TB SSD",
|
|
101
|
+
"color": "black"
|
|
102
|
+
},
|
|
103
|
+
"available": true,
|
|
104
|
+
"price": 2508.06
|
|
105
|
+
},
|
|
106
|
+
"2768401027": {
|
|
107
|
+
"item_id": "2768401027",
|
|
108
|
+
"options": {
|
|
109
|
+
"screen size": "13-inch",
|
|
110
|
+
"processor": "i7",
|
|
111
|
+
"ram": "32GB",
|
|
112
|
+
"storage": "256GB SSD",
|
|
113
|
+
"color": "silver"
|
|
114
|
+
},
|
|
115
|
+
"available": false,
|
|
116
|
+
"price": 2346.49
|
|
117
|
+
}
|
|
118
|
+
}
|
|
119
|
+
},
|
|
120
|
+
"6938111410": {
|
|
121
|
+
"name": "Running Shoes",
|
|
122
|
+
"product_id": "6938111410",
|
|
123
|
+
"variants": {
|
|
124
|
+
"4153505238": {
|
|
125
|
+
"item_id": "4153505238",
|
|
126
|
+
"options": {
|
|
127
|
+
"size": "8",
|
|
128
|
+
"color": "red",
|
|
129
|
+
"material": "leather",
|
|
130
|
+
"sole": "EVA"
|
|
131
|
+
},
|
|
132
|
+
"available": true,
|
|
133
|
+
"price": 158.67
|
|
134
|
+
},
|
|
135
|
+
"1775591963": {
|
|
136
|
+
"item_id": "1775591963",
|
|
137
|
+
"options": {
|
|
138
|
+
"size": "10",
|
|
139
|
+
"color": "white",
|
|
140
|
+
"material": "leather",
|
|
141
|
+
"sole": "EVA"
|
|
142
|
+
},
|
|
143
|
+
"available": true,
|
|
144
|
+
"price": 154.75
|
|
145
|
+
},
|
|
146
|
+
"9635758562": {
|
|
147
|
+
"item_id": "9635758562",
|
|
148
|
+
"options": {
|
|
149
|
+
"size": "9",
|
|
150
|
+
"color": "white",
|
|
151
|
+
"material": "mesh",
|
|
152
|
+
"sole": "rubber"
|
|
153
|
+
},
|
|
154
|
+
"available": true,
|
|
155
|
+
"price": 148.95
|
|
156
|
+
}
|
|
157
|
+
}
|
|
158
|
+
},
|
|
159
|
+
"1801728040": {
|
|
160
|
+
"name": "Smartphone",
|
|
161
|
+
"product_id": "1801728040",
|
|
162
|
+
"variants": {
|
|
163
|
+
"3952176596": {
|
|
164
|
+
"item_id": "3952176596",
|
|
165
|
+
"options": {
|
|
166
|
+
"color": "rose gold",
|
|
167
|
+
"storage": "64GB",
|
|
168
|
+
"RAM": "8GB",
|
|
169
|
+
"screen size": "6.1-inch"
|
|
170
|
+
},
|
|
171
|
+
"available": false,
|
|
172
|
+
"price": 1199.77
|
|
173
|
+
},
|
|
174
|
+
"1507389580": {
|
|
175
|
+
"item_id": "1507389580",
|
|
176
|
+
"options": {
|
|
177
|
+
"color": "black",
|
|
178
|
+
"storage": "128GB",
|
|
179
|
+
"RAM": "8GB",
|
|
180
|
+
"screen size": "5.8-inch"
|
|
181
|
+
},
|
|
182
|
+
"available": true,
|
|
183
|
+
"price": 1157.86
|
|
184
|
+
},
|
|
185
|
+
"5339029584": {
|
|
186
|
+
"item_id": "5339029584",
|
|
187
|
+
"options": {
|
|
188
|
+
"color": "black",
|
|
189
|
+
"storage": "128GB",
|
|
190
|
+
"RAM": "4GB",
|
|
191
|
+
"screen size": "6.5-inch"
|
|
192
|
+
},
|
|
193
|
+
"available": true,
|
|
194
|
+
"price": 1128.99
|
|
195
|
+
},
|
|
196
|
+
"1631373418": {
|
|
197
|
+
"item_id": "1631373418",
|
|
198
|
+
"options": {
|
|
199
|
+
"color": "gold",
|
|
200
|
+
"storage": "128GB",
|
|
201
|
+
"RAM": "6GB",
|
|
202
|
+
"screen size": "6.1-inch"
|
|
203
|
+
},
|
|
204
|
+
"available": false,
|
|
205
|
+
"price": 1291.21
|
|
206
|
+
}
|
|
207
|
+
}
|
|
208
|
+
},
|
|
209
|
+
"2524789262": {
|
|
210
|
+
"name": "Backpack",
|
|
211
|
+
"product_id": "2524789262",
|
|
212
|
+
"variants": {
|
|
213
|
+
"5917587651": {
|
|
214
|
+
"item_id": "5917587651",
|
|
215
|
+
"options": {
|
|
216
|
+
"color": "grey",
|
|
217
|
+
"size": "medium",
|
|
218
|
+
"material": "polyester",
|
|
219
|
+
"compartment": "laptop"
|
|
220
|
+
},
|
|
221
|
+
"available": true,
|
|
222
|
+
"price": 212.79
|
|
223
|
+
},
|
|
224
|
+
"7251508981": {
|
|
225
|
+
"item_id": "7251508981",
|
|
226
|
+
"options": {
|
|
227
|
+
"color": "green",
|
|
228
|
+
"size": "small",
|
|
229
|
+
"material": "leather",
|
|
230
|
+
"compartment": "camera"
|
|
231
|
+
},
|
|
232
|
+
"available": true,
|
|
233
|
+
"price": 212.04
|
|
234
|
+
},
|
|
235
|
+
"8054888773": {
|
|
236
|
+
"item_id": "8054888773",
|
|
237
|
+
"options": {
|
|
238
|
+
"color": "grey",
|
|
239
|
+
"size": "small",
|
|
240
|
+
"material": "nylon",
|
|
241
|
+
"compartment": "laptop"
|
|
242
|
+
},
|
|
243
|
+
"available": true,
|
|
244
|
+
"price": 206.03
|
|
245
|
+
},
|
|
246
|
+
"6309044598": {
|
|
247
|
+
"item_id": "6309044598",
|
|
248
|
+
"options": {
|
|
249
|
+
"color": "grey",
|
|
250
|
+
"size": "large",
|
|
251
|
+
"material": "polyester",
|
|
252
|
+
"compartment": "hydration"
|
|
253
|
+
},
|
|
254
|
+
"available": true,
|
|
255
|
+
"price": 218.59
|
|
256
|
+
},
|
|
257
|
+
"8084436579": {
|
|
258
|
+
"item_id": "8084436579",
|
|
259
|
+
"options": {
|
|
260
|
+
"color": "navy",
|
|
261
|
+
"size": "large",
|
|
262
|
+
"material": "polyester",
|
|
263
|
+
"compartment": "laptop"
|
|
264
|
+
},
|
|
265
|
+
"available": true,
|
|
266
|
+
"price": 219.43
|
|
267
|
+
},
|
|
268
|
+
"8030558068": {
|
|
269
|
+
"item_id": "8030558068",
|
|
270
|
+
"options": {
|
|
271
|
+
"color": "black",
|
|
272
|
+
"size": "medium",
|
|
273
|
+
"material": "nylon",
|
|
274
|
+
"compartment": "hydration"
|
|
275
|
+
},
|
|
276
|
+
"available": false,
|
|
277
|
+
"price": 186.78
|
|
278
|
+
}
|
|
279
|
+
}
|
|
280
|
+
},
|
|
281
|
+
"7996920482": {
|
|
282
|
+
"name": "Coffee Maker",
|
|
283
|
+
"product_id": "7996920482",
|
|
284
|
+
"variants": {
|
|
285
|
+
"3020722515": {
|
|
286
|
+
"item_id": "3020722515",
|
|
287
|
+
"options": {
|
|
288
|
+
"color": "black",
|
|
289
|
+
"capacity": "1 cup",
|
|
290
|
+
"type": "french press",
|
|
291
|
+
"features": "auto shutoff"
|
|
292
|
+
},
|
|
293
|
+
"available": true,
|
|
294
|
+
"price": 238.64
|
|
295
|
+
},
|
|
296
|
+
"2115393569": {
|
|
297
|
+
"item_id": "2115393569",
|
|
298
|
+
"options": {
|
|
299
|
+
"color": "black",
|
|
300
|
+
"capacity": "1 cup",
|
|
301
|
+
"type": "drip",
|
|
302
|
+
"features": "timer"
|
|
303
|
+
},
|
|
304
|
+
"available": true,
|
|
305
|
+
"price": 270.91
|
|
306
|
+
},
|
|
307
|
+
"3039787582": {
|
|
308
|
+
"item_id": "3039787582",
|
|
309
|
+
"options": {
|
|
310
|
+
"color": "stainless steel",
|
|
311
|
+
"capacity": "4 cups",
|
|
312
|
+
"type": "drip",
|
|
313
|
+
"features": "auto shutoff"
|
|
314
|
+
},
|
|
315
|
+
"available": true,
|
|
316
|
+
"price": 256.94
|
|
317
|
+
}
|
|
318
|
+
}
|
|
319
|
+
},
|
|
320
|
+
"8310926033": {
|
|
321
|
+
"name": "Water Bottle",
|
|
322
|
+
"product_id": "8310926033",
|
|
323
|
+
"variants": {
|
|
324
|
+
"2366567022": {
|
|
325
|
+
"item_id": "2366567022",
|
|
326
|
+
"options": {
|
|
327
|
+
"capacity": "1000ml",
|
|
328
|
+
"material": "stainless steel",
|
|
329
|
+
"color": "blue"
|
|
330
|
+
},
|
|
331
|
+
"available": false,
|
|
332
|
+
"price": 54.04
|
|
333
|
+
},
|
|
334
|
+
"3453331371": {
|
|
335
|
+
"item_id": "3453331371",
|
|
336
|
+
"options": {
|
|
337
|
+
"capacity": "500ml",
|
|
338
|
+
"material": "stainless steel",
|
|
339
|
+
"color": "black"
|
|
340
|
+
},
|
|
341
|
+
"available": true,
|
|
342
|
+
"price": 52.79
|
|
343
|
+
},
|
|
344
|
+
"3229676465": {
|
|
345
|
+
"item_id": "3229676465",
|
|
346
|
+
"options": {
|
|
347
|
+
"capacity": "500ml",
|
|
348
|
+
"material": "plastic",
|
|
349
|
+
"color": "black"
|
|
350
|
+
},
|
|
351
|
+
"available": true,
|
|
352
|
+
"price": 51.94
|
|
353
|
+
},
|
|
354
|
+
"4579334072": {
|
|
355
|
+
"item_id": "4579334072",
|
|
356
|
+
"options": {
|
|
357
|
+
"capacity": "750ml",
|
|
358
|
+
"material": "glass",
|
|
359
|
+
"color": "black"
|
|
360
|
+
},
|
|
361
|
+
"available": true,
|
|
362
|
+
"price": 54.85
|
|
363
|
+
},
|
|
364
|
+
"1434748144": {
|
|
365
|
+
"item_id": "1434748144",
|
|
366
|
+
"options": {
|
|
367
|
+
"capacity": "1000ml",
|
|
368
|
+
"material": "glass",
|
|
369
|
+
"color": "red"
|
|
370
|
+
},
|
|
371
|
+
"available": false,
|
|
372
|
+
"price": 49.72
|
|
373
|
+
}
|
|
374
|
+
}
|
|
375
|
+
},
|
|
376
|
+
"6817146515": {
|
|
377
|
+
"name": "Desk Lamp",
|
|
378
|
+
"product_id": "6817146515",
|
|
379
|
+
"variants": {
|
|
380
|
+
"9190635437": {
|
|
381
|
+
"item_id": "9190635437",
|
|
382
|
+
"options": {
|
|
383
|
+
"color": "black",
|
|
384
|
+
"brightness": "low",
|
|
385
|
+
"power source": "USB"
|
|
386
|
+
},
|
|
387
|
+
"available": true,
|
|
388
|
+
"price": 153.23
|
|
389
|
+
},
|
|
390
|
+
"8384507844": {
|
|
391
|
+
"item_id": "8384507844",
|
|
392
|
+
"options": {
|
|
393
|
+
"color": "white",
|
|
394
|
+
"brightness": "medium",
|
|
395
|
+
"power source": "USB"
|
|
396
|
+
},
|
|
397
|
+
"available": false,
|
|
398
|
+
"price": 137.94
|
|
399
|
+
},
|
|
400
|
+
"5320792178": {
|
|
401
|
+
"item_id": "5320792178",
|
|
402
|
+
"options": {
|
|
403
|
+
"color": "black",
|
|
404
|
+
"brightness": "medium",
|
|
405
|
+
"power source": "AC adapter"
|
|
406
|
+
},
|
|
407
|
+
"available": true,
|
|
408
|
+
"price": 135.24
|
|
409
|
+
},
|
|
410
|
+
"1569765161": {
|
|
411
|
+
"item_id": "1569765161",
|
|
412
|
+
"options": {
|
|
413
|
+
"color": "silver",
|
|
414
|
+
"brightness": "low",
|
|
415
|
+
"power source": "AC adapter"
|
|
416
|
+
},
|
|
417
|
+
"available": true,
|
|
418
|
+
"price": 143.02
|
|
419
|
+
},
|
|
420
|
+
"7453605304": {
|
|
421
|
+
"item_id": "7453605304",
|
|
422
|
+
"options": {
|
|
423
|
+
"color": "silver",
|
|
424
|
+
"brightness": "low",
|
|
425
|
+
"power source": "battery"
|
|
426
|
+
},
|
|
427
|
+
"available": true,
|
|
428
|
+
"price": 150.01
|
|
429
|
+
},
|
|
430
|
+
"4385534692": {
|
|
431
|
+
"item_id": "4385534692",
|
|
432
|
+
"options": {
|
|
433
|
+
"color": "white",
|
|
434
|
+
"brightness": "high",
|
|
435
|
+
"power source": "AC adapter"
|
|
436
|
+
},
|
|
437
|
+
"available": false,
|
|
438
|
+
"price": 138.07
|
|
439
|
+
}
|
|
440
|
+
}
|
|
441
|
+
},
|
|
442
|
+
"2892623495": {
|
|
443
|
+
"name": "Notebook",
|
|
444
|
+
"product_id": "2892623495",
|
|
445
|
+
"variants": {
|
|
446
|
+
"1199058591": {
|
|
447
|
+
"item_id": "1199058591",
|
|
448
|
+
"options": {
|
|
449
|
+
"size": "A4",
|
|
450
|
+
"cover type": "hard cover"
|
|
451
|
+
},
|
|
452
|
+
"available": true,
|
|
453
|
+
"price": 32.29
|
|
454
|
+
},
|
|
455
|
+
"6574183535": {
|
|
456
|
+
"item_id": "6574183535",
|
|
457
|
+
"options": {
|
|
458
|
+
"size": "A6",
|
|
459
|
+
"cover type": "hard cover"
|
|
460
|
+
},
|
|
461
|
+
"available": false,
|
|
462
|
+
"price": 28.14
|
|
463
|
+
},
|
|
464
|
+
"9421195098": {
|
|
465
|
+
"item_id": "9421195098",
|
|
466
|
+
"options": {
|
|
467
|
+
"size": "A6",
|
|
468
|
+
"cover type": "soft cover"
|
|
469
|
+
},
|
|
470
|
+
"available": false,
|
|
471
|
+
"price": 32.37
|
|
472
|
+
}
|
|
473
|
+
}
|
|
474
|
+
},
|
|
475
|
+
"7314138884": {
|
|
476
|
+
"name": "Sunglasses",
|
|
477
|
+
"product_id": "7314138884",
|
|
478
|
+
"variants": {
|
|
479
|
+
"4358482460": {
|
|
480
|
+
"item_id": "4358482460",
|
|
481
|
+
"options": {
|
|
482
|
+
"frame color": "black",
|
|
483
|
+
"lens color": "brown",
|
|
484
|
+
"lens type": "polarized",
|
|
485
|
+
"frame material": "plastic"
|
|
486
|
+
},
|
|
487
|
+
"available": true,
|
|
488
|
+
"price": 290.94
|
|
489
|
+
},
|
|
490
|
+
"4548300368": {
|
|
491
|
+
"item_id": "4548300368",
|
|
492
|
+
"options": {
|
|
493
|
+
"frame color": "black",
|
|
494
|
+
"lens color": "green",
|
|
495
|
+
"lens type": "polarized",
|
|
496
|
+
"frame material": "plastic"
|
|
497
|
+
},
|
|
498
|
+
"available": true,
|
|
499
|
+
"price": 287.79
|
|
500
|
+
},
|
|
501
|
+
"9672174103": {
|
|
502
|
+
"item_id": "9672174103",
|
|
503
|
+
"options": {
|
|
504
|
+
"frame color": "brown",
|
|
505
|
+
"lens color": "brown",
|
|
506
|
+
"lens type": "polarized",
|
|
507
|
+
"frame material": "plastic"
|
|
508
|
+
},
|
|
509
|
+
"available": true,
|
|
510
|
+
"price": 281.98
|
|
511
|
+
},
|
|
512
|
+
"2198125883": {
|
|
513
|
+
"item_id": "2198125883",
|
|
514
|
+
"options": {
|
|
515
|
+
"frame color": "silver",
|
|
516
|
+
"lens color": "black",
|
|
517
|
+
"lens type": "polarized",
|
|
518
|
+
"frame material": "metal"
|
|
519
|
+
},
|
|
520
|
+
"available": true,
|
|
521
|
+
"price": 296.16
|
|
522
|
+
},
|
|
523
|
+
"4329558751": {
|
|
524
|
+
"item_id": "4329558751",
|
|
525
|
+
"options": {
|
|
526
|
+
"frame color": "silver",
|
|
527
|
+
"lens color": "blue",
|
|
528
|
+
"lens type": "non-polarized",
|
|
529
|
+
"frame material": "plastic"
|
|
530
|
+
},
|
|
531
|
+
"available": true,
|
|
532
|
+
"price": 297.33
|
|
533
|
+
},
|
|
534
|
+
"2177260429": {
|
|
535
|
+
"item_id": "2177260429",
|
|
536
|
+
"options": {
|
|
537
|
+
"frame color": "black",
|
|
538
|
+
"lens color": "green",
|
|
539
|
+
"lens type": "polarized",
|
|
540
|
+
"frame material": "metal"
|
|
541
|
+
},
|
|
542
|
+
"available": false,
|
|
543
|
+
"price": 296.47
|
|
544
|
+
}
|
|
545
|
+
}
|
|
546
|
+
},
|
|
547
|
+
"6066914160": {
|
|
548
|
+
"name": "Wristwatch",
|
|
549
|
+
"product_id": "6066914160",
|
|
550
|
+
"variants": {
|
|
551
|
+
"1355937109": {
|
|
552
|
+
"item_id": "1355937109",
|
|
553
|
+
"options": {
|
|
554
|
+
"strap material": "leather",
|
|
555
|
+
"dial color": "white"
|
|
556
|
+
},
|
|
557
|
+
"available": true,
|
|
558
|
+
"price": 1985.3
|
|
559
|
+
},
|
|
560
|
+
"8886009523": {
|
|
561
|
+
"item_id": "8886009523",
|
|
562
|
+
"options": {
|
|
563
|
+
"strap material": "silicone",
|
|
564
|
+
"dial color": "blue"
|
|
565
|
+
},
|
|
566
|
+
"available": true,
|
|
567
|
+
"price": 1944.02
|
|
568
|
+
},
|
|
569
|
+
"9949163720": {
|
|
570
|
+
"item_id": "9949163720",
|
|
571
|
+
"options": {
|
|
572
|
+
"strap material": "leather",
|
|
573
|
+
"dial color": "black"
|
|
574
|
+
},
|
|
575
|
+
"available": true,
|
|
576
|
+
"price": 1908.15
|
|
577
|
+
},
|
|
578
|
+
"2226219750": {
|
|
579
|
+
"item_id": "2226219750",
|
|
580
|
+
"options": {
|
|
581
|
+
"strap material": "silicone",
|
|
582
|
+
"dial color": "white"
|
|
583
|
+
},
|
|
584
|
+
"available": true,
|
|
585
|
+
"price": 2009.03
|
|
586
|
+
},
|
|
587
|
+
"1994478369": {
|
|
588
|
+
"item_id": "1994478369",
|
|
589
|
+
"options": {
|
|
590
|
+
"strap material": "silicone",
|
|
591
|
+
"dial color": "black"
|
|
592
|
+
},
|
|
593
|
+
"available": true,
|
|
594
|
+
"price": 2025.51
|
|
595
|
+
},
|
|
596
|
+
"9112290483": {
|
|
597
|
+
"item_id": "9112290483",
|
|
598
|
+
"options": {
|
|
599
|
+
"strap material": "metal",
|
|
600
|
+
"dial color": "blue"
|
|
601
|
+
},
|
|
602
|
+
"available": false,
|
|
603
|
+
"price": 1925.16
|
|
604
|
+
}
|
|
605
|
+
}
|
|
606
|
+
},
|
|
607
|
+
"7352963235": {
|
|
608
|
+
"name": "Electric Toothbrush",
|
|
609
|
+
"product_id": "7352963235",
|
|
610
|
+
"variants": {
|
|
611
|
+
"6164262152": {
|
|
612
|
+
"item_id": "6164262152",
|
|
613
|
+
"options": {
|
|
614
|
+
"color": "white",
|
|
615
|
+
"speed settings": "low",
|
|
616
|
+
"battery type": "rechargeable"
|
|
617
|
+
},
|
|
618
|
+
"available": true,
|
|
619
|
+
"price": 211.11
|
|
620
|
+
},
|
|
621
|
+
"8098621301": {
|
|
622
|
+
"item_id": "8098621301",
|
|
623
|
+
"options": {
|
|
624
|
+
"color": "black",
|
|
625
|
+
"speed settings": "high",
|
|
626
|
+
"battery type": "rechargeable"
|
|
627
|
+
},
|
|
628
|
+
"available": true,
|
|
629
|
+
"price": 192.15
|
|
630
|
+
},
|
|
631
|
+
"2645006275": {
|
|
632
|
+
"item_id": "2645006275",
|
|
633
|
+
"options": {
|
|
634
|
+
"color": "white",
|
|
635
|
+
"speed settings": "high",
|
|
636
|
+
"battery type": "AA batteries"
|
|
637
|
+
},
|
|
638
|
+
"available": true,
|
|
639
|
+
"price": 183.11
|
|
640
|
+
},
|
|
641
|
+
"1583904702": {
|
|
642
|
+
"item_id": "1583904702",
|
|
643
|
+
"options": {
|
|
644
|
+
"color": "blue",
|
|
645
|
+
"speed settings": "low",
|
|
646
|
+
"battery type": "AA batteries"
|
|
647
|
+
},
|
|
648
|
+
"available": true,
|
|
649
|
+
"price": 195.84
|
|
650
|
+
},
|
|
651
|
+
"8798690242": {
|
|
652
|
+
"item_id": "8798690242",
|
|
653
|
+
"options": {
|
|
654
|
+
"color": "black",
|
|
655
|
+
"speed settings": "high",
|
|
656
|
+
"battery type": "AA batteries"
|
|
657
|
+
},
|
|
658
|
+
"available": true,
|
|
659
|
+
"price": 208.07
|
|
660
|
+
},
|
|
661
|
+
"6555827912": {
|
|
662
|
+
"item_id": "6555827912",
|
|
663
|
+
"options": {
|
|
664
|
+
"color": "black",
|
|
665
|
+
"speed settings": "low",
|
|
666
|
+
"battery type": "AA batteries"
|
|
667
|
+
},
|
|
668
|
+
"available": false,
|
|
669
|
+
"price": 199.42
|
|
670
|
+
}
|
|
671
|
+
}
|
|
672
|
+
},
|
|
673
|
+
"4635925001": {
|
|
674
|
+
"name": "Yoga Mat",
|
|
675
|
+
"product_id": "4635925001",
|
|
676
|
+
"variants": {
|
|
677
|
+
"5586947715": {
|
|
678
|
+
"item_id": "5586947715",
|
|
679
|
+
"options": {
|
|
680
|
+
"thickness": "4mm",
|
|
681
|
+
"material": "PVC",
|
|
682
|
+
"color": "blue"
|
|
683
|
+
},
|
|
684
|
+
"available": true,
|
|
685
|
+
"price": 92.53
|
|
686
|
+
},
|
|
687
|
+
"7510236436": {
|
|
688
|
+
"item_id": "7510236436",
|
|
689
|
+
"options": {
|
|
690
|
+
"thickness": "6mm",
|
|
691
|
+
"material": "PVC",
|
|
692
|
+
"color": "green"
|
|
693
|
+
},
|
|
694
|
+
"available": true,
|
|
695
|
+
"price": 105.68
|
|
696
|
+
},
|
|
697
|
+
"1794273251": {
|
|
698
|
+
"item_id": "1794273251",
|
|
699
|
+
"options": {
|
|
700
|
+
"thickness": "5mm",
|
|
701
|
+
"material": "TPE",
|
|
702
|
+
"color": "pink"
|
|
703
|
+
},
|
|
704
|
+
"available": true,
|
|
705
|
+
"price": 103.84
|
|
706
|
+
}
|
|
707
|
+
}
|
|
708
|
+
},
|
|
709
|
+
"4768869376": {
|
|
710
|
+
"name": "Bluetooth Speaker",
|
|
711
|
+
"product_id": "4768869376",
|
|
712
|
+
"variants": {
|
|
713
|
+
"9440686670": {
|
|
714
|
+
"item_id": "9440686670",
|
|
715
|
+
"options": {
|
|
716
|
+
"color": "green",
|
|
717
|
+
"battery life": "20 hours",
|
|
718
|
+
"water resistance": "no"
|
|
719
|
+
},
|
|
720
|
+
"available": true,
|
|
721
|
+
"price": 298.91
|
|
722
|
+
},
|
|
723
|
+
"5650803029": {
|
|
724
|
+
"item_id": "5650803029",
|
|
725
|
+
"options": {
|
|
726
|
+
"color": "black",
|
|
727
|
+
"battery life": "20 hours",
|
|
728
|
+
"water resistance": "no"
|
|
729
|
+
},
|
|
730
|
+
"available": false,
|
|
731
|
+
"price": 324.63
|
|
732
|
+
},
|
|
733
|
+
"7597543861": {
|
|
734
|
+
"item_id": "7597543861",
|
|
735
|
+
"options": {
|
|
736
|
+
"color": "black",
|
|
737
|
+
"battery life": "10 hours",
|
|
738
|
+
"water resistance": "no"
|
|
739
|
+
},
|
|
740
|
+
"available": false,
|
|
741
|
+
"price": 310.47
|
|
742
|
+
},
|
|
743
|
+
"4716977452": {
|
|
744
|
+
"item_id": "4716977452",
|
|
745
|
+
"options": {
|
|
746
|
+
"color": "blue",
|
|
747
|
+
"battery life": "10 hours",
|
|
748
|
+
"water resistance": "yes"
|
|
749
|
+
},
|
|
750
|
+
"available": true,
|
|
751
|
+
"price": 289.69
|
|
752
|
+
},
|
|
753
|
+
"7617930199": {
|
|
754
|
+
"item_id": "7617930199",
|
|
755
|
+
"options": {
|
|
756
|
+
"color": "red",
|
|
757
|
+
"battery life": "20 hours",
|
|
758
|
+
"water resistance": "yes"
|
|
759
|
+
},
|
|
760
|
+
"available": true,
|
|
761
|
+
"price": 285.94
|
|
762
|
+
},
|
|
763
|
+
"3254583681": {
|
|
764
|
+
"item_id": "3254583681",
|
|
765
|
+
"options": {
|
|
766
|
+
"color": "blue",
|
|
767
|
+
"battery life": "20 hours",
|
|
768
|
+
"water resistance": "yes"
|
|
769
|
+
},
|
|
770
|
+
"available": true,
|
|
771
|
+
"price": 302.67
|
|
772
|
+
},
|
|
773
|
+
"6704763132": {
|
|
774
|
+
"item_id": "6704763132",
|
|
775
|
+
"options": {
|
|
776
|
+
"color": "blue",
|
|
777
|
+
"battery life": "10 hours",
|
|
778
|
+
"water resistance": "no"
|
|
779
|
+
},
|
|
780
|
+
"available": true,
|
|
781
|
+
"price": 305.45
|
|
782
|
+
},
|
|
783
|
+
"5967152432": {
|
|
784
|
+
"item_id": "5967152432",
|
|
785
|
+
"options": {
|
|
786
|
+
"color": "green",
|
|
787
|
+
"battery life": "10 hours",
|
|
788
|
+
"water resistance": "yes"
|
|
789
|
+
},
|
|
790
|
+
"available": false,
|
|
791
|
+
"price": 292.71
|
|
792
|
+
}
|
|
793
|
+
}
|
|
794
|
+
},
|
|
795
|
+
"5713490933": {
|
|
796
|
+
"name": "Gaming Mouse",
|
|
797
|
+
"product_id": "5713490933",
|
|
798
|
+
"variants": {
|
|
799
|
+
"3330317167": {
|
|
800
|
+
"item_id": "3330317167",
|
|
801
|
+
"options": {
|
|
802
|
+
"color": "black",
|
|
803
|
+
"sensor type": "optical",
|
|
804
|
+
"connectivity": "wired"
|
|
805
|
+
},
|
|
806
|
+
"available": true,
|
|
807
|
+
"price": 137.32
|
|
808
|
+
},
|
|
809
|
+
"2880340443": {
|
|
810
|
+
"item_id": "2880340443",
|
|
811
|
+
"options": {
|
|
812
|
+
"color": "white",
|
|
813
|
+
"sensor type": "optical",
|
|
814
|
+
"connectivity": "wired"
|
|
815
|
+
},
|
|
816
|
+
"available": true,
|
|
817
|
+
"price": 137.22
|
|
818
|
+
},
|
|
819
|
+
"8896479688": {
|
|
820
|
+
"item_id": "8896479688",
|
|
821
|
+
"options": {
|
|
822
|
+
"color": "white",
|
|
823
|
+
"sensor type": "optical",
|
|
824
|
+
"connectivity": "wireless"
|
|
825
|
+
},
|
|
826
|
+
"available": true,
|
|
827
|
+
"price": 143.15
|
|
828
|
+
},
|
|
829
|
+
"8214883393": {
|
|
830
|
+
"item_id": "8214883393",
|
|
831
|
+
"options": {
|
|
832
|
+
"color": "black",
|
|
833
|
+
"sensor type": "laser",
|
|
834
|
+
"connectivity": "wireless"
|
|
835
|
+
},
|
|
836
|
+
"available": true,
|
|
837
|
+
"price": 150.58
|
|
838
|
+
},
|
|
839
|
+
"7420906769": {
|
|
840
|
+
"item_id": "7420906769",
|
|
841
|
+
"options": {
|
|
842
|
+
"color": "white",
|
|
843
|
+
"sensor type": "laser",
|
|
844
|
+
"connectivity": "wireless"
|
|
845
|
+
},
|
|
846
|
+
"available": false,
|
|
847
|
+
"price": 138.47
|
|
848
|
+
}
|
|
849
|
+
}
|
|
850
|
+
},
|
|
851
|
+
"3377618313": {
|
|
852
|
+
"name": "Action Camera",
|
|
853
|
+
"product_id": "3377618313",
|
|
854
|
+
"variants": {
|
|
855
|
+
"5436236388": {
|
|
856
|
+
"item_id": "5436236388",
|
|
857
|
+
"options": {
|
|
858
|
+
"resolution": "1080p",
|
|
859
|
+
"waterproof": "yes",
|
|
860
|
+
"color": "silver"
|
|
861
|
+
},
|
|
862
|
+
"available": false,
|
|
863
|
+
"price": 538.6
|
|
864
|
+
},
|
|
865
|
+
"6700049080": {
|
|
866
|
+
"item_id": "6700049080",
|
|
867
|
+
"options": {
|
|
868
|
+
"resolution": "4K",
|
|
869
|
+
"waterproof": "yes",
|
|
870
|
+
"color": "black"
|
|
871
|
+
},
|
|
872
|
+
"available": true,
|
|
873
|
+
"price": 466.75
|
|
874
|
+
},
|
|
875
|
+
"1586641416": {
|
|
876
|
+
"item_id": "1586641416",
|
|
877
|
+
"options": {
|
|
878
|
+
"resolution": "5K",
|
|
879
|
+
"waterproof": "yes",
|
|
880
|
+
"color": "silver"
|
|
881
|
+
},
|
|
882
|
+
"available": false,
|
|
883
|
+
"price": 497.39
|
|
884
|
+
},
|
|
885
|
+
"6117189161": {
|
|
886
|
+
"item_id": "6117189161",
|
|
887
|
+
"options": {
|
|
888
|
+
"resolution": "4K",
|
|
889
|
+
"waterproof": "yes",
|
|
890
|
+
"color": "silver"
|
|
891
|
+
},
|
|
892
|
+
"available": true,
|
|
893
|
+
"price": 481.5
|
|
894
|
+
},
|
|
895
|
+
"5925362855": {
|
|
896
|
+
"item_id": "5925362855",
|
|
897
|
+
"options": {
|
|
898
|
+
"resolution": "1080p",
|
|
899
|
+
"waterproof": "yes",
|
|
900
|
+
"color": "black"
|
|
901
|
+
},
|
|
902
|
+
"available": true,
|
|
903
|
+
"price": 503.51
|
|
904
|
+
},
|
|
905
|
+
"4859937227": {
|
|
906
|
+
"item_id": "4859937227",
|
|
907
|
+
"options": {
|
|
908
|
+
"resolution": "5K",
|
|
909
|
+
"waterproof": "no",
|
|
910
|
+
"color": "silver"
|
|
911
|
+
},
|
|
912
|
+
"available": false,
|
|
913
|
+
"price": 503.58
|
|
914
|
+
}
|
|
915
|
+
}
|
|
916
|
+
},
|
|
917
|
+
"6679515468": {
|
|
918
|
+
"name": "Garden Hose",
|
|
919
|
+
"product_id": "6679515468",
|
|
920
|
+
"variants": {
|
|
921
|
+
"9829827210": {
|
|
922
|
+
"item_id": "9829827210",
|
|
923
|
+
"options": {
|
|
924
|
+
"length": "25ft",
|
|
925
|
+
"material": "vinyl",
|
|
926
|
+
"color": "blue"
|
|
927
|
+
},
|
|
928
|
+
"available": true,
|
|
929
|
+
"price": 90.43
|
|
930
|
+
},
|
|
931
|
+
"5206946487": {
|
|
932
|
+
"item_id": "5206946487",
|
|
933
|
+
"options": {
|
|
934
|
+
"length": "50ft",
|
|
935
|
+
"material": "vinyl",
|
|
936
|
+
"color": "black"
|
|
937
|
+
},
|
|
938
|
+
"available": true,
|
|
939
|
+
"price": 95.08
|
|
940
|
+
},
|
|
941
|
+
"3369928769": {
|
|
942
|
+
"item_id": "3369928769",
|
|
943
|
+
"options": {
|
|
944
|
+
"length": "25ft",
|
|
945
|
+
"material": "vinyl",
|
|
946
|
+
"color": "green"
|
|
947
|
+
},
|
|
948
|
+
"available": true,
|
|
949
|
+
"price": 97.35
|
|
950
|
+
},
|
|
951
|
+
"5753502325": {
|
|
952
|
+
"item_id": "5753502325",
|
|
953
|
+
"options": {
|
|
954
|
+
"length": "25ft",
|
|
955
|
+
"material": "rubber",
|
|
956
|
+
"color": "green"
|
|
957
|
+
},
|
|
958
|
+
"available": false,
|
|
959
|
+
"price": 96.35
|
|
960
|
+
}
|
|
961
|
+
}
|
|
962
|
+
},
|
|
963
|
+
"7363354090": {
|
|
964
|
+
"name": "Hiking Boots",
|
|
965
|
+
"product_id": "7363354090",
|
|
966
|
+
"variants": {
|
|
967
|
+
"2185126308": {
|
|
968
|
+
"item_id": "2185126308",
|
|
969
|
+
"options": {
|
|
970
|
+
"size": "10",
|
|
971
|
+
"material": "leather",
|
|
972
|
+
"waterproof": "no"
|
|
973
|
+
},
|
|
974
|
+
"available": false,
|
|
975
|
+
"price": 241.9
|
|
976
|
+
},
|
|
977
|
+
"2648909398": {
|
|
978
|
+
"item_id": "2648909398",
|
|
979
|
+
"options": {
|
|
980
|
+
"size": "8",
|
|
981
|
+
"material": "leather",
|
|
982
|
+
"waterproof": "yes"
|
|
983
|
+
},
|
|
984
|
+
"available": false,
|
|
985
|
+
"price": 240.87
|
|
986
|
+
},
|
|
987
|
+
"8277474082": {
|
|
988
|
+
"item_id": "8277474082",
|
|
989
|
+
"options": {
|
|
990
|
+
"size": "12",
|
|
991
|
+
"material": "leather",
|
|
992
|
+
"waterproof": "yes"
|
|
993
|
+
},
|
|
994
|
+
"available": true,
|
|
995
|
+
"price": 236.57
|
|
996
|
+
},
|
|
997
|
+
"4582956489": {
|
|
998
|
+
"item_id": "4582956489",
|
|
999
|
+
"options": {
|
|
1000
|
+
"size": "12",
|
|
1001
|
+
"material": "synthetic",
|
|
1002
|
+
"waterproof": "no"
|
|
1003
|
+
},
|
|
1004
|
+
"available": true,
|
|
1005
|
+
"price": 241.96
|
|
1006
|
+
},
|
|
1007
|
+
"3812493782": {
|
|
1008
|
+
"item_id": "3812493782",
|
|
1009
|
+
"options": {
|
|
1010
|
+
"size": "7",
|
|
1011
|
+
"material": "leather",
|
|
1012
|
+
"waterproof": "yes"
|
|
1013
|
+
},
|
|
1014
|
+
"available": true,
|
|
1015
|
+
"price": 244.34
|
|
1016
|
+
},
|
|
1017
|
+
"2658930189": {
|
|
1018
|
+
"item_id": "2658930189",
|
|
1019
|
+
"options": {
|
|
1020
|
+
"size": "9",
|
|
1021
|
+
"material": "synthetic",
|
|
1022
|
+
"waterproof": "yes"
|
|
1023
|
+
},
|
|
1024
|
+
"available": false,
|
|
1025
|
+
"price": 241.68
|
|
1026
|
+
}
|
|
1027
|
+
}
|
|
1028
|
+
},
|
|
1029
|
+
"8024098596": {
|
|
1030
|
+
"name": "Tablet",
|
|
1031
|
+
"product_id": "8024098596",
|
|
1032
|
+
"variants": {
|
|
1033
|
+
"3788616824": {
|
|
1034
|
+
"item_id": "3788616824",
|
|
1035
|
+
"options": {
|
|
1036
|
+
"screen size": "10-inch",
|
|
1037
|
+
"storage": "128GB",
|
|
1038
|
+
"color": "black"
|
|
1039
|
+
},
|
|
1040
|
+
"available": false,
|
|
1041
|
+
"price": 951.21
|
|
1042
|
+
},
|
|
1043
|
+
"2235648106": {
|
|
1044
|
+
"item_id": "2235648106",
|
|
1045
|
+
"options": {
|
|
1046
|
+
"screen size": "10-inch",
|
|
1047
|
+
"storage": "32GB",
|
|
1048
|
+
"color": "black"
|
|
1049
|
+
},
|
|
1050
|
+
"available": true,
|
|
1051
|
+
"price": 1054.43
|
|
1052
|
+
},
|
|
1053
|
+
"7535423717": {
|
|
1054
|
+
"item_id": "7535423717",
|
|
1055
|
+
"options": {
|
|
1056
|
+
"screen size": "8-inch",
|
|
1057
|
+
"storage": "128GB",
|
|
1058
|
+
"color": "silver"
|
|
1059
|
+
},
|
|
1060
|
+
"available": false,
|
|
1061
|
+
"price": 904.46
|
|
1062
|
+
}
|
|
1063
|
+
}
|
|
1064
|
+
},
|
|
1065
|
+
"3801771308": {
|
|
1066
|
+
"name": "E-Reader",
|
|
1067
|
+
"product_id": "3801771308",
|
|
1068
|
+
"variants": {
|
|
1069
|
+
"4273929280": {
|
|
1070
|
+
"item_id": "4273929280",
|
|
1071
|
+
"options": {
|
|
1072
|
+
"screen size": "7-inch",
|
|
1073
|
+
"connectivity": "Wi-Fi + Cellular",
|
|
1074
|
+
"storage": "32GB"
|
|
1075
|
+
},
|
|
1076
|
+
"available": true,
|
|
1077
|
+
"price": 244.95
|
|
1078
|
+
},
|
|
1079
|
+
"7609274509": {
|
|
1080
|
+
"item_id": "7609274509",
|
|
1081
|
+
"options": {
|
|
1082
|
+
"screen size": "8-inch",
|
|
1083
|
+
"connectivity": "Wi-Fi",
|
|
1084
|
+
"storage": "32GB"
|
|
1085
|
+
},
|
|
1086
|
+
"available": true,
|
|
1087
|
+
"price": 243.4
|
|
1088
|
+
},
|
|
1089
|
+
"9494281769": {
|
|
1090
|
+
"item_id": "9494281769",
|
|
1091
|
+
"options": {
|
|
1092
|
+
"screen size": "8-inch",
|
|
1093
|
+
"connectivity": "Wi-Fi",
|
|
1094
|
+
"storage": "8GB"
|
|
1095
|
+
},
|
|
1096
|
+
"available": true,
|
|
1097
|
+
"price": 252.06
|
|
1098
|
+
},
|
|
1099
|
+
"5510402676": {
|
|
1100
|
+
"item_id": "5510402676",
|
|
1101
|
+
"options": {
|
|
1102
|
+
"screen size": "6-inch",
|
|
1103
|
+
"connectivity": "Wi-Fi",
|
|
1104
|
+
"storage": "8GB"
|
|
1105
|
+
},
|
|
1106
|
+
"available": true,
|
|
1107
|
+
"price": 267.07
|
|
1108
|
+
},
|
|
1109
|
+
"6268080249": {
|
|
1110
|
+
"item_id": "6268080249",
|
|
1111
|
+
"options": {
|
|
1112
|
+
"screen size": "7-inch",
|
|
1113
|
+
"connectivity": "Wi-Fi",
|
|
1114
|
+
"storage": "8GB"
|
|
1115
|
+
},
|
|
1116
|
+
"available": false,
|
|
1117
|
+
"price": 244.02
|
|
1118
|
+
}
|
|
1119
|
+
}
|
|
1120
|
+
},
|
|
1121
|
+
"6942297802": {
|
|
1122
|
+
"name": "Portable Charger",
|
|
1123
|
+
"product_id": "6942297802",
|
|
1124
|
+
"variants": {
|
|
1125
|
+
"7866854614": {
|
|
1126
|
+
"item_id": "7866854614",
|
|
1127
|
+
"options": {
|
|
1128
|
+
"capacity": "5000mAh",
|
|
1129
|
+
"output": "USB-C",
|
|
1130
|
+
"color": "white"
|
|
1131
|
+
},
|
|
1132
|
+
"available": true,
|
|
1133
|
+
"price": 105.49
|
|
1134
|
+
},
|
|
1135
|
+
"8349903180": {
|
|
1136
|
+
"item_id": "8349903180",
|
|
1137
|
+
"options": {
|
|
1138
|
+
"capacity": "20000mAh",
|
|
1139
|
+
"output": "Wireless",
|
|
1140
|
+
"color": "black"
|
|
1141
|
+
},
|
|
1142
|
+
"available": true,
|
|
1143
|
+
"price": 102.07
|
|
1144
|
+
},
|
|
1145
|
+
"8827799340": {
|
|
1146
|
+
"item_id": "8827799340",
|
|
1147
|
+
"options": {
|
|
1148
|
+
"capacity": "5000mAh",
|
|
1149
|
+
"output": "Wireless",
|
|
1150
|
+
"color": "black"
|
|
1151
|
+
},
|
|
1152
|
+
"available": false,
|
|
1153
|
+
"price": 106.44
|
|
1154
|
+
}
|
|
1155
|
+
}
|
|
1156
|
+
},
|
|
1157
|
+
"2985987096": {
|
|
1158
|
+
"name": "Indoor Security Camera",
|
|
1159
|
+
"product_id": "2985987096",
|
|
1160
|
+
"variants": {
|
|
1161
|
+
"8470360507": {
|
|
1162
|
+
"item_id": "8470360507",
|
|
1163
|
+
"options": {
|
|
1164
|
+
"resolution": "2K",
|
|
1165
|
+
"field of view": "130 degrees",
|
|
1166
|
+
"connectivity": "Ethernet"
|
|
1167
|
+
},
|
|
1168
|
+
"available": true,
|
|
1169
|
+
"price": 291.31
|
|
1170
|
+
},
|
|
1171
|
+
"5810561222": {
|
|
1172
|
+
"item_id": "5810561222",
|
|
1173
|
+
"options": {
|
|
1174
|
+
"resolution": "4K",
|
|
1175
|
+
"field of view": "130 degrees",
|
|
1176
|
+
"connectivity": "Wi-Fi"
|
|
1177
|
+
},
|
|
1178
|
+
"available": false,
|
|
1179
|
+
"price": 274.98
|
|
1180
|
+
},
|
|
1181
|
+
"1999523885": {
|
|
1182
|
+
"item_id": "1999523885",
|
|
1183
|
+
"options": {
|
|
1184
|
+
"resolution": "4K",
|
|
1185
|
+
"field of view": "160 degrees",
|
|
1186
|
+
"connectivity": "Wi-Fi"
|
|
1187
|
+
},
|
|
1188
|
+
"available": false,
|
|
1189
|
+
"price": 294.47
|
|
1190
|
+
}
|
|
1191
|
+
}
|
|
1192
|
+
},
|
|
1193
|
+
"1075968781": {
|
|
1194
|
+
"name": "Electric Kettle",
|
|
1195
|
+
"product_id": "1075968781",
|
|
1196
|
+
"variants": {
|
|
1197
|
+
"4064702754": {
|
|
1198
|
+
"item_id": "4064702754",
|
|
1199
|
+
"options": {
|
|
1200
|
+
"capacity": "2L",
|
|
1201
|
+
"material": "glass",
|
|
1202
|
+
"color": "white"
|
|
1203
|
+
},
|
|
1204
|
+
"available": true,
|
|
1205
|
+
"price": 159.78
|
|
1206
|
+
},
|
|
1207
|
+
"8142779083": {
|
|
1208
|
+
"item_id": "8142779083",
|
|
1209
|
+
"options": {
|
|
1210
|
+
"capacity": "1L",
|
|
1211
|
+
"material": "stainless steel",
|
|
1212
|
+
"color": "silver"
|
|
1213
|
+
},
|
|
1214
|
+
"available": false,
|
|
1215
|
+
"price": 157.53
|
|
1216
|
+
},
|
|
1217
|
+
"5428723833": {
|
|
1218
|
+
"item_id": "5428723833",
|
|
1219
|
+
"options": {
|
|
1220
|
+
"capacity": "1.5L",
|
|
1221
|
+
"material": "plastic",
|
|
1222
|
+
"color": "black"
|
|
1223
|
+
},
|
|
1224
|
+
"available": true,
|
|
1225
|
+
"price": 145.48
|
|
1226
|
+
}
|
|
1227
|
+
}
|
|
1228
|
+
},
|
|
1229
|
+
"1656367028": {
|
|
1230
|
+
"name": "Mechanical Keyboard",
|
|
1231
|
+
"product_id": "1656367028",
|
|
1232
|
+
"variants": {
|
|
1233
|
+
"7658724607": {
|
|
1234
|
+
"item_id": "7658724607",
|
|
1235
|
+
"options": {
|
|
1236
|
+
"switch type": "tactile",
|
|
1237
|
+
"backlight": "none",
|
|
1238
|
+
"size": "80%"
|
|
1239
|
+
},
|
|
1240
|
+
"available": true,
|
|
1241
|
+
"price": 256.73
|
|
1242
|
+
},
|
|
1243
|
+
"6342039236": {
|
|
1244
|
+
"item_id": "6342039236",
|
|
1245
|
+
"options": {
|
|
1246
|
+
"switch type": "clicky",
|
|
1247
|
+
"backlight": "white",
|
|
1248
|
+
"size": "full size"
|
|
1249
|
+
},
|
|
1250
|
+
"available": true,
|
|
1251
|
+
"price": 244.91
|
|
1252
|
+
},
|
|
1253
|
+
"9991484137": {
|
|
1254
|
+
"item_id": "9991484137",
|
|
1255
|
+
"options": {
|
|
1256
|
+
"switch type": "tactile",
|
|
1257
|
+
"backlight": "white",
|
|
1258
|
+
"size": "80%"
|
|
1259
|
+
},
|
|
1260
|
+
"available": true,
|
|
1261
|
+
"price": 240.97
|
|
1262
|
+
},
|
|
1263
|
+
"1421289881": {
|
|
1264
|
+
"item_id": "1421289881",
|
|
1265
|
+
"options": {
|
|
1266
|
+
"switch type": "linear",
|
|
1267
|
+
"backlight": "none",
|
|
1268
|
+
"size": "80%"
|
|
1269
|
+
},
|
|
1270
|
+
"available": true,
|
|
1271
|
+
"price": 268.77
|
|
1272
|
+
},
|
|
1273
|
+
"7706410293": {
|
|
1274
|
+
"item_id": "7706410293",
|
|
1275
|
+
"options": {
|
|
1276
|
+
"switch type": "clicky",
|
|
1277
|
+
"backlight": "none",
|
|
1278
|
+
"size": "full size"
|
|
1279
|
+
},
|
|
1280
|
+
"available": true,
|
|
1281
|
+
"price": 269.16
|
|
1282
|
+
},
|
|
1283
|
+
"9690244451": {
|
|
1284
|
+
"item_id": "9690244451",
|
|
1285
|
+
"options": {
|
|
1286
|
+
"switch type": "clicky",
|
|
1287
|
+
"backlight": "RGB",
|
|
1288
|
+
"size": "60%"
|
|
1289
|
+
},
|
|
1290
|
+
"available": false,
|
|
1291
|
+
"price": 236.51
|
|
1292
|
+
}
|
|
1293
|
+
}
|
|
1294
|
+
},
|
|
1295
|
+
"9924732112": {
|
|
1296
|
+
"name": "Wireless Earbuds",
|
|
1297
|
+
"product_id": "9924732112",
|
|
1298
|
+
"variants": {
|
|
1299
|
+
"1646531091": {
|
|
1300
|
+
"item_id": "1646531091",
|
|
1301
|
+
"options": {
|
|
1302
|
+
"color": "blue",
|
|
1303
|
+
"battery life": "6 hours",
|
|
1304
|
+
"water resistance": "IPX4"
|
|
1305
|
+
},
|
|
1306
|
+
"available": true,
|
|
1307
|
+
"price": 232.49
|
|
1308
|
+
},
|
|
1309
|
+
"2757705742": {
|
|
1310
|
+
"item_id": "2757705742",
|
|
1311
|
+
"options": {
|
|
1312
|
+
"color": "blue",
|
|
1313
|
+
"battery life": "4 hours",
|
|
1314
|
+
"water resistance": "IPX7"
|
|
1315
|
+
},
|
|
1316
|
+
"available": false,
|
|
1317
|
+
"price": 258.97
|
|
1318
|
+
},
|
|
1319
|
+
"6452271382": {
|
|
1320
|
+
"item_id": "6452271382",
|
|
1321
|
+
"options": {
|
|
1322
|
+
"color": "blue",
|
|
1323
|
+
"battery life": "4 hours",
|
|
1324
|
+
"water resistance": "IPX4"
|
|
1325
|
+
},
|
|
1326
|
+
"available": true,
|
|
1327
|
+
"price": 258.84
|
|
1328
|
+
},
|
|
1329
|
+
"8555936349": {
|
|
1330
|
+
"item_id": "8555936349",
|
|
1331
|
+
"options": {
|
|
1332
|
+
"color": "blue",
|
|
1333
|
+
"battery life": "8 hours",
|
|
1334
|
+
"water resistance": "IPX4"
|
|
1335
|
+
},
|
|
1336
|
+
"available": true,
|
|
1337
|
+
"price": 226.49
|
|
1338
|
+
},
|
|
1339
|
+
"2052249669": {
|
|
1340
|
+
"item_id": "2052249669",
|
|
1341
|
+
"options": {
|
|
1342
|
+
"color": "white",
|
|
1343
|
+
"battery life": "4 hours",
|
|
1344
|
+
"water resistance": "not resistant"
|
|
1345
|
+
},
|
|
1346
|
+
"available": true,
|
|
1347
|
+
"price": 237.14
|
|
1348
|
+
},
|
|
1349
|
+
"6077640618": {
|
|
1350
|
+
"item_id": "6077640618",
|
|
1351
|
+
"options": {
|
|
1352
|
+
"color": "blue",
|
|
1353
|
+
"battery life": "8 hours",
|
|
1354
|
+
"water resistance": "not resistant"
|
|
1355
|
+
},
|
|
1356
|
+
"available": true,
|
|
1357
|
+
"price": 242.92
|
|
1358
|
+
},
|
|
1359
|
+
"2499294441": {
|
|
1360
|
+
"item_id": "2499294441",
|
|
1361
|
+
"options": {
|
|
1362
|
+
"color": "black",
|
|
1363
|
+
"battery life": "8 hours",
|
|
1364
|
+
"water resistance": "IPX7"
|
|
1365
|
+
},
|
|
1366
|
+
"available": false,
|
|
1367
|
+
"price": 258.36
|
|
1368
|
+
}
|
|
1369
|
+
}
|
|
1370
|
+
},
|
|
1371
|
+
"4896585277": {
|
|
1372
|
+
"name": "Smart Thermostat",
|
|
1373
|
+
"product_id": "4896585277",
|
|
1374
|
+
"variants": {
|
|
1375
|
+
"8722653925": {
|
|
1376
|
+
"item_id": "8722653925",
|
|
1377
|
+
"options": {
|
|
1378
|
+
"compatibility": "Google Assistant",
|
|
1379
|
+
"color": "white"
|
|
1380
|
+
},
|
|
1381
|
+
"available": false,
|
|
1382
|
+
"price": 227.8
|
|
1383
|
+
},
|
|
1384
|
+
"8593894906": {
|
|
1385
|
+
"item_id": "8593894906",
|
|
1386
|
+
"options": {
|
|
1387
|
+
"compatibility": "Amazon Alexa",
|
|
1388
|
+
"color": "white"
|
|
1389
|
+
},
|
|
1390
|
+
"available": false,
|
|
1391
|
+
"price": 263.11
|
|
1392
|
+
},
|
|
1393
|
+
"2791467853": {
|
|
1394
|
+
"item_id": "2791467853",
|
|
1395
|
+
"options": {
|
|
1396
|
+
"compatibility": "Google Assistant",
|
|
1397
|
+
"color": "stainless steel"
|
|
1398
|
+
},
|
|
1399
|
+
"available": false,
|
|
1400
|
+
"price": 242.53
|
|
1401
|
+
}
|
|
1402
|
+
}
|
|
1403
|
+
},
|
|
1404
|
+
"8560156827": {
|
|
1405
|
+
"name": "Fleece Jacket",
|
|
1406
|
+
"product_id": "8560156827",
|
|
1407
|
+
"variants": {
|
|
1408
|
+
"8590708195": {
|
|
1409
|
+
"item_id": "8590708195",
|
|
1410
|
+
"options": {
|
|
1411
|
+
"size": "XL",
|
|
1412
|
+
"color": "navy",
|
|
1413
|
+
"zipper": "half"
|
|
1414
|
+
},
|
|
1415
|
+
"available": true,
|
|
1416
|
+
"price": 157.61
|
|
1417
|
+
},
|
|
1418
|
+
"8733974883": {
|
|
1419
|
+
"item_id": "8733974883",
|
|
1420
|
+
"options": {
|
|
1421
|
+
"size": "L",
|
|
1422
|
+
"color": "red",
|
|
1423
|
+
"zipper": "half"
|
|
1424
|
+
},
|
|
1425
|
+
"available": true,
|
|
1426
|
+
"price": 153.18
|
|
1427
|
+
},
|
|
1428
|
+
"8161321868": {
|
|
1429
|
+
"item_id": "8161321868",
|
|
1430
|
+
"options": {
|
|
1431
|
+
"size": "XS",
|
|
1432
|
+
"color": "navy",
|
|
1433
|
+
"zipper": "full"
|
|
1434
|
+
},
|
|
1435
|
+
"available": true,
|
|
1436
|
+
"price": 152.45
|
|
1437
|
+
},
|
|
1438
|
+
"7528037711": {
|
|
1439
|
+
"item_id": "7528037711",
|
|
1440
|
+
"options": {
|
|
1441
|
+
"size": "XL",
|
|
1442
|
+
"color": "navy",
|
|
1443
|
+
"zipper": "full"
|
|
1444
|
+
},
|
|
1445
|
+
"available": true,
|
|
1446
|
+
"price": 157.86
|
|
1447
|
+
},
|
|
1448
|
+
"9385662952": {
|
|
1449
|
+
"item_id": "9385662952",
|
|
1450
|
+
"options": {
|
|
1451
|
+
"size": "L",
|
|
1452
|
+
"color": "black",
|
|
1453
|
+
"zipper": "full"
|
|
1454
|
+
},
|
|
1455
|
+
"available": true,
|
|
1456
|
+
"price": 159.92
|
|
1457
|
+
},
|
|
1458
|
+
"4728397765": {
|
|
1459
|
+
"item_id": "4728397765",
|
|
1460
|
+
"options": {
|
|
1461
|
+
"size": "M",
|
|
1462
|
+
"color": "black",
|
|
1463
|
+
"zipper": "full"
|
|
1464
|
+
},
|
|
1465
|
+
"available": false,
|
|
1466
|
+
"price": 149.48
|
|
1467
|
+
}
|
|
1468
|
+
}
|
|
1469
|
+
},
|
|
1470
|
+
"2344688344": {
|
|
1471
|
+
"name": "Wall Clock",
|
|
1472
|
+
"product_id": "2344688344",
|
|
1473
|
+
"variants": {
|
|
1474
|
+
"6534134392": {
|
|
1475
|
+
"item_id": "6534134392",
|
|
1476
|
+
"options": {
|
|
1477
|
+
"diameter": "10 inches",
|
|
1478
|
+
"color": "wood",
|
|
1479
|
+
"type": "analog"
|
|
1480
|
+
},
|
|
1481
|
+
"available": true,
|
|
1482
|
+
"price": 196.15
|
|
1483
|
+
},
|
|
1484
|
+
"8610532516": {
|
|
1485
|
+
"item_id": "8610532516",
|
|
1486
|
+
"options": {
|
|
1487
|
+
"diameter": "10 inches",
|
|
1488
|
+
"color": "black",
|
|
1489
|
+
"type": "digital"
|
|
1490
|
+
},
|
|
1491
|
+
"available": true,
|
|
1492
|
+
"price": 203.76
|
|
1493
|
+
},
|
|
1494
|
+
"7791931443": {
|
|
1495
|
+
"item_id": "7791931443",
|
|
1496
|
+
"options": {
|
|
1497
|
+
"diameter": "14 inches",
|
|
1498
|
+
"color": "black",
|
|
1499
|
+
"type": "analog"
|
|
1500
|
+
},
|
|
1501
|
+
"available": true,
|
|
1502
|
+
"price": 195.63
|
|
1503
|
+
},
|
|
1504
|
+
"6508153405": {
|
|
1505
|
+
"item_id": "6508153405",
|
|
1506
|
+
"options": {
|
|
1507
|
+
"diameter": "12 inches",
|
|
1508
|
+
"color": "white",
|
|
1509
|
+
"type": "analog"
|
|
1510
|
+
},
|
|
1511
|
+
"available": true,
|
|
1512
|
+
"price": 191.55
|
|
1513
|
+
},
|
|
1514
|
+
"8917609800": {
|
|
1515
|
+
"item_id": "8917609800",
|
|
1516
|
+
"options": {
|
|
1517
|
+
"diameter": "10 inches",
|
|
1518
|
+
"color": "white",
|
|
1519
|
+
"type": "digital"
|
|
1520
|
+
},
|
|
1521
|
+
"available": false,
|
|
1522
|
+
"price": 195.59
|
|
1523
|
+
}
|
|
1524
|
+
}
|
|
1525
|
+
},
|
|
1526
|
+
"7233192239": {
|
|
1527
|
+
"name": "Dumbbell Set",
|
|
1528
|
+
"product_id": "7233192239",
|
|
1529
|
+
"variants": {
|
|
1530
|
+
"8140269513": {
|
|
1531
|
+
"item_id": "8140269513",
|
|
1532
|
+
"options": {
|
|
1533
|
+
"weight range": "55-75 lbs",
|
|
1534
|
+
"material": "rubber",
|
|
1535
|
+
"set type": "adjustable"
|
|
1536
|
+
},
|
|
1537
|
+
"available": false,
|
|
1538
|
+
"price": 528.12
|
|
1539
|
+
},
|
|
1540
|
+
"2444431651": {
|
|
1541
|
+
"item_id": "2444431651",
|
|
1542
|
+
"options": {
|
|
1543
|
+
"weight range": "55-75 lbs",
|
|
1544
|
+
"material": "iron",
|
|
1545
|
+
"set type": "fixed"
|
|
1546
|
+
},
|
|
1547
|
+
"available": true,
|
|
1548
|
+
"price": 534.84
|
|
1549
|
+
},
|
|
1550
|
+
"8068777068": {
|
|
1551
|
+
"item_id": "8068777068",
|
|
1552
|
+
"options": {
|
|
1553
|
+
"weight range": "5-25 lbs",
|
|
1554
|
+
"material": "rubber",
|
|
1555
|
+
"set type": "fixed"
|
|
1556
|
+
},
|
|
1557
|
+
"available": true,
|
|
1558
|
+
"price": 507.13
|
|
1559
|
+
}
|
|
1560
|
+
}
|
|
1561
|
+
},
|
|
1562
|
+
"2747247837": {
|
|
1563
|
+
"name": "Pet Bed",
|
|
1564
|
+
"product_id": "2747247837",
|
|
1565
|
+
"variants": {
|
|
1566
|
+
"3360679910": {
|
|
1567
|
+
"item_id": "3360679910",
|
|
1568
|
+
"options": {
|
|
1569
|
+
"size": "medium",
|
|
1570
|
+
"material": "memory foam",
|
|
1571
|
+
"color": "beige"
|
|
1572
|
+
},
|
|
1573
|
+
"available": true,
|
|
1574
|
+
"price": 195.26
|
|
1575
|
+
},
|
|
1576
|
+
"4537595158": {
|
|
1577
|
+
"item_id": "4537595158",
|
|
1578
|
+
"options": {
|
|
1579
|
+
"size": "small",
|
|
1580
|
+
"material": "fleece",
|
|
1581
|
+
"color": "brown"
|
|
1582
|
+
},
|
|
1583
|
+
"available": false,
|
|
1584
|
+
"price": 193.79
|
|
1585
|
+
},
|
|
1586
|
+
"6499892866": {
|
|
1587
|
+
"item_id": "6499892866",
|
|
1588
|
+
"options": {
|
|
1589
|
+
"size": "medium",
|
|
1590
|
+
"material": "polyester",
|
|
1591
|
+
"color": "beige"
|
|
1592
|
+
},
|
|
1593
|
+
"available": true,
|
|
1594
|
+
"price": 191.21
|
|
1595
|
+
}
|
|
1596
|
+
}
|
|
1597
|
+
},
|
|
1598
|
+
"4354588079": {
|
|
1599
|
+
"name": "Espresso Machine",
|
|
1600
|
+
"product_id": "4354588079",
|
|
1601
|
+
"variants": {
|
|
1602
|
+
"6242772310": {
|
|
1603
|
+
"item_id": "6242772310",
|
|
1604
|
+
"options": {
|
|
1605
|
+
"pressure": "19 bar",
|
|
1606
|
+
"capacity": "1L",
|
|
1607
|
+
"type": "automatic"
|
|
1608
|
+
},
|
|
1609
|
+
"available": false,
|
|
1610
|
+
"price": 2996.03
|
|
1611
|
+
},
|
|
1612
|
+
"7407838442": {
|
|
1613
|
+
"item_id": "7407838442",
|
|
1614
|
+
"options": {
|
|
1615
|
+
"pressure": "9 bar",
|
|
1616
|
+
"capacity": "1L",
|
|
1617
|
+
"type": "manual"
|
|
1618
|
+
},
|
|
1619
|
+
"available": true,
|
|
1620
|
+
"price": 3081.91
|
|
1621
|
+
},
|
|
1622
|
+
"6200867091": {
|
|
1623
|
+
"item_id": "6200867091",
|
|
1624
|
+
"options": {
|
|
1625
|
+
"pressure": "19 bar",
|
|
1626
|
+
"capacity": "1L",
|
|
1627
|
+
"type": "capsule"
|
|
1628
|
+
},
|
|
1629
|
+
"available": true,
|
|
1630
|
+
"price": 2955.17
|
|
1631
|
+
},
|
|
1632
|
+
"3815173328": {
|
|
1633
|
+
"item_id": "3815173328",
|
|
1634
|
+
"options": {
|
|
1635
|
+
"pressure": "9 bar",
|
|
1636
|
+
"capacity": "1.5L",
|
|
1637
|
+
"type": "capsule"
|
|
1638
|
+
},
|
|
1639
|
+
"available": true,
|
|
1640
|
+
"price": 2908.42
|
|
1641
|
+
},
|
|
1642
|
+
"1157853815": {
|
|
1643
|
+
"item_id": "1157853815",
|
|
1644
|
+
"options": {
|
|
1645
|
+
"pressure": "19 bar",
|
|
1646
|
+
"capacity": "2L",
|
|
1647
|
+
"type": "capsule"
|
|
1648
|
+
},
|
|
1649
|
+
"available": true,
|
|
1650
|
+
"price": 3096.7
|
|
1651
|
+
},
|
|
1652
|
+
"2190871011": {
|
|
1653
|
+
"item_id": "2190871011",
|
|
1654
|
+
"options": {
|
|
1655
|
+
"pressure": "9 bar",
|
|
1656
|
+
"capacity": "1.5L",
|
|
1657
|
+
"type": "manual"
|
|
1658
|
+
},
|
|
1659
|
+
"available": true,
|
|
1660
|
+
"price": 3105.6
|
|
1661
|
+
},
|
|
1662
|
+
"6324294385": {
|
|
1663
|
+
"item_id": "6324294385",
|
|
1664
|
+
"options": {
|
|
1665
|
+
"pressure": "9 bar",
|
|
1666
|
+
"capacity": "1L",
|
|
1667
|
+
"type": "automatic"
|
|
1668
|
+
},
|
|
1669
|
+
"available": false,
|
|
1670
|
+
"price": 2719.01
|
|
1671
|
+
}
|
|
1672
|
+
}
|
|
1673
|
+
},
|
|
1674
|
+
"7765186836": {
|
|
1675
|
+
"name": "Cycling Helmet",
|
|
1676
|
+
"product_id": "7765186836",
|
|
1677
|
+
"variants": {
|
|
1678
|
+
"5886093635": {
|
|
1679
|
+
"item_id": "5886093635",
|
|
1680
|
+
"options": {
|
|
1681
|
+
"size": "S",
|
|
1682
|
+
"color": "blue",
|
|
1683
|
+
"ventilation": "low"
|
|
1684
|
+
},
|
|
1685
|
+
"available": true,
|
|
1686
|
+
"price": 208.04
|
|
1687
|
+
},
|
|
1688
|
+
"3339188619": {
|
|
1689
|
+
"item_id": "3339188619",
|
|
1690
|
+
"options": {
|
|
1691
|
+
"size": "M",
|
|
1692
|
+
"color": "blue",
|
|
1693
|
+
"ventilation": "low"
|
|
1694
|
+
},
|
|
1695
|
+
"available": false,
|
|
1696
|
+
"price": 200.24
|
|
1697
|
+
},
|
|
1698
|
+
"3358616356": {
|
|
1699
|
+
"item_id": "3358616356",
|
|
1700
|
+
"options": {
|
|
1701
|
+
"size": "S",
|
|
1702
|
+
"color": "red",
|
|
1703
|
+
"ventilation": "low"
|
|
1704
|
+
},
|
|
1705
|
+
"available": true,
|
|
1706
|
+
"price": 197.33
|
|
1707
|
+
},
|
|
1708
|
+
"1665571435": {
|
|
1709
|
+
"item_id": "1665571435",
|
|
1710
|
+
"options": {
|
|
1711
|
+
"size": "L",
|
|
1712
|
+
"color": "black",
|
|
1713
|
+
"ventilation": "high"
|
|
1714
|
+
},
|
|
1715
|
+
"available": true,
|
|
1716
|
+
"price": 196.89
|
|
1717
|
+
},
|
|
1718
|
+
"5537798301": {
|
|
1719
|
+
"item_id": "5537798301",
|
|
1720
|
+
"options": {
|
|
1721
|
+
"size": "S",
|
|
1722
|
+
"color": "black",
|
|
1723
|
+
"ventilation": "medium"
|
|
1724
|
+
},
|
|
1725
|
+
"available": true,
|
|
1726
|
+
"price": 204.47
|
|
1727
|
+
},
|
|
1728
|
+
"1719127154": {
|
|
1729
|
+
"item_id": "1719127154",
|
|
1730
|
+
"options": {
|
|
1731
|
+
"size": "M",
|
|
1732
|
+
"color": "red",
|
|
1733
|
+
"ventilation": "medium"
|
|
1734
|
+
},
|
|
1735
|
+
"available": true,
|
|
1736
|
+
"price": 206.26
|
|
1737
|
+
},
|
|
1738
|
+
"1676105083": {
|
|
1739
|
+
"item_id": "1676105083",
|
|
1740
|
+
"options": {
|
|
1741
|
+
"size": "S",
|
|
1742
|
+
"color": "blue",
|
|
1743
|
+
"ventilation": "high"
|
|
1744
|
+
},
|
|
1745
|
+
"available": false,
|
|
1746
|
+
"price": 191.56
|
|
1747
|
+
}
|
|
1748
|
+
}
|
|
1749
|
+
},
|
|
1750
|
+
"2696197613": {
|
|
1751
|
+
"name": "LED Light Bulb",
|
|
1752
|
+
"product_id": "2696197613",
|
|
1753
|
+
"variants": {
|
|
1754
|
+
"7445824652": {
|
|
1755
|
+
"item_id": "7445824652",
|
|
1756
|
+
"options": {
|
|
1757
|
+
"brightness": "75W equivalent",
|
|
1758
|
+
"color temperature": "daylight",
|
|
1759
|
+
"connectivity": "Wi-Fi"
|
|
1760
|
+
},
|
|
1761
|
+
"available": true,
|
|
1762
|
+
"price": 49.8
|
|
1763
|
+
},
|
|
1764
|
+
"3034017579": {
|
|
1765
|
+
"item_id": "3034017579",
|
|
1766
|
+
"options": {
|
|
1767
|
+
"brightness": "75W equivalent",
|
|
1768
|
+
"color temperature": "warm white",
|
|
1769
|
+
"connectivity": "Wi-Fi"
|
|
1770
|
+
},
|
|
1771
|
+
"available": false,
|
|
1772
|
+
"price": 49.72
|
|
1773
|
+
},
|
|
1774
|
+
"5111440845": {
|
|
1775
|
+
"item_id": "5111440845",
|
|
1776
|
+
"options": {
|
|
1777
|
+
"brightness": "60W equivalent",
|
|
1778
|
+
"color temperature": "daylight",
|
|
1779
|
+
"connectivity": "Bluetooth"
|
|
1780
|
+
},
|
|
1781
|
+
"available": true,
|
|
1782
|
+
"price": 48.55
|
|
1783
|
+
}
|
|
1784
|
+
}
|
|
1785
|
+
},
|
|
1786
|
+
"8940227892": {
|
|
1787
|
+
"name": "Digital Camera",
|
|
1788
|
+
"product_id": "8940227892",
|
|
1789
|
+
"variants": {
|
|
1790
|
+
"7255224608": {
|
|
1791
|
+
"item_id": "7255224608",
|
|
1792
|
+
"options": {
|
|
1793
|
+
"resolution": "30MP",
|
|
1794
|
+
"zoom": "3x",
|
|
1795
|
+
"storage": "CF card"
|
|
1796
|
+
},
|
|
1797
|
+
"available": true,
|
|
1798
|
+
"price": 2922.97
|
|
1799
|
+
},
|
|
1800
|
+
"7195021808": {
|
|
1801
|
+
"item_id": "7195021808",
|
|
1802
|
+
"options": {
|
|
1803
|
+
"resolution": "30MP",
|
|
1804
|
+
"zoom": "5x",
|
|
1805
|
+
"storage": "SD card"
|
|
1806
|
+
},
|
|
1807
|
+
"available": false,
|
|
1808
|
+
"price": 2909.87
|
|
1809
|
+
},
|
|
1810
|
+
"5996159312": {
|
|
1811
|
+
"item_id": "5996159312",
|
|
1812
|
+
"options": {
|
|
1813
|
+
"resolution": "24MP",
|
|
1814
|
+
"zoom": "3x",
|
|
1815
|
+
"storage": "SD card"
|
|
1816
|
+
},
|
|
1817
|
+
"available": true,
|
|
1818
|
+
"price": 2895.55
|
|
1819
|
+
},
|
|
1820
|
+
"1804581713": {
|
|
1821
|
+
"item_id": "1804581713",
|
|
1822
|
+
"options": {
|
|
1823
|
+
"resolution": "30MP",
|
|
1824
|
+
"zoom": "3x",
|
|
1825
|
+
"storage": "SD card"
|
|
1826
|
+
},
|
|
1827
|
+
"available": true,
|
|
1828
|
+
"price": 2875.61
|
|
1829
|
+
},
|
|
1830
|
+
"8363011723": {
|
|
1831
|
+
"item_id": "8363011723",
|
|
1832
|
+
"options": {
|
|
1833
|
+
"resolution": "20MP",
|
|
1834
|
+
"zoom": "3x",
|
|
1835
|
+
"storage": "SD card"
|
|
1836
|
+
},
|
|
1837
|
+
"available": true,
|
|
1838
|
+
"price": 2823.96
|
|
1839
|
+
},
|
|
1840
|
+
"6384525445": {
|
|
1841
|
+
"item_id": "6384525445",
|
|
1842
|
+
"options": {
|
|
1843
|
+
"resolution": "30MP",
|
|
1844
|
+
"zoom": "5x",
|
|
1845
|
+
"storage": "CF card"
|
|
1846
|
+
},
|
|
1847
|
+
"available": true,
|
|
1848
|
+
"price": 2929.62
|
|
1849
|
+
},
|
|
1850
|
+
"9228757377": {
|
|
1851
|
+
"item_id": "9228757377",
|
|
1852
|
+
"options": {
|
|
1853
|
+
"resolution": "30MP",
|
|
1854
|
+
"zoom": "10x",
|
|
1855
|
+
"storage": "SD card"
|
|
1856
|
+
},
|
|
1857
|
+
"available": true,
|
|
1858
|
+
"price": 3066.23
|
|
1859
|
+
},
|
|
1860
|
+
"3892645120": {
|
|
1861
|
+
"item_id": "3892645120",
|
|
1862
|
+
"options": {
|
|
1863
|
+
"resolution": "30MP",
|
|
1864
|
+
"zoom": "10x",
|
|
1865
|
+
"storage": "CF card"
|
|
1866
|
+
},
|
|
1867
|
+
"available": false,
|
|
1868
|
+
"price": 3070.64
|
|
1869
|
+
}
|
|
1870
|
+
}
|
|
1871
|
+
},
|
|
1872
|
+
"8600330539": {
|
|
1873
|
+
"name": "Bookshelf",
|
|
1874
|
+
"product_id": "8600330539",
|
|
1875
|
+
"variants": {
|
|
1876
|
+
"8895454203": {
|
|
1877
|
+
"item_id": "8895454203",
|
|
1878
|
+
"options": {
|
|
1879
|
+
"material": "glass",
|
|
1880
|
+
"color": "white",
|
|
1881
|
+
"height": "5 ft"
|
|
1882
|
+
},
|
|
1883
|
+
"available": true,
|
|
1884
|
+
"price": 504.65
|
|
1885
|
+
},
|
|
1886
|
+
"7154215719": {
|
|
1887
|
+
"item_id": "7154215719",
|
|
1888
|
+
"options": {
|
|
1889
|
+
"material": "wood",
|
|
1890
|
+
"color": "brown",
|
|
1891
|
+
"height": "6 ft"
|
|
1892
|
+
},
|
|
1893
|
+
"available": true,
|
|
1894
|
+
"price": 505.62
|
|
1895
|
+
},
|
|
1896
|
+
"1768466237": {
|
|
1897
|
+
"item_id": "1768466237",
|
|
1898
|
+
"options": {
|
|
1899
|
+
"material": "glass",
|
|
1900
|
+
"color": "black",
|
|
1901
|
+
"height": "3 ft"
|
|
1902
|
+
},
|
|
1903
|
+
"available": true,
|
|
1904
|
+
"price": 549.84
|
|
1905
|
+
},
|
|
1906
|
+
"1673859111": {
|
|
1907
|
+
"item_id": "1673859111",
|
|
1908
|
+
"options": {
|
|
1909
|
+
"material": "wood",
|
|
1910
|
+
"color": "black",
|
|
1911
|
+
"height": "4 ft"
|
|
1912
|
+
},
|
|
1913
|
+
"available": true,
|
|
1914
|
+
"price": 484.96
|
|
1915
|
+
},
|
|
1916
|
+
"2244749153": {
|
|
1917
|
+
"item_id": "2244749153",
|
|
1918
|
+
"options": {
|
|
1919
|
+
"material": "wood",
|
|
1920
|
+
"color": "brown",
|
|
1921
|
+
"height": "5 ft"
|
|
1922
|
+
},
|
|
1923
|
+
"available": true,
|
|
1924
|
+
"price": 473.82
|
|
1925
|
+
},
|
|
1926
|
+
"8920458606": {
|
|
1927
|
+
"item_id": "8920458606",
|
|
1928
|
+
"options": {
|
|
1929
|
+
"material": "wood",
|
|
1930
|
+
"color": "white",
|
|
1931
|
+
"height": "4 ft"
|
|
1932
|
+
},
|
|
1933
|
+
"available": true,
|
|
1934
|
+
"price": 510.02
|
|
1935
|
+
},
|
|
1936
|
+
"2960542086": {
|
|
1937
|
+
"item_id": "2960542086",
|
|
1938
|
+
"options": {
|
|
1939
|
+
"material": "wood",
|
|
1940
|
+
"color": "black",
|
|
1941
|
+
"height": "5 ft"
|
|
1942
|
+
},
|
|
1943
|
+
"available": true,
|
|
1944
|
+
"price": 512.77
|
|
1945
|
+
},
|
|
1946
|
+
"7373893106": {
|
|
1947
|
+
"item_id": "7373893106",
|
|
1948
|
+
"options": {
|
|
1949
|
+
"material": "glass",
|
|
1950
|
+
"color": "white",
|
|
1951
|
+
"height": "4 ft"
|
|
1952
|
+
},
|
|
1953
|
+
"available": false,
|
|
1954
|
+
"price": 531.22
|
|
1955
|
+
}
|
|
1956
|
+
}
|
|
1957
|
+
},
|
|
1958
|
+
"9783735446": {
|
|
1959
|
+
"name": "Bicycle",
|
|
1960
|
+
"product_id": "9783735446",
|
|
1961
|
+
"variants": {
|
|
1962
|
+
"7758198585": {
|
|
1963
|
+
"item_id": "7758198585",
|
|
1964
|
+
"options": {
|
|
1965
|
+
"frame size": "medium",
|
|
1966
|
+
"color": "green",
|
|
1967
|
+
"type": "road"
|
|
1968
|
+
},
|
|
1969
|
+
"available": true,
|
|
1970
|
+
"price": 1917.21
|
|
1971
|
+
},
|
|
1972
|
+
"5606522780": {
|
|
1973
|
+
"item_id": "5606522780",
|
|
1974
|
+
"options": {
|
|
1975
|
+
"frame size": "large",
|
|
1976
|
+
"color": "red",
|
|
1977
|
+
"type": "mountain"
|
|
1978
|
+
},
|
|
1979
|
+
"available": true,
|
|
1980
|
+
"price": 1902.67
|
|
1981
|
+
},
|
|
1982
|
+
"6170152315": {
|
|
1983
|
+
"item_id": "6170152315",
|
|
1984
|
+
"options": {
|
|
1985
|
+
"frame size": "small",
|
|
1986
|
+
"color": "red",
|
|
1987
|
+
"type": "mountain"
|
|
1988
|
+
},
|
|
1989
|
+
"available": false,
|
|
1990
|
+
"price": 1814.72
|
|
1991
|
+
}
|
|
1992
|
+
}
|
|
1993
|
+
},
|
|
1994
|
+
"7471004230": {
|
|
1995
|
+
"name": "Sneakers",
|
|
1996
|
+
"product_id": "7471004230",
|
|
1997
|
+
"variants": {
|
|
1998
|
+
"9727387530": {
|
|
1999
|
+
"item_id": "9727387530",
|
|
2000
|
+
"options": {
|
|
2001
|
+
"size": "11",
|
|
2002
|
+
"color": "black",
|
|
2003
|
+
"material": "synthetic"
|
|
2004
|
+
},
|
|
2005
|
+
"available": false,
|
|
2006
|
+
"price": 207.75
|
|
2007
|
+
},
|
|
2008
|
+
"4410138384": {
|
|
2009
|
+
"item_id": "4410138384",
|
|
2010
|
+
"options": {
|
|
2011
|
+
"size": "8",
|
|
2012
|
+
"color": "gray",
|
|
2013
|
+
"material": "canvas"
|
|
2014
|
+
},
|
|
2015
|
+
"available": false,
|
|
2016
|
+
"price": 197.37
|
|
2017
|
+
},
|
|
2018
|
+
"2509076505": {
|
|
2019
|
+
"item_id": "2509076505",
|
|
2020
|
+
"options": {
|
|
2021
|
+
"size": "10",
|
|
2022
|
+
"color": "gray",
|
|
2023
|
+
"material": "leather"
|
|
2024
|
+
},
|
|
2025
|
+
"available": true,
|
|
2026
|
+
"price": 189.5
|
|
2027
|
+
},
|
|
2028
|
+
"6477915553": {
|
|
2029
|
+
"item_id": "6477915553",
|
|
2030
|
+
"options": {
|
|
2031
|
+
"size": "6",
|
|
2032
|
+
"color": "black",
|
|
2033
|
+
"material": "synthetic"
|
|
2034
|
+
},
|
|
2035
|
+
"available": true,
|
|
2036
|
+
"price": 186.45
|
|
2037
|
+
},
|
|
2038
|
+
"3631875806": {
|
|
2039
|
+
"item_id": "3631875806",
|
|
2040
|
+
"options": {
|
|
2041
|
+
"size": "11",
|
|
2042
|
+
"color": "red",
|
|
2043
|
+
"material": "leather"
|
|
2044
|
+
},
|
|
2045
|
+
"available": false,
|
|
2046
|
+
"price": 203.82
|
|
2047
|
+
}
|
|
2048
|
+
}
|
|
2049
|
+
},
|
|
2050
|
+
"4794339885": {
|
|
2051
|
+
"name": "Office Chair",
|
|
2052
|
+
"product_id": "4794339885",
|
|
2053
|
+
"variants": {
|
|
2054
|
+
"1793929609": {
|
|
2055
|
+
"item_id": "1793929609",
|
|
2056
|
+
"options": {
|
|
2057
|
+
"material": "fabric",
|
|
2058
|
+
"color": "black",
|
|
2059
|
+
"armrest": "none",
|
|
2060
|
+
"backrest height": "high-back"
|
|
2061
|
+
},
|
|
2062
|
+
"available": true,
|
|
2063
|
+
"price": 514.34
|
|
2064
|
+
},
|
|
2065
|
+
"4274709903": {
|
|
2066
|
+
"item_id": "4274709903",
|
|
2067
|
+
"options": {
|
|
2068
|
+
"material": "mesh",
|
|
2069
|
+
"color": "red",
|
|
2070
|
+
"armrest": "none",
|
|
2071
|
+
"backrest height": "standard"
|
|
2072
|
+
},
|
|
2073
|
+
"available": true,
|
|
2074
|
+
"price": 544.29
|
|
2075
|
+
},
|
|
2076
|
+
"8426249116": {
|
|
2077
|
+
"item_id": "8426249116",
|
|
2078
|
+
"options": {
|
|
2079
|
+
"material": "fabric",
|
|
2080
|
+
"color": "black",
|
|
2081
|
+
"armrest": "fixed",
|
|
2082
|
+
"backrest height": "standard"
|
|
2083
|
+
},
|
|
2084
|
+
"available": true,
|
|
2085
|
+
"price": 488.81
|
|
2086
|
+
}
|
|
2087
|
+
}
|
|
2088
|
+
},
|
|
2089
|
+
"6945232052": {
|
|
2090
|
+
"name": "Smart Watch",
|
|
2091
|
+
"product_id": "6945232052",
|
|
2092
|
+
"variants": {
|
|
2093
|
+
"2993891288": {
|
|
2094
|
+
"item_id": "2993891288",
|
|
2095
|
+
"options": {
|
|
2096
|
+
"color": "silver",
|
|
2097
|
+
"band material": "leather",
|
|
2098
|
+
"display": "AMOLED"
|
|
2099
|
+
},
|
|
2100
|
+
"available": false,
|
|
2101
|
+
"price": 383.08
|
|
2102
|
+
},
|
|
2103
|
+
"2681513500": {
|
|
2104
|
+
"item_id": "2681513500",
|
|
2105
|
+
"options": {
|
|
2106
|
+
"color": "gold",
|
|
2107
|
+
"band material": "silicone",
|
|
2108
|
+
"display": "AMOLED"
|
|
2109
|
+
},
|
|
2110
|
+
"available": true,
|
|
2111
|
+
"price": 356.23
|
|
2112
|
+
},
|
|
2113
|
+
"4920090458": {
|
|
2114
|
+
"item_id": "4920090458",
|
|
2115
|
+
"options": {
|
|
2116
|
+
"color": "black",
|
|
2117
|
+
"band material": "silicone",
|
|
2118
|
+
"display": "AMOLED"
|
|
2119
|
+
},
|
|
2120
|
+
"available": false,
|
|
2121
|
+
"price": 381.87
|
|
2122
|
+
},
|
|
2123
|
+
"5694328282": {
|
|
2124
|
+
"item_id": "5694328282",
|
|
2125
|
+
"options": {
|
|
2126
|
+
"color": "gold",
|
|
2127
|
+
"band material": "leather",
|
|
2128
|
+
"display": "AMOLED"
|
|
2129
|
+
},
|
|
2130
|
+
"available": true,
|
|
2131
|
+
"price": 323.19
|
|
2132
|
+
},
|
|
2133
|
+
"2860956907": {
|
|
2134
|
+
"item_id": "2860956907",
|
|
2135
|
+
"options": {
|
|
2136
|
+
"color": "black",
|
|
2137
|
+
"band material": "silicone",
|
|
2138
|
+
"display": "LCD"
|
|
2139
|
+
},
|
|
2140
|
+
"available": true,
|
|
2141
|
+
"price": 315.61
|
|
2142
|
+
},
|
|
2143
|
+
"9811090008": {
|
|
2144
|
+
"item_id": "9811090008",
|
|
2145
|
+
"options": {
|
|
2146
|
+
"color": "silver",
|
|
2147
|
+
"band material": "leather",
|
|
2148
|
+
"display": "LCD"
|
|
2149
|
+
},
|
|
2150
|
+
"available": true,
|
|
2151
|
+
"price": 370.38
|
|
2152
|
+
},
|
|
2153
|
+
"9408160950": {
|
|
2154
|
+
"item_id": "9408160950",
|
|
2155
|
+
"options": {
|
|
2156
|
+
"color": "gold",
|
|
2157
|
+
"band material": "leather",
|
|
2158
|
+
"display": "LCD"
|
|
2159
|
+
},
|
|
2160
|
+
"available": true,
|
|
2161
|
+
"price": 381.26
|
|
2162
|
+
},
|
|
2163
|
+
"9320099340": {
|
|
2164
|
+
"item_id": "9320099340",
|
|
2165
|
+
"options": {
|
|
2166
|
+
"color": "black",
|
|
2167
|
+
"band material": "leather",
|
|
2168
|
+
"display": "AMOLED"
|
|
2169
|
+
},
|
|
2170
|
+
"available": false,
|
|
2171
|
+
"price": 375.03
|
|
2172
|
+
}
|
|
2173
|
+
}
|
|
2174
|
+
},
|
|
2175
|
+
"9832717871": {
|
|
2176
|
+
"name": "Tea Kettle",
|
|
2177
|
+
"product_id": "9832717871",
|
|
2178
|
+
"variants": {
|
|
2179
|
+
"7497340597": {
|
|
2180
|
+
"item_id": "7497340597",
|
|
2181
|
+
"options": {
|
|
2182
|
+
"material": "ceramic",
|
|
2183
|
+
"capacity": "1.5 liters",
|
|
2184
|
+
"stovetop compatibility": "gas"
|
|
2185
|
+
},
|
|
2186
|
+
"available": false,
|
|
2187
|
+
"price": 100.83
|
|
2188
|
+
},
|
|
2189
|
+
"4238115171": {
|
|
2190
|
+
"item_id": "4238115171",
|
|
2191
|
+
"options": {
|
|
2192
|
+
"material": "stainless steel",
|
|
2193
|
+
"capacity": "2 liters",
|
|
2194
|
+
"stovetop compatibility": "gas"
|
|
2195
|
+
},
|
|
2196
|
+
"available": true,
|
|
2197
|
+
"price": 91.78
|
|
2198
|
+
},
|
|
2199
|
+
"3909406921": {
|
|
2200
|
+
"item_id": "3909406921",
|
|
2201
|
+
"options": {
|
|
2202
|
+
"material": "glass",
|
|
2203
|
+
"capacity": "1 liter",
|
|
2204
|
+
"stovetop compatibility": "gas"
|
|
2205
|
+
},
|
|
2206
|
+
"available": true,
|
|
2207
|
+
"price": 98.25
|
|
2208
|
+
},
|
|
2209
|
+
"2820119811": {
|
|
2210
|
+
"item_id": "2820119811",
|
|
2211
|
+
"options": {
|
|
2212
|
+
"material": "glass",
|
|
2213
|
+
"capacity": "2 liters",
|
|
2214
|
+
"stovetop compatibility": "electric"
|
|
2215
|
+
},
|
|
2216
|
+
"available": true,
|
|
2217
|
+
"price": 94.68
|
|
2218
|
+
},
|
|
2219
|
+
"7292993796": {
|
|
2220
|
+
"item_id": "7292993796",
|
|
2221
|
+
"options": {
|
|
2222
|
+
"material": "glass",
|
|
2223
|
+
"capacity": "2 liters",
|
|
2224
|
+
"stovetop compatibility": "induction"
|
|
2225
|
+
},
|
|
2226
|
+
"available": true,
|
|
2227
|
+
"price": 94.8
|
|
2228
|
+
},
|
|
2229
|
+
"9747045638": {
|
|
2230
|
+
"item_id": "9747045638",
|
|
2231
|
+
"options": {
|
|
2232
|
+
"material": "glass",
|
|
2233
|
+
"capacity": "1 liter",
|
|
2234
|
+
"stovetop compatibility": "electric"
|
|
2235
|
+
},
|
|
2236
|
+
"available": true,
|
|
2237
|
+
"price": 94.01
|
|
2238
|
+
},
|
|
2239
|
+
"3738831434": {
|
|
2240
|
+
"item_id": "3738831434",
|
|
2241
|
+
"options": {
|
|
2242
|
+
"material": "stainless steel",
|
|
2243
|
+
"capacity": "1.5 liters",
|
|
2244
|
+
"stovetop compatibility": "induction"
|
|
2245
|
+
},
|
|
2246
|
+
"available": true,
|
|
2247
|
+
"price": 98.89
|
|
2248
|
+
},
|
|
2249
|
+
"6454334990": {
|
|
2250
|
+
"item_id": "6454334990",
|
|
2251
|
+
"options": {
|
|
2252
|
+
"material": "glass",
|
|
2253
|
+
"capacity": "1.5 liters",
|
|
2254
|
+
"stovetop compatibility": "induction"
|
|
2255
|
+
},
|
|
2256
|
+
"available": false,
|
|
2257
|
+
"price": 98.82
|
|
2258
|
+
}
|
|
2259
|
+
}
|
|
2260
|
+
},
|
|
2261
|
+
"5426915165": {
|
|
2262
|
+
"name": "Luggage Set",
|
|
2263
|
+
"product_id": "5426915165",
|
|
2264
|
+
"variants": {
|
|
2265
|
+
"5209958006": {
|
|
2266
|
+
"item_id": "5209958006",
|
|
2267
|
+
"options": {
|
|
2268
|
+
"piece count": "2-piece",
|
|
2269
|
+
"color": "silver",
|
|
2270
|
+
"material": "hardshell"
|
|
2271
|
+
},
|
|
2272
|
+
"available": false,
|
|
2273
|
+
"price": 514.72
|
|
2274
|
+
},
|
|
2275
|
+
"6690069155": {
|
|
2276
|
+
"item_id": "6690069155",
|
|
2277
|
+
"options": {
|
|
2278
|
+
"piece count": "3-piece",
|
|
2279
|
+
"color": "silver",
|
|
2280
|
+
"material": "softshell"
|
|
2281
|
+
},
|
|
2282
|
+
"available": false,
|
|
2283
|
+
"price": 466.47
|
|
2284
|
+
},
|
|
2285
|
+
"8759627937": {
|
|
2286
|
+
"item_id": "8759627937",
|
|
2287
|
+
"options": {
|
|
2288
|
+
"piece count": "4-piece",
|
|
2289
|
+
"color": "blue",
|
|
2290
|
+
"material": "softshell"
|
|
2291
|
+
},
|
|
2292
|
+
"available": true,
|
|
2293
|
+
"price": 501.65
|
|
2294
|
+
}
|
|
2295
|
+
}
|
|
2296
|
+
},
|
|
2297
|
+
"9743693396": {
|
|
2298
|
+
"name": "Patio Umbrella",
|
|
2299
|
+
"product_id": "9743693396",
|
|
2300
|
+
"variants": {
|
|
2301
|
+
"3111466194": {
|
|
2302
|
+
"item_id": "3111466194",
|
|
2303
|
+
"options": {
|
|
2304
|
+
"size": "7 ft",
|
|
2305
|
+
"color": "red",
|
|
2306
|
+
"material": "polyester",
|
|
2307
|
+
"tilt mechanism": "manual tilt"
|
|
2308
|
+
},
|
|
2309
|
+
"available": false,
|
|
2310
|
+
"price": 285.66
|
|
2311
|
+
},
|
|
2312
|
+
"9879255677": {
|
|
2313
|
+
"item_id": "9879255677",
|
|
2314
|
+
"options": {
|
|
2315
|
+
"size": "6 ft",
|
|
2316
|
+
"color": "green",
|
|
2317
|
+
"material": "olefin",
|
|
2318
|
+
"tilt mechanism": "auto tilt"
|
|
2319
|
+
},
|
|
2320
|
+
"available": true,
|
|
2321
|
+
"price": 288.82
|
|
2322
|
+
},
|
|
2323
|
+
"7068351115": {
|
|
2324
|
+
"item_id": "7068351115",
|
|
2325
|
+
"options": {
|
|
2326
|
+
"size": "7 ft",
|
|
2327
|
+
"color": "black",
|
|
2328
|
+
"material": "polyester",
|
|
2329
|
+
"tilt mechanism": "auto tilt"
|
|
2330
|
+
},
|
|
2331
|
+
"available": true,
|
|
2332
|
+
"price": 300.24
|
|
2333
|
+
},
|
|
2334
|
+
"8170914468": {
|
|
2335
|
+
"item_id": "8170914468",
|
|
2336
|
+
"options": {
|
|
2337
|
+
"size": "6 ft",
|
|
2338
|
+
"color": "red",
|
|
2339
|
+
"material": "olefin",
|
|
2340
|
+
"tilt mechanism": "manual tilt"
|
|
2341
|
+
},
|
|
2342
|
+
"available": false,
|
|
2343
|
+
"price": 316.29
|
|
2344
|
+
}
|
|
2345
|
+
}
|
|
2346
|
+
},
|
|
2347
|
+
"3821016478": {
|
|
2348
|
+
"name": "Air Purifier",
|
|
2349
|
+
"product_id": "3821016478",
|
|
2350
|
+
"variants": {
|
|
2351
|
+
"8302289002": {
|
|
2352
|
+
"item_id": "8302289002",
|
|
2353
|
+
"options": {
|
|
2354
|
+
"room size": "large",
|
|
2355
|
+
"filter type": "HEPA",
|
|
2356
|
+
"features": "night mode"
|
|
2357
|
+
},
|
|
2358
|
+
"available": true,
|
|
2359
|
+
"price": 547.55
|
|
2360
|
+
},
|
|
2361
|
+
"3076708684": {
|
|
2362
|
+
"item_id": "3076708684",
|
|
2363
|
+
"options": {
|
|
2364
|
+
"room size": "medium",
|
|
2365
|
+
"filter type": "HEPA",
|
|
2366
|
+
"features": "quiet operation"
|
|
2367
|
+
},
|
|
2368
|
+
"available": true,
|
|
2369
|
+
"price": 535.97
|
|
2370
|
+
},
|
|
2371
|
+
"7166996157": {
|
|
2372
|
+
"item_id": "7166996157",
|
|
2373
|
+
"options": {
|
|
2374
|
+
"room size": "small",
|
|
2375
|
+
"filter type": "HEPA",
|
|
2376
|
+
"features": "night mode"
|
|
2377
|
+
},
|
|
2378
|
+
"available": true,
|
|
2379
|
+
"price": 518.31
|
|
2380
|
+
},
|
|
2381
|
+
"3676786561": {
|
|
2382
|
+
"item_id": "3676786561",
|
|
2383
|
+
"options": {
|
|
2384
|
+
"room size": "small",
|
|
2385
|
+
"filter type": "HEPA",
|
|
2386
|
+
"features": "quiet operation"
|
|
2387
|
+
},
|
|
2388
|
+
"available": true,
|
|
2389
|
+
"price": 502.7
|
|
2390
|
+
},
|
|
2391
|
+
"5669664287": {
|
|
2392
|
+
"item_id": "5669664287",
|
|
2393
|
+
"options": {
|
|
2394
|
+
"room size": "small",
|
|
2395
|
+
"filter type": "ionic",
|
|
2396
|
+
"features": "quiet operation"
|
|
2397
|
+
},
|
|
2398
|
+
"available": true,
|
|
2399
|
+
"price": 543.68
|
|
2400
|
+
},
|
|
2401
|
+
"6341716129": {
|
|
2402
|
+
"item_id": "6341716129",
|
|
2403
|
+
"options": {
|
|
2404
|
+
"room size": "large",
|
|
2405
|
+
"filter type": "HEPA",
|
|
2406
|
+
"features": "smart sensors"
|
|
2407
|
+
},
|
|
2408
|
+
"available": false,
|
|
2409
|
+
"price": 523.31
|
|
2410
|
+
}
|
|
2411
|
+
}
|
|
2412
|
+
},
|
|
2413
|
+
"5149340237": {
|
|
2414
|
+
"name": "Makeup Kit",
|
|
2415
|
+
"product_id": "5149340237",
|
|
2416
|
+
"variants": {
|
|
2417
|
+
"1709726483": {
|
|
2418
|
+
"item_id": "1709726483",
|
|
2419
|
+
"options": {
|
|
2420
|
+
"skin tone": "medium",
|
|
2421
|
+
"kit size": "basic",
|
|
2422
|
+
"brand": "Brand A"
|
|
2423
|
+
},
|
|
2424
|
+
"available": false,
|
|
2425
|
+
"price": 230.26
|
|
2426
|
+
},
|
|
2427
|
+
"1763705424": {
|
|
2428
|
+
"item_id": "1763705424",
|
|
2429
|
+
"options": {
|
|
2430
|
+
"skin tone": "dark",
|
|
2431
|
+
"kit size": "professional",
|
|
2432
|
+
"brand": "Brand C"
|
|
2433
|
+
},
|
|
2434
|
+
"available": true,
|
|
2435
|
+
"price": 235.44
|
|
2436
|
+
},
|
|
2437
|
+
"3017803871": {
|
|
2438
|
+
"item_id": "3017803871",
|
|
2439
|
+
"options": {
|
|
2440
|
+
"skin tone": "medium",
|
|
2441
|
+
"kit size": "basic",
|
|
2442
|
+
"brand": "Brand C"
|
|
2443
|
+
},
|
|
2444
|
+
"available": true,
|
|
2445
|
+
"price": 237.37
|
|
2446
|
+
},
|
|
2447
|
+
"3913310464": {
|
|
2448
|
+
"item_id": "3913310464",
|
|
2449
|
+
"options": {
|
|
2450
|
+
"skin tone": "dark",
|
|
2451
|
+
"kit size": "basic",
|
|
2452
|
+
"brand": "Brand A"
|
|
2453
|
+
},
|
|
2454
|
+
"available": false,
|
|
2455
|
+
"price": 272.2
|
|
2456
|
+
}
|
|
2457
|
+
}
|
|
2458
|
+
},
|
|
2459
|
+
"1968349452": {
|
|
2460
|
+
"name": "Skateboard",
|
|
2461
|
+
"product_id": "1968349452",
|
|
2462
|
+
"variants": {
|
|
2463
|
+
"5489028872": {
|
|
2464
|
+
"item_id": "5489028872",
|
|
2465
|
+
"options": {
|
|
2466
|
+
"deck material": "plastic",
|
|
2467
|
+
"length": "34 inch",
|
|
2468
|
+
"design": "graphic"
|
|
2469
|
+
},
|
|
2470
|
+
"available": true,
|
|
2471
|
+
"price": 187.71
|
|
2472
|
+
},
|
|
2473
|
+
"5120532699": {
|
|
2474
|
+
"item_id": "5120532699",
|
|
2475
|
+
"options": {
|
|
2476
|
+
"deck material": "maple",
|
|
2477
|
+
"length": "31 inch",
|
|
2478
|
+
"design": "graphic"
|
|
2479
|
+
},
|
|
2480
|
+
"available": true,
|
|
2481
|
+
"price": 187.23
|
|
2482
|
+
},
|
|
2483
|
+
"4545791457": {
|
|
2484
|
+
"item_id": "4545791457",
|
|
2485
|
+
"options": {
|
|
2486
|
+
"deck material": "plastic",
|
|
2487
|
+
"length": "28 inch",
|
|
2488
|
+
"design": "plain"
|
|
2489
|
+
},
|
|
2490
|
+
"available": true,
|
|
2491
|
+
"price": 186.06
|
|
2492
|
+
},
|
|
2493
|
+
"6673921677": {
|
|
2494
|
+
"item_id": "6673921677",
|
|
2495
|
+
"options": {
|
|
2496
|
+
"deck material": "bamboo",
|
|
2497
|
+
"length": "28 inch",
|
|
2498
|
+
"design": "custom"
|
|
2499
|
+
},
|
|
2500
|
+
"available": true,
|
|
2501
|
+
"price": 189.57
|
|
2502
|
+
},
|
|
2503
|
+
"5038485381": {
|
|
2504
|
+
"item_id": "5038485381",
|
|
2505
|
+
"options": {
|
|
2506
|
+
"deck material": "plastic",
|
|
2507
|
+
"length": "31 inch",
|
|
2508
|
+
"design": "custom"
|
|
2509
|
+
},
|
|
2510
|
+
"available": true,
|
|
2511
|
+
"price": 189.65
|
|
2512
|
+
},
|
|
2513
|
+
"2343503231": {
|
|
2514
|
+
"item_id": "2343503231",
|
|
2515
|
+
"options": {
|
|
2516
|
+
"deck material": "maple",
|
|
2517
|
+
"length": "34 inch",
|
|
2518
|
+
"design": "graphic"
|
|
2519
|
+
},
|
|
2520
|
+
"available": false,
|
|
2521
|
+
"price": 196.86
|
|
2522
|
+
}
|
|
2523
|
+
}
|
|
2524
|
+
},
|
|
2525
|
+
"1808611083": {
|
|
2526
|
+
"name": "Jigsaw Puzzle",
|
|
2527
|
+
"product_id": "1808611083",
|
|
2528
|
+
"variants": {
|
|
2529
|
+
"7869640094": {
|
|
2530
|
+
"item_id": "7869640094",
|
|
2531
|
+
"options": {
|
|
2532
|
+
"pieces": "2000",
|
|
2533
|
+
"theme": "animals",
|
|
2534
|
+
"difficulty level": "expert"
|
|
2535
|
+
},
|
|
2536
|
+
"available": false,
|
|
2537
|
+
"price": 47.59
|
|
2538
|
+
},
|
|
2539
|
+
"5645314103": {
|
|
2540
|
+
"item_id": "5645314103",
|
|
2541
|
+
"options": {
|
|
2542
|
+
"pieces": "2000",
|
|
2543
|
+
"theme": "animals",
|
|
2544
|
+
"difficulty level": "intermediate"
|
|
2545
|
+
},
|
|
2546
|
+
"available": true,
|
|
2547
|
+
"price": 46.19
|
|
2548
|
+
},
|
|
2549
|
+
"1096508426": {
|
|
2550
|
+
"item_id": "1096508426",
|
|
2551
|
+
"options": {
|
|
2552
|
+
"pieces": "500",
|
|
2553
|
+
"theme": "art",
|
|
2554
|
+
"difficulty level": "beginner"
|
|
2555
|
+
},
|
|
2556
|
+
"available": true,
|
|
2557
|
+
"price": 46.13
|
|
2558
|
+
},
|
|
2559
|
+
"3112842858": {
|
|
2560
|
+
"item_id": "3112842858",
|
|
2561
|
+
"options": {
|
|
2562
|
+
"pieces": "1000",
|
|
2563
|
+
"theme": "fantasy",
|
|
2564
|
+
"difficulty level": "intermediate"
|
|
2565
|
+
},
|
|
2566
|
+
"available": true,
|
|
2567
|
+
"price": 49.1
|
|
2568
|
+
},
|
|
2569
|
+
"5546244844": {
|
|
2570
|
+
"item_id": "5546244844",
|
|
2571
|
+
"options": {
|
|
2572
|
+
"pieces": "1500",
|
|
2573
|
+
"theme": "art",
|
|
2574
|
+
"difficulty level": "intermediate"
|
|
2575
|
+
},
|
|
2576
|
+
"available": true,
|
|
2577
|
+
"price": 51.59
|
|
2578
|
+
},
|
|
2579
|
+
"3614853563": {
|
|
2580
|
+
"item_id": "3614853563",
|
|
2581
|
+
"options": {
|
|
2582
|
+
"pieces": "2000",
|
|
2583
|
+
"theme": "art",
|
|
2584
|
+
"difficulty level": "intermediate"
|
|
2585
|
+
},
|
|
2586
|
+
"available": false,
|
|
2587
|
+
"price": 46.99
|
|
2588
|
+
}
|
|
2589
|
+
}
|
|
2590
|
+
},
|
|
2591
|
+
"6819683148": {
|
|
2592
|
+
"name": "Grill",
|
|
2593
|
+
"product_id": "6819683148",
|
|
2594
|
+
"variants": {
|
|
2595
|
+
"4404981319": {
|
|
2596
|
+
"item_id": "4404981319",
|
|
2597
|
+
"options": {
|
|
2598
|
+
"type": "electric",
|
|
2599
|
+
"size": "large",
|
|
2600
|
+
"features": "rotisserie"
|
|
2601
|
+
},
|
|
2602
|
+
"available": true,
|
|
2603
|
+
"price": 1031.0
|
|
2604
|
+
},
|
|
2605
|
+
"3876764226": {
|
|
2606
|
+
"item_id": "3876764226",
|
|
2607
|
+
"options": {
|
|
2608
|
+
"type": "electric",
|
|
2609
|
+
"size": "portable",
|
|
2610
|
+
"features": "side burner"
|
|
2611
|
+
},
|
|
2612
|
+
"available": true,
|
|
2613
|
+
"price": 981.47
|
|
2614
|
+
},
|
|
2615
|
+
"5745575001": {
|
|
2616
|
+
"item_id": "5745575001",
|
|
2617
|
+
"options": {
|
|
2618
|
+
"type": "electric",
|
|
2619
|
+
"size": "portable",
|
|
2620
|
+
"features": "rotisserie"
|
|
2621
|
+
},
|
|
2622
|
+
"available": true,
|
|
2623
|
+
"price": 986.65
|
|
2624
|
+
}
|
|
2625
|
+
}
|
|
2626
|
+
},
|
|
2627
|
+
"6992792935": {
|
|
2628
|
+
"name": "Headphones",
|
|
2629
|
+
"product_id": "6992792935",
|
|
2630
|
+
"variants": {
|
|
2631
|
+
"9314474252": {
|
|
2632
|
+
"item_id": "9314474252",
|
|
2633
|
+
"options": {
|
|
2634
|
+
"type": "in-ear",
|
|
2635
|
+
"connectivity": "wireless",
|
|
2636
|
+
"color": "blue"
|
|
2637
|
+
},
|
|
2638
|
+
"available": false,
|
|
2639
|
+
"price": 330.08
|
|
2640
|
+
},
|
|
2641
|
+
"5788631787": {
|
|
2642
|
+
"item_id": "5788631787",
|
|
2643
|
+
"options": {
|
|
2644
|
+
"type": "on-ear",
|
|
2645
|
+
"connectivity": "wireless",
|
|
2646
|
+
"color": "black"
|
|
2647
|
+
},
|
|
2648
|
+
"available": false,
|
|
2649
|
+
"price": 375.55
|
|
2650
|
+
},
|
|
2651
|
+
"3374679624": {
|
|
2652
|
+
"item_id": "3374679624",
|
|
2653
|
+
"options": {
|
|
2654
|
+
"type": "over-ear",
|
|
2655
|
+
"connectivity": "wired",
|
|
2656
|
+
"color": "black"
|
|
2657
|
+
},
|
|
2658
|
+
"available": true,
|
|
2659
|
+
"price": 370.53
|
|
2660
|
+
}
|
|
2661
|
+
}
|
|
2662
|
+
},
|
|
2663
|
+
"1762337868": {
|
|
2664
|
+
"name": "Vacuum Cleaner",
|
|
2665
|
+
"product_id": "1762337868",
|
|
2666
|
+
"variants": {
|
|
2667
|
+
"1304426904": {
|
|
2668
|
+
"item_id": "1304426904",
|
|
2669
|
+
"options": {
|
|
2670
|
+
"type": "canister",
|
|
2671
|
+
"bagged/bagless": "bagless",
|
|
2672
|
+
"features": "HEPA filter"
|
|
2673
|
+
},
|
|
2674
|
+
"available": false,
|
|
2675
|
+
"price": 565.79
|
|
2676
|
+
},
|
|
2677
|
+
"4602305039": {
|
|
2678
|
+
"item_id": "4602305039",
|
|
2679
|
+
"options": {
|
|
2680
|
+
"type": "robotic",
|
|
2681
|
+
"bagged/bagless": "bagged",
|
|
2682
|
+
"features": "cordless"
|
|
2683
|
+
},
|
|
2684
|
+
"available": true,
|
|
2685
|
+
"price": 561.05
|
|
2686
|
+
},
|
|
2687
|
+
"3526747930": {
|
|
2688
|
+
"item_id": "3526747930",
|
|
2689
|
+
"options": {
|
|
2690
|
+
"type": "upright",
|
|
2691
|
+
"bagged/bagless": "bagged",
|
|
2692
|
+
"features": "pet hair removal"
|
|
2693
|
+
},
|
|
2694
|
+
"available": true,
|
|
2695
|
+
"price": 540.12
|
|
2696
|
+
},
|
|
2697
|
+
"4725166838": {
|
|
2698
|
+
"item_id": "4725166838",
|
|
2699
|
+
"options": {
|
|
2700
|
+
"type": "robotic",
|
|
2701
|
+
"bagged/bagless": "bagless",
|
|
2702
|
+
"features": "HEPA filter"
|
|
2703
|
+
},
|
|
2704
|
+
"available": true,
|
|
2705
|
+
"price": 602.11
|
|
2706
|
+
},
|
|
2707
|
+
"7407609582": {
|
|
2708
|
+
"item_id": "7407609582",
|
|
2709
|
+
"options": {
|
|
2710
|
+
"type": "upright",
|
|
2711
|
+
"bagged/bagless": "bagless",
|
|
2712
|
+
"features": "HEPA filter"
|
|
2713
|
+
},
|
|
2714
|
+
"available": true,
|
|
2715
|
+
"price": 602.48
|
|
2716
|
+
},
|
|
2717
|
+
"3019027053": {
|
|
2718
|
+
"item_id": "3019027053",
|
|
2719
|
+
"options": {
|
|
2720
|
+
"type": "upright",
|
|
2721
|
+
"bagged/bagless": "bagless",
|
|
2722
|
+
"features": "cordless"
|
|
2723
|
+
},
|
|
2724
|
+
"available": false,
|
|
2725
|
+
"price": 553.03
|
|
2726
|
+
}
|
|
2727
|
+
}
|
|
2728
|
+
},
|
|
2729
|
+
"6858788497": {
|
|
2730
|
+
"name": "Perfume",
|
|
2731
|
+
"product_id": "6858788497",
|
|
2732
|
+
"variants": {
|
|
2733
|
+
"3399869890": {
|
|
2734
|
+
"item_id": "3399869890",
|
|
2735
|
+
"options": {
|
|
2736
|
+
"scent family": "woody",
|
|
2737
|
+
"size": "100ml",
|
|
2738
|
+
"gender": "men"
|
|
2739
|
+
},
|
|
2740
|
+
"available": true,
|
|
2741
|
+
"price": 312.04
|
|
2742
|
+
},
|
|
2743
|
+
"1325156478": {
|
|
2744
|
+
"item_id": "1325156478",
|
|
2745
|
+
"options": {
|
|
2746
|
+
"scent family": "oriental",
|
|
2747
|
+
"size": "30ml",
|
|
2748
|
+
"gender": "men"
|
|
2749
|
+
},
|
|
2750
|
+
"available": true,
|
|
2751
|
+
"price": 298.52
|
|
2752
|
+
},
|
|
2753
|
+
"8316205423": {
|
|
2754
|
+
"item_id": "8316205423",
|
|
2755
|
+
"options": {
|
|
2756
|
+
"scent family": "woody",
|
|
2757
|
+
"size": "30ml",
|
|
2758
|
+
"gender": "women"
|
|
2759
|
+
},
|
|
2760
|
+
"available": true,
|
|
2761
|
+
"price": 288.75
|
|
2762
|
+
},
|
|
2763
|
+
"9007697085": {
|
|
2764
|
+
"item_id": "9007697085",
|
|
2765
|
+
"options": {
|
|
2766
|
+
"scent family": "fresh",
|
|
2767
|
+
"size": "50ml",
|
|
2768
|
+
"gender": "men"
|
|
2769
|
+
},
|
|
2770
|
+
"available": true,
|
|
2771
|
+
"price": 318.96
|
|
2772
|
+
},
|
|
2773
|
+
"5081446110": {
|
|
2774
|
+
"item_id": "5081446110",
|
|
2775
|
+
"options": {
|
|
2776
|
+
"scent family": "woody",
|
|
2777
|
+
"size": "30ml",
|
|
2778
|
+
"gender": "men"
|
|
2779
|
+
},
|
|
2780
|
+
"available": true,
|
|
2781
|
+
"price": 322.52
|
|
2782
|
+
},
|
|
2783
|
+
"1002370030": {
|
|
2784
|
+
"item_id": "1002370030",
|
|
2785
|
+
"options": {
|
|
2786
|
+
"scent family": "woody",
|
|
2787
|
+
"size": "50ml",
|
|
2788
|
+
"gender": "women"
|
|
2789
|
+
},
|
|
2790
|
+
"available": false,
|
|
2791
|
+
"price": 290.25
|
|
2792
|
+
}
|
|
2793
|
+
}
|
|
2794
|
+
}
|
|
2795
|
+
},
|
|
2796
|
+
"users": {
|
|
2797
|
+
"olivia_ito_3591": {
|
|
2798
|
+
"user_id": "olivia_ito_3591",
|
|
2799
|
+
"name": {
|
|
2800
|
+
"first_name": "Olivia",
|
|
2801
|
+
"last_name": "Ito"
|
|
2802
|
+
},
|
|
2803
|
+
"address": {
|
|
2804
|
+
"address1": "570 Elm Avenue",
|
|
2805
|
+
"address2": "Suite 175",
|
|
2806
|
+
"city": "Denver",
|
|
2807
|
+
"country": "USA",
|
|
2808
|
+
"state": "CO",
|
|
2809
|
+
"zip": "80218"
|
|
2810
|
+
},
|
|
2811
|
+
"email": "olivia.ito5204@example.com",
|
|
2812
|
+
"payment_methods": {
|
|
2813
|
+
"gift_card_7794233": {
|
|
2814
|
+
"source": "gift_card",
|
|
2815
|
+
"id": "gift_card_7794233",
|
|
2816
|
+
"balance": 56.0
|
|
2817
|
+
},
|
|
2818
|
+
"paypal_8049766": {
|
|
2819
|
+
"source": "paypal",
|
|
2820
|
+
"id": "paypal_8049766"
|
|
2821
|
+
},
|
|
2822
|
+
"credit_card_9753331": {
|
|
2823
|
+
"source": "credit_card",
|
|
2824
|
+
"id": "credit_card_9753331",
|
|
2825
|
+
"brand": "visa",
|
|
2826
|
+
"last_four": "9182"
|
|
2827
|
+
}
|
|
2828
|
+
},
|
|
2829
|
+
"orders": ["#W5866402", "#W5353646", "#W5442520", "#W7941031", "#W3657213"]
|
|
2830
|
+
},
|
|
2831
|
+
"aarav_anderson_8794": {
|
|
2832
|
+
"user_id": "aarav_anderson_8794",
|
|
2833
|
+
"name": {
|
|
2834
|
+
"first_name": "Aarav",
|
|
2835
|
+
"last_name": "Anderson"
|
|
2836
|
+
},
|
|
2837
|
+
"address": {
|
|
2838
|
+
"address1": "931 Maple Drive",
|
|
2839
|
+
"address2": "Suite 985",
|
|
2840
|
+
"city": "Philadelphia",
|
|
2841
|
+
"country": "USA",
|
|
2842
|
+
"state": "PA",
|
|
2843
|
+
"zip": "19031"
|
|
2844
|
+
},
|
|
2845
|
+
"email": "aarav.anderson9752@example.com",
|
|
2846
|
+
"payment_methods": {
|
|
2847
|
+
"gift_card_7245904": {
|
|
2848
|
+
"source": "gift_card",
|
|
2849
|
+
"id": "gift_card_7245904",
|
|
2850
|
+
"balance": 17.0
|
|
2851
|
+
}
|
|
2852
|
+
},
|
|
2853
|
+
"orders": ["#W4316152", "#W9311069", "#W9300146", "#W3220203", "#W3470184"]
|
|
2854
|
+
},
|
|
2855
|
+
"anya_garcia_3271": {
|
|
2856
|
+
"user_id": "anya_garcia_3271",
|
|
2857
|
+
"name": {
|
|
2858
|
+
"first_name": "Anya",
|
|
2859
|
+
"last_name": "Garcia"
|
|
2860
|
+
},
|
|
2861
|
+
"address": {
|
|
2862
|
+
"address1": "615 Laurel Lane",
|
|
2863
|
+
"address2": "Suite 552",
|
|
2864
|
+
"city": "Philadelphia",
|
|
2865
|
+
"country": "USA",
|
|
2866
|
+
"state": "PA",
|
|
2867
|
+
"zip": "19036"
|
|
2868
|
+
},
|
|
2869
|
+
"email": "anya.garcia2061@example.com",
|
|
2870
|
+
"payment_methods": {
|
|
2871
|
+
"gift_card_4374071": {
|
|
2872
|
+
"source": "gift_card",
|
|
2873
|
+
"id": "gift_card_4374071",
|
|
2874
|
+
"balance": 51.0
|
|
2875
|
+
},
|
|
2876
|
+
"credit_card_8955149": {
|
|
2877
|
+
"source": "credit_card",
|
|
2878
|
+
"id": "credit_card_8955149",
|
|
2879
|
+
"brand": "visa",
|
|
2880
|
+
"last_four": "8674"
|
|
2881
|
+
}
|
|
2882
|
+
},
|
|
2883
|
+
"orders": ["#W4140680", "#W6310710", "#W6436609"]
|
|
2884
|
+
},
|
|
2885
|
+
"aarav_gonzalez_5113": {
|
|
2886
|
+
"user_id": "aarav_gonzalez_5113",
|
|
2887
|
+
"name": {
|
|
2888
|
+
"first_name": "Aarav",
|
|
2889
|
+
"last_name": "Gonzalez"
|
|
2890
|
+
},
|
|
2891
|
+
"address": {
|
|
2892
|
+
"address1": "264 River Road",
|
|
2893
|
+
"address2": "Suite 604",
|
|
2894
|
+
"city": "San Antonio",
|
|
2895
|
+
"country": "USA",
|
|
2896
|
+
"state": "TX",
|
|
2897
|
+
"zip": "78268"
|
|
2898
|
+
},
|
|
2899
|
+
"email": "aarav.gonzalez9269@example.com",
|
|
2900
|
+
"payment_methods": {
|
|
2901
|
+
"paypal_6121064": {
|
|
2902
|
+
"source": "paypal",
|
|
2903
|
+
"id": "paypal_6121064"
|
|
2904
|
+
},
|
|
2905
|
+
"gift_card_5979071": {
|
|
2906
|
+
"source": "gift_card",
|
|
2907
|
+
"id": "gift_card_5979071",
|
|
2908
|
+
"balance": 96.0
|
|
2909
|
+
}
|
|
2910
|
+
},
|
|
2911
|
+
"orders": ["#W6979932", "#W6797115", "#W9160732"]
|
|
2912
|
+
},
|
|
2913
|
+
"harper_brown_7363": {
|
|
2914
|
+
"user_id": "harper_brown_7363",
|
|
2915
|
+
"name": {
|
|
2916
|
+
"first_name": "Harper",
|
|
2917
|
+
"last_name": "Brown"
|
|
2918
|
+
},
|
|
2919
|
+
"address": {
|
|
2920
|
+
"address1": "723 Park Avenue",
|
|
2921
|
+
"address2": "Suite 802",
|
|
2922
|
+
"city": "Fort Worth",
|
|
2923
|
+
"country": "USA",
|
|
2924
|
+
"state": "TX",
|
|
2925
|
+
"zip": "76112"
|
|
2926
|
+
},
|
|
2927
|
+
"email": "harper.brown3965@example.com",
|
|
2928
|
+
"payment_methods": {
|
|
2929
|
+
"paypal_2306935": {
|
|
2930
|
+
"source": "paypal",
|
|
2931
|
+
"id": "paypal_2306935"
|
|
2932
|
+
},
|
|
2933
|
+
"credit_card_3240550": {
|
|
2934
|
+
"source": "credit_card",
|
|
2935
|
+
"id": "credit_card_3240550",
|
|
2936
|
+
"brand": "visa",
|
|
2937
|
+
"last_four": "3356"
|
|
2938
|
+
}
|
|
2939
|
+
},
|
|
2940
|
+
"orders": ["#W1840144", "#W2693718", "#W2273069"]
|
|
2941
|
+
},
|
|
2942
|
+
"emma_smith_8564": {
|
|
2943
|
+
"user_id": "emma_smith_8564",
|
|
2944
|
+
"name": {
|
|
2945
|
+
"first_name": "Emma",
|
|
2946
|
+
"last_name": "Smith"
|
|
2947
|
+
},
|
|
2948
|
+
"address": {
|
|
2949
|
+
"address1": "243 Hillcrest Drive",
|
|
2950
|
+
"address2": "Suite 113",
|
|
2951
|
+
"city": "New York",
|
|
2952
|
+
"country": "USA",
|
|
2953
|
+
"state": "NY",
|
|
2954
|
+
"zip": "10192"
|
|
2955
|
+
},
|
|
2956
|
+
"email": "emma.smith3991@example.com",
|
|
2957
|
+
"payment_methods": {
|
|
2958
|
+
"gift_card_8541487": {
|
|
2959
|
+
"source": "gift_card",
|
|
2960
|
+
"id": "gift_card_8541487",
|
|
2961
|
+
"balance": 62.0
|
|
2962
|
+
},
|
|
2963
|
+
"paypal_6228291": {
|
|
2964
|
+
"source": "paypal",
|
|
2965
|
+
"id": "paypal_6228291"
|
|
2966
|
+
}
|
|
2967
|
+
},
|
|
2968
|
+
"orders": ["#W2417020", "#W5605613", "#W3614011"]
|
|
2969
|
+
}
|
|
2970
|
+
},
|
|
2971
|
+
"orders": {
|
|
2972
|
+
"#W5866402": {
|
|
2973
|
+
"order_id": "#W5866402",
|
|
2974
|
+
"user_id": "olivia_ito_3591",
|
|
2975
|
+
"address": {
|
|
2976
|
+
"address1": "570 Elm Avenue",
|
|
2977
|
+
"address2": "Suite 175",
|
|
2978
|
+
"city": "Denver",
|
|
2979
|
+
"country": "USA",
|
|
2980
|
+
"state": "CO",
|
|
2981
|
+
"zip": "80218"
|
|
2982
|
+
},
|
|
2983
|
+
"items": [
|
|
2984
|
+
{
|
|
2985
|
+
"name": "Espresso Machine",
|
|
2986
|
+
"product_id": "4354588079",
|
|
2987
|
+
"item_id": "6242772310",
|
|
2988
|
+
"price": 2996.03,
|
|
2989
|
+
"options": {
|
|
2990
|
+
"pressure": "19 bar",
|
|
2991
|
+
"capacity": "1L",
|
|
2992
|
+
"type": "automatic"
|
|
2993
|
+
}
|
|
2994
|
+
},
|
|
2995
|
+
{
|
|
2996
|
+
"name": "Sneakers",
|
|
2997
|
+
"product_id": "7471004230",
|
|
2998
|
+
"item_id": "9727387530",
|
|
2999
|
+
"price": 207.75,
|
|
3000
|
+
"options": {
|
|
3001
|
+
"size": "11",
|
|
3002
|
+
"color": "black",
|
|
3003
|
+
"material": "synthetic"
|
|
3004
|
+
}
|
|
3005
|
+
}
|
|
3006
|
+
],
|
|
3007
|
+
"status": "delivered",
|
|
3008
|
+
"fulfillments": [
|
|
3009
|
+
{
|
|
3010
|
+
"tracking_id": ["203283266934"],
|
|
3011
|
+
"item_ids": ["6242772310", "9727387530"]
|
|
3012
|
+
}
|
|
3013
|
+
],
|
|
3014
|
+
"payment_history": [
|
|
3015
|
+
{
|
|
3016
|
+
"transaction_type": "payment",
|
|
3017
|
+
"amount": 3203.78,
|
|
3018
|
+
"payment_method_id": "paypal_8049766"
|
|
3019
|
+
}
|
|
3020
|
+
]
|
|
3021
|
+
},
|
|
3022
|
+
"#W5353646": {
|
|
3023
|
+
"order_id": "#W5353646",
|
|
3024
|
+
"user_id": "olivia_ito_3591",
|
|
3025
|
+
"address": {
|
|
3026
|
+
"address1": "570 Elm Avenue",
|
|
3027
|
+
"address2": "Suite 175",
|
|
3028
|
+
"city": "Denver",
|
|
3029
|
+
"country": "USA",
|
|
3030
|
+
"state": "CO",
|
|
3031
|
+
"zip": "80218"
|
|
3032
|
+
},
|
|
3033
|
+
"items": [
|
|
3034
|
+
{
|
|
3035
|
+
"name": "Skateboard",
|
|
3036
|
+
"product_id": "1968349452",
|
|
3037
|
+
"item_id": "5489028872",
|
|
3038
|
+
"price": 187.71,
|
|
3039
|
+
"options": {
|
|
3040
|
+
"deck material": "plastic",
|
|
3041
|
+
"length": "34 inch",
|
|
3042
|
+
"design": "graphic"
|
|
3043
|
+
}
|
|
3044
|
+
}
|
|
3045
|
+
],
|
|
3046
|
+
"status": "processed",
|
|
3047
|
+
"fulfillments": [
|
|
3048
|
+
{
|
|
3049
|
+
"tracking_id": ["632534065413"],
|
|
3050
|
+
"item_ids": ["5489028872"]
|
|
3051
|
+
}
|
|
3052
|
+
],
|
|
3053
|
+
"payment_history": [
|
|
3054
|
+
{
|
|
3055
|
+
"transaction_type": "payment",
|
|
3056
|
+
"amount": 187.71,
|
|
3057
|
+
"payment_method_id": "paypal_8049766"
|
|
3058
|
+
}
|
|
3059
|
+
]
|
|
3060
|
+
},
|
|
3061
|
+
"#W5442520": {
|
|
3062
|
+
"order_id": "#W5442520",
|
|
3063
|
+
"user_id": "olivia_ito_3591",
|
|
3064
|
+
"address": {
|
|
3065
|
+
"address1": "570 Elm Avenue",
|
|
3066
|
+
"address2": "Suite 175",
|
|
3067
|
+
"city": "Denver",
|
|
3068
|
+
"country": "USA",
|
|
3069
|
+
"state": "CO",
|
|
3070
|
+
"zip": "80218"
|
|
3071
|
+
},
|
|
3072
|
+
"items": [
|
|
3073
|
+
{
|
|
3074
|
+
"name": "Gaming Mouse",
|
|
3075
|
+
"product_id": "5713490933",
|
|
3076
|
+
"item_id": "3330317167",
|
|
3077
|
+
"price": 137.32,
|
|
3078
|
+
"options": {
|
|
3079
|
+
"color": "black",
|
|
3080
|
+
"sensor type": "optical",
|
|
3081
|
+
"connectivity": "wired"
|
|
3082
|
+
}
|
|
3083
|
+
},
|
|
3084
|
+
{
|
|
3085
|
+
"name": "Patio Umbrella",
|
|
3086
|
+
"product_id": "9743693396",
|
|
3087
|
+
"item_id": "3111466194",
|
|
3088
|
+
"price": 285.66,
|
|
3089
|
+
"options": {
|
|
3090
|
+
"size": "7 ft",
|
|
3091
|
+
"color": "red",
|
|
3092
|
+
"material": "polyester",
|
|
3093
|
+
"tilt mechanism": "manual tilt"
|
|
3094
|
+
}
|
|
3095
|
+
},
|
|
3096
|
+
{
|
|
3097
|
+
"name": "Hiking Boots",
|
|
3098
|
+
"product_id": "7363354090",
|
|
3099
|
+
"item_id": "2648909398",
|
|
3100
|
+
"price": 240.87,
|
|
3101
|
+
"options": {
|
|
3102
|
+
"size": "8",
|
|
3103
|
+
"material": "leather",
|
|
3104
|
+
"waterproof": "yes"
|
|
3105
|
+
}
|
|
3106
|
+
}
|
|
3107
|
+
],
|
|
3108
|
+
"status": "pending",
|
|
3109
|
+
"fulfillments": [],
|
|
3110
|
+
"payment_history": [
|
|
3111
|
+
{
|
|
3112
|
+
"transaction_type": "payment",
|
|
3113
|
+
"amount": 663.85,
|
|
3114
|
+
"payment_method_id": "credit_card_9753331"
|
|
3115
|
+
}
|
|
3116
|
+
]
|
|
3117
|
+
},
|
|
3118
|
+
"#W7941031": {
|
|
3119
|
+
"order_id": "#W7941031",
|
|
3120
|
+
"user_id": "olivia_ito_3591",
|
|
3121
|
+
"address": {
|
|
3122
|
+
"address1": "570 Elm Avenue",
|
|
3123
|
+
"address2": "Suite 175",
|
|
3124
|
+
"city": "Denver",
|
|
3125
|
+
"country": "USA",
|
|
3126
|
+
"state": "CO",
|
|
3127
|
+
"zip": "80218"
|
|
3128
|
+
},
|
|
3129
|
+
"items": [
|
|
3130
|
+
{
|
|
3131
|
+
"name": "Wristwatch",
|
|
3132
|
+
"product_id": "6066914160",
|
|
3133
|
+
"item_id": "1355937109",
|
|
3134
|
+
"price": 1985.3,
|
|
3135
|
+
"options": {
|
|
3136
|
+
"strap material": "leather",
|
|
3137
|
+
"dial color": "white"
|
|
3138
|
+
}
|
|
3139
|
+
},
|
|
3140
|
+
{
|
|
3141
|
+
"name": "Backpack",
|
|
3142
|
+
"product_id": "2524789262",
|
|
3143
|
+
"item_id": "5917587651",
|
|
3144
|
+
"price": 212.79,
|
|
3145
|
+
"options": {
|
|
3146
|
+
"color": "grey",
|
|
3147
|
+
"size": "medium",
|
|
3148
|
+
"material": "polyester",
|
|
3149
|
+
"compartment": "laptop"
|
|
3150
|
+
}
|
|
3151
|
+
}
|
|
3152
|
+
],
|
|
3153
|
+
"status": "pending",
|
|
3154
|
+
"fulfillments": [],
|
|
3155
|
+
"payment_history": [
|
|
3156
|
+
{
|
|
3157
|
+
"transaction_type": "payment",
|
|
3158
|
+
"amount": 2198.09,
|
|
3159
|
+
"payment_method_id": "credit_card_9753331"
|
|
3160
|
+
}
|
|
3161
|
+
]
|
|
3162
|
+
},
|
|
3163
|
+
"#W3657213": {
|
|
3164
|
+
"order_id": "#W3657213",
|
|
3165
|
+
"user_id": "olivia_ito_3591",
|
|
3166
|
+
"address": {
|
|
3167
|
+
"address1": "570 Elm Avenue",
|
|
3168
|
+
"address2": "Suite 175",
|
|
3169
|
+
"city": "Denver",
|
|
3170
|
+
"country": "USA",
|
|
3171
|
+
"state": "CO",
|
|
3172
|
+
"zip": "80218"
|
|
3173
|
+
},
|
|
3174
|
+
"items": [
|
|
3175
|
+
{
|
|
3176
|
+
"name": "Action Camera",
|
|
3177
|
+
"product_id": "3377618313",
|
|
3178
|
+
"item_id": "6700049080",
|
|
3179
|
+
"price": 466.75,
|
|
3180
|
+
"options": {
|
|
3181
|
+
"resolution": "4K",
|
|
3182
|
+
"waterproof": "yes",
|
|
3183
|
+
"color": "black"
|
|
3184
|
+
}
|
|
3185
|
+
},
|
|
3186
|
+
{
|
|
3187
|
+
"name": "Digital Camera",
|
|
3188
|
+
"product_id": "8940227892",
|
|
3189
|
+
"item_id": "5996159312",
|
|
3190
|
+
"price": 2895.55,
|
|
3191
|
+
"options": {
|
|
3192
|
+
"resolution": "24MP",
|
|
3193
|
+
"zoom": "3x",
|
|
3194
|
+
"storage": "SD card"
|
|
3195
|
+
}
|
|
3196
|
+
},
|
|
3197
|
+
{
|
|
3198
|
+
"name": "Cycling Helmet",
|
|
3199
|
+
"product_id": "7765186836",
|
|
3200
|
+
"item_id": "5886093635",
|
|
3201
|
+
"price": 208.04,
|
|
3202
|
+
"options": {
|
|
3203
|
+
"size": "S",
|
|
3204
|
+
"color": "blue",
|
|
3205
|
+
"ventilation": "low"
|
|
3206
|
+
}
|
|
3207
|
+
}
|
|
3208
|
+
],
|
|
3209
|
+
"status": "pending",
|
|
3210
|
+
"fulfillments": [],
|
|
3211
|
+
"payment_history": [
|
|
3212
|
+
{
|
|
3213
|
+
"transaction_type": "payment",
|
|
3214
|
+
"amount": 3570.34,
|
|
3215
|
+
"payment_method_id": "gift_card_7794233"
|
|
3216
|
+
}
|
|
3217
|
+
]
|
|
3218
|
+
},
|
|
3219
|
+
"#W4316152": {
|
|
3220
|
+
"order_id": "#W4316152",
|
|
3221
|
+
"user_id": "aarav_anderson_8794",
|
|
3222
|
+
"address": {
|
|
3223
|
+
"address1": "931 Maple Drive",
|
|
3224
|
+
"address2": "Suite 985",
|
|
3225
|
+
"city": "Philadelphia",
|
|
3226
|
+
"country": "USA",
|
|
3227
|
+
"state": "PA",
|
|
3228
|
+
"zip": "19031"
|
|
3229
|
+
},
|
|
3230
|
+
"items": [
|
|
3231
|
+
{
|
|
3232
|
+
"name": "Tea Kettle",
|
|
3233
|
+
"product_id": "9832717871",
|
|
3234
|
+
"item_id": "7292993796",
|
|
3235
|
+
"price": 94.8,
|
|
3236
|
+
"options": {
|
|
3237
|
+
"material": "glass",
|
|
3238
|
+
"capacity": "2 liters",
|
|
3239
|
+
"stovetop compatibility": "induction"
|
|
3240
|
+
}
|
|
3241
|
+
},
|
|
3242
|
+
{
|
|
3243
|
+
"name": "Tea Kettle",
|
|
3244
|
+
"product_id": "9832717871",
|
|
3245
|
+
"item_id": "7292993796",
|
|
3246
|
+
"price": 94.8,
|
|
3247
|
+
"options": {
|
|
3248
|
+
"material": "glass",
|
|
3249
|
+
"capacity": "2 liters",
|
|
3250
|
+
"stovetop compatibility": "induction"
|
|
3251
|
+
}
|
|
3252
|
+
}
|
|
3253
|
+
],
|
|
3254
|
+
"status": "delivered",
|
|
3255
|
+
"fulfillments": [
|
|
3256
|
+
{
|
|
3257
|
+
"tracking_id": ["555227871167"],
|
|
3258
|
+
"item_ids": ["7292993796", "7292993796"]
|
|
3259
|
+
}
|
|
3260
|
+
],
|
|
3261
|
+
"payment_history": [
|
|
3262
|
+
{
|
|
3263
|
+
"transaction_type": "payment",
|
|
3264
|
+
"amount": 189.6,
|
|
3265
|
+
"payment_method_id": "gift_card_7245904"
|
|
3266
|
+
}
|
|
3267
|
+
]
|
|
3268
|
+
},
|
|
3269
|
+
"#W9311069": {
|
|
3270
|
+
"order_id": "#W9311069",
|
|
3271
|
+
"user_id": "aarav_anderson_8794",
|
|
3272
|
+
"address": {
|
|
3273
|
+
"address1": "931 Maple Drive",
|
|
3274
|
+
"address2": "Suite 985",
|
|
3275
|
+
"city": "Philadelphia",
|
|
3276
|
+
"country": "USA",
|
|
3277
|
+
"state": "PA",
|
|
3278
|
+
"zip": "19031"
|
|
3279
|
+
},
|
|
3280
|
+
"items": [
|
|
3281
|
+
{
|
|
3282
|
+
"name": "Bookshelf",
|
|
3283
|
+
"product_id": "8600330539",
|
|
3284
|
+
"item_id": "7154215719",
|
|
3285
|
+
"price": 505.62,
|
|
3286
|
+
"options": {
|
|
3287
|
+
"material": "wood",
|
|
3288
|
+
"color": "brown",
|
|
3289
|
+
"height": "6 ft"
|
|
3290
|
+
}
|
|
3291
|
+
},
|
|
3292
|
+
{
|
|
3293
|
+
"name": "Espresso Machine",
|
|
3294
|
+
"product_id": "4354588079",
|
|
3295
|
+
"item_id": "7407838442",
|
|
3296
|
+
"price": 3081.91,
|
|
3297
|
+
"options": {
|
|
3298
|
+
"pressure": "9 bar",
|
|
3299
|
+
"capacity": "1L",
|
|
3300
|
+
"type": "manual"
|
|
3301
|
+
}
|
|
3302
|
+
},
|
|
3303
|
+
{
|
|
3304
|
+
"name": "Garden Hose",
|
|
3305
|
+
"product_id": "6679515468",
|
|
3306
|
+
"item_id": "9829827210",
|
|
3307
|
+
"price": 90.43,
|
|
3308
|
+
"options": {
|
|
3309
|
+
"length": "25ft",
|
|
3310
|
+
"material": "vinyl",
|
|
3311
|
+
"color": "blue"
|
|
3312
|
+
}
|
|
3313
|
+
},
|
|
3314
|
+
{
|
|
3315
|
+
"name": "Vacuum Cleaner",
|
|
3316
|
+
"product_id": "1762337868",
|
|
3317
|
+
"item_id": "1304426904",
|
|
3318
|
+
"price": 565.79,
|
|
3319
|
+
"options": {
|
|
3320
|
+
"type": "canister",
|
|
3321
|
+
"bagged/bagless": "bagless",
|
|
3322
|
+
"features": "HEPA filter"
|
|
3323
|
+
}
|
|
3324
|
+
},
|
|
3325
|
+
{
|
|
3326
|
+
"name": "Tea Kettle",
|
|
3327
|
+
"product_id": "9832717871",
|
|
3328
|
+
"item_id": "4238115171",
|
|
3329
|
+
"price": 91.78,
|
|
3330
|
+
"options": {
|
|
3331
|
+
"material": "stainless steel",
|
|
3332
|
+
"capacity": "2 liters",
|
|
3333
|
+
"stovetop compatibility": "gas"
|
|
3334
|
+
}
|
|
3335
|
+
}
|
|
3336
|
+
],
|
|
3337
|
+
"status": "delivered",
|
|
3338
|
+
"fulfillments": [
|
|
3339
|
+
{
|
|
3340
|
+
"tracking_id": ["739892591834"],
|
|
3341
|
+
"item_ids": ["7154215719", "7407838442", "9829827210", "1304426904", "4238115171"]
|
|
3342
|
+
}
|
|
3343
|
+
],
|
|
3344
|
+
"payment_history": [
|
|
3345
|
+
{
|
|
3346
|
+
"transaction_type": "payment",
|
|
3347
|
+
"amount": 4335.53,
|
|
3348
|
+
"payment_method_id": "gift_card_7245904"
|
|
3349
|
+
}
|
|
3350
|
+
]
|
|
3351
|
+
},
|
|
3352
|
+
"#W9300146": {
|
|
3353
|
+
"order_id": "#W9300146",
|
|
3354
|
+
"user_id": "aarav_anderson_8794",
|
|
3355
|
+
"address": {
|
|
3356
|
+
"address1": "931 Maple Drive",
|
|
3357
|
+
"address2": "Suite 985",
|
|
3358
|
+
"city": "Philadelphia",
|
|
3359
|
+
"country": "USA",
|
|
3360
|
+
"state": "PA",
|
|
3361
|
+
"zip": "19031"
|
|
3362
|
+
},
|
|
3363
|
+
"items": [
|
|
3364
|
+
{
|
|
3365
|
+
"name": "Desk Lamp",
|
|
3366
|
+
"product_id": "6817146515",
|
|
3367
|
+
"item_id": "9190635437",
|
|
3368
|
+
"price": 153.23,
|
|
3369
|
+
"options": {
|
|
3370
|
+
"color": "black",
|
|
3371
|
+
"brightness": "low",
|
|
3372
|
+
"power source": "USB"
|
|
3373
|
+
}
|
|
3374
|
+
}
|
|
3375
|
+
],
|
|
3376
|
+
"status": "pending",
|
|
3377
|
+
"fulfillments": [],
|
|
3378
|
+
"payment_history": [
|
|
3379
|
+
{
|
|
3380
|
+
"transaction_type": "payment",
|
|
3381
|
+
"amount": 153.23,
|
|
3382
|
+
"payment_method_id": "gift_card_7245904"
|
|
3383
|
+
}
|
|
3384
|
+
]
|
|
3385
|
+
},
|
|
3386
|
+
"#W3220203": {
|
|
3387
|
+
"order_id": "#W3220203",
|
|
3388
|
+
"user_id": "aarav_anderson_8794",
|
|
3389
|
+
"address": {
|
|
3390
|
+
"address1": "931 Maple Drive",
|
|
3391
|
+
"address2": "Suite 985",
|
|
3392
|
+
"city": "Philadelphia",
|
|
3393
|
+
"country": "USA",
|
|
3394
|
+
"state": "PA",
|
|
3395
|
+
"zip": "19031"
|
|
3396
|
+
},
|
|
3397
|
+
"items": [
|
|
3398
|
+
{
|
|
3399
|
+
"name": "Bluetooth Speaker",
|
|
3400
|
+
"product_id": "4768869376",
|
|
3401
|
+
"item_id": "5650803029",
|
|
3402
|
+
"price": 324.63,
|
|
3403
|
+
"options": {
|
|
3404
|
+
"color": "black",
|
|
3405
|
+
"battery life": "20 hours",
|
|
3406
|
+
"water resistance": "no"
|
|
3407
|
+
}
|
|
3408
|
+
}
|
|
3409
|
+
],
|
|
3410
|
+
"status": "processed",
|
|
3411
|
+
"fulfillments": [
|
|
3412
|
+
{
|
|
3413
|
+
"tracking_id": ["235384470799"],
|
|
3414
|
+
"item_ids": ["5650803029"]
|
|
3415
|
+
}
|
|
3416
|
+
],
|
|
3417
|
+
"payment_history": [
|
|
3418
|
+
{
|
|
3419
|
+
"transaction_type": "payment",
|
|
3420
|
+
"amount": 324.63,
|
|
3421
|
+
"payment_method_id": "gift_card_7245904"
|
|
3422
|
+
}
|
|
3423
|
+
]
|
|
3424
|
+
},
|
|
3425
|
+
"#W3470184": {
|
|
3426
|
+
"order_id": "#W3470184",
|
|
3427
|
+
"user_id": "aarav_anderson_8794",
|
|
3428
|
+
"address": {
|
|
3429
|
+
"address1": "931 Maple Drive",
|
|
3430
|
+
"address2": "Suite 985",
|
|
3431
|
+
"city": "Philadelphia",
|
|
3432
|
+
"country": "USA",
|
|
3433
|
+
"state": "PA",
|
|
3434
|
+
"zip": "19031"
|
|
3435
|
+
},
|
|
3436
|
+
"items": [
|
|
3437
|
+
{
|
|
3438
|
+
"name": "Wireless Earbuds",
|
|
3439
|
+
"product_id": "9924732112",
|
|
3440
|
+
"item_id": "6452271382",
|
|
3441
|
+
"price": 258.84,
|
|
3442
|
+
"options": {
|
|
3443
|
+
"color": "blue",
|
|
3444
|
+
"battery life": "4 hours",
|
|
3445
|
+
"water resistance": "IPX4"
|
|
3446
|
+
}
|
|
3447
|
+
},
|
|
3448
|
+
{
|
|
3449
|
+
"name": "Water Bottle",
|
|
3450
|
+
"product_id": "8310926033",
|
|
3451
|
+
"item_id": "2366567022",
|
|
3452
|
+
"price": 54.04,
|
|
3453
|
+
"options": {
|
|
3454
|
+
"capacity": "1000ml",
|
|
3455
|
+
"material": "stainless steel",
|
|
3456
|
+
"color": "blue"
|
|
3457
|
+
}
|
|
3458
|
+
},
|
|
3459
|
+
{
|
|
3460
|
+
"name": "Wireless Earbuds",
|
|
3461
|
+
"product_id": "9924732112",
|
|
3462
|
+
"item_id": "1646531091",
|
|
3463
|
+
"price": 232.49,
|
|
3464
|
+
"options": {
|
|
3465
|
+
"color": "blue",
|
|
3466
|
+
"battery life": "6 hours",
|
|
3467
|
+
"water resistance": "IPX4"
|
|
3468
|
+
}
|
|
3469
|
+
},
|
|
3470
|
+
{
|
|
3471
|
+
"name": "Wireless Earbuds",
|
|
3472
|
+
"product_id": "9924732112",
|
|
3473
|
+
"item_id": "2757705742",
|
|
3474
|
+
"price": 258.97,
|
|
3475
|
+
"options": {
|
|
3476
|
+
"color": "blue",
|
|
3477
|
+
"battery life": "4 hours",
|
|
3478
|
+
"water resistance": "IPX7"
|
|
3479
|
+
}
|
|
3480
|
+
},
|
|
3481
|
+
{
|
|
3482
|
+
"name": "Bookshelf",
|
|
3483
|
+
"product_id": "8600330539",
|
|
3484
|
+
"item_id": "1768466237",
|
|
3485
|
+
"price": 549.84,
|
|
3486
|
+
"options": {
|
|
3487
|
+
"material": "glass",
|
|
3488
|
+
"color": "black",
|
|
3489
|
+
"height": "3 ft"
|
|
3490
|
+
}
|
|
3491
|
+
}
|
|
3492
|
+
],
|
|
3493
|
+
"status": "delivered",
|
|
3494
|
+
"fulfillments": [
|
|
3495
|
+
{
|
|
3496
|
+
"tracking_id": ["326433164179"],
|
|
3497
|
+
"item_ids": ["6452271382", "2366567022", "1646531091", "2757705742", "1768466237"]
|
|
3498
|
+
}
|
|
3499
|
+
],
|
|
3500
|
+
"payment_history": [
|
|
3501
|
+
{
|
|
3502
|
+
"transaction_type": "payment",
|
|
3503
|
+
"amount": 1354.18,
|
|
3504
|
+
"payment_method_id": "gift_card_7245904"
|
|
3505
|
+
}
|
|
3506
|
+
]
|
|
3507
|
+
},
|
|
3508
|
+
"#W4140680": {
|
|
3509
|
+
"order_id": "#W4140680",
|
|
3510
|
+
"user_id": "anya_garcia_3271",
|
|
3511
|
+
"address": {
|
|
3512
|
+
"address1": "615 Laurel Lane",
|
|
3513
|
+
"address2": "Suite 552",
|
|
3514
|
+
"city": "Philadelphia",
|
|
3515
|
+
"country": "USA",
|
|
3516
|
+
"state": "PA",
|
|
3517
|
+
"zip": "19036"
|
|
3518
|
+
},
|
|
3519
|
+
"items": [
|
|
3520
|
+
{
|
|
3521
|
+
"name": "E-Reader",
|
|
3522
|
+
"product_id": "3801771308",
|
|
3523
|
+
"item_id": "4273929280",
|
|
3524
|
+
"price": 244.95,
|
|
3525
|
+
"options": {
|
|
3526
|
+
"screen size": "7-inch",
|
|
3527
|
+
"connectivity": "Wi-Fi + Cellular",
|
|
3528
|
+
"storage": "32GB"
|
|
3529
|
+
}
|
|
3530
|
+
},
|
|
3531
|
+
{
|
|
3532
|
+
"name": "Bookshelf",
|
|
3533
|
+
"product_id": "8600330539",
|
|
3534
|
+
"item_id": "8895454203",
|
|
3535
|
+
"price": 504.65,
|
|
3536
|
+
"options": {
|
|
3537
|
+
"material": "glass",
|
|
3538
|
+
"color": "white",
|
|
3539
|
+
"height": "5 ft"
|
|
3540
|
+
}
|
|
3541
|
+
},
|
|
3542
|
+
{
|
|
3543
|
+
"name": "Bluetooth Speaker",
|
|
3544
|
+
"product_id": "4768869376",
|
|
3545
|
+
"item_id": "9440686670",
|
|
3546
|
+
"price": 298.91,
|
|
3547
|
+
"options": {
|
|
3548
|
+
"color": "green",
|
|
3549
|
+
"battery life": "20 hours",
|
|
3550
|
+
"water resistance": "no"
|
|
3551
|
+
}
|
|
3552
|
+
}
|
|
3553
|
+
],
|
|
3554
|
+
"status": "cancelled",
|
|
3555
|
+
"fulfillments": [
|
|
3556
|
+
{
|
|
3557
|
+
"tracking_id": ["447833475637"],
|
|
3558
|
+
"item_ids": ["4273929280", "8895454203", "9440686670"]
|
|
3559
|
+
}
|
|
3560
|
+
],
|
|
3561
|
+
"payment_history": [
|
|
3562
|
+
{
|
|
3563
|
+
"transaction_type": "payment",
|
|
3564
|
+
"amount": 1048.51,
|
|
3565
|
+
"payment_method_id": "gift_card_4374071"
|
|
3566
|
+
},
|
|
3567
|
+
{
|
|
3568
|
+
"transaction_type": "refund",
|
|
3569
|
+
"amount": 1048.51,
|
|
3570
|
+
"payment_method_id": "gift_card_4374071"
|
|
3571
|
+
}
|
|
3572
|
+
]
|
|
3573
|
+
},
|
|
3574
|
+
"#W6310710": {
|
|
3575
|
+
"order_id": "#W6310710",
|
|
3576
|
+
"user_id": "anya_garcia_3271",
|
|
3577
|
+
"address": {
|
|
3578
|
+
"address1": "615 Laurel Lane",
|
|
3579
|
+
"address2": "Suite 552",
|
|
3580
|
+
"city": "Philadelphia",
|
|
3581
|
+
"country": "USA",
|
|
3582
|
+
"state": "PA",
|
|
3583
|
+
"zip": "19036"
|
|
3584
|
+
},
|
|
3585
|
+
"items": [
|
|
3586
|
+
{
|
|
3587
|
+
"name": "Tea Kettle",
|
|
3588
|
+
"product_id": "9832717871",
|
|
3589
|
+
"item_id": "2820119811",
|
|
3590
|
+
"price": 94.68,
|
|
3591
|
+
"options": {
|
|
3592
|
+
"material": "glass",
|
|
3593
|
+
"capacity": "2 liters",
|
|
3594
|
+
"stovetop compatibility": "electric"
|
|
3595
|
+
}
|
|
3596
|
+
}
|
|
3597
|
+
],
|
|
3598
|
+
"status": "processed",
|
|
3599
|
+
"fulfillments": [
|
|
3600
|
+
{
|
|
3601
|
+
"tracking_id": ["951786982868"],
|
|
3602
|
+
"item_ids": ["2820119811"]
|
|
3603
|
+
}
|
|
3604
|
+
],
|
|
3605
|
+
"payment_history": [
|
|
3606
|
+
{
|
|
3607
|
+
"transaction_type": "payment",
|
|
3608
|
+
"amount": 94.68,
|
|
3609
|
+
"payment_method_id": "gift_card_4374071"
|
|
3610
|
+
}
|
|
3611
|
+
]
|
|
3612
|
+
},
|
|
3613
|
+
"#W6436609": {
|
|
3614
|
+
"order_id": "#W6436609",
|
|
3615
|
+
"user_id": "anya_garcia_3271",
|
|
3616
|
+
"address": {
|
|
3617
|
+
"address1": "615 Laurel Lane",
|
|
3618
|
+
"address2": "Suite 552",
|
|
3619
|
+
"city": "Philadelphia",
|
|
3620
|
+
"country": "USA",
|
|
3621
|
+
"state": "PA",
|
|
3622
|
+
"zip": "19036"
|
|
3623
|
+
},
|
|
3624
|
+
"items": [
|
|
3625
|
+
{
|
|
3626
|
+
"name": "Tea Kettle",
|
|
3627
|
+
"product_id": "9832717871",
|
|
3628
|
+
"item_id": "7497340597",
|
|
3629
|
+
"price": 100.83,
|
|
3630
|
+
"options": {
|
|
3631
|
+
"material": "ceramic",
|
|
3632
|
+
"capacity": "1.5 liters",
|
|
3633
|
+
"stovetop compatibility": "gas"
|
|
3634
|
+
}
|
|
3635
|
+
},
|
|
3636
|
+
{
|
|
3637
|
+
"name": "Smart Watch",
|
|
3638
|
+
"product_id": "6945232052",
|
|
3639
|
+
"item_id": "4920090458",
|
|
3640
|
+
"price": 381.87,
|
|
3641
|
+
"options": {
|
|
3642
|
+
"color": "black",
|
|
3643
|
+
"band material": "silicone",
|
|
3644
|
+
"display": "AMOLED"
|
|
3645
|
+
}
|
|
3646
|
+
},
|
|
3647
|
+
{
|
|
3648
|
+
"name": "Makeup Kit",
|
|
3649
|
+
"product_id": "5149340237",
|
|
3650
|
+
"item_id": "1709726483",
|
|
3651
|
+
"price": 230.26,
|
|
3652
|
+
"options": {
|
|
3653
|
+
"skin tone": "medium",
|
|
3654
|
+
"kit size": "basic",
|
|
3655
|
+
"brand": "Brand A"
|
|
3656
|
+
}
|
|
3657
|
+
},
|
|
3658
|
+
{
|
|
3659
|
+
"name": "Laptop",
|
|
3660
|
+
"product_id": "4760268021",
|
|
3661
|
+
"item_id": "6017636844",
|
|
3662
|
+
"price": 2292.37,
|
|
3663
|
+
"options": {
|
|
3664
|
+
"screen size": "15-inch",
|
|
3665
|
+
"processor": "i7",
|
|
3666
|
+
"ram": "32GB",
|
|
3667
|
+
"storage": "1TB SSD",
|
|
3668
|
+
"color": "space grey"
|
|
3669
|
+
}
|
|
3670
|
+
}
|
|
3671
|
+
],
|
|
3672
|
+
"status": "pending",
|
|
3673
|
+
"fulfillments": [],
|
|
3674
|
+
"payment_history": [
|
|
3675
|
+
{
|
|
3676
|
+
"transaction_type": "payment",
|
|
3677
|
+
"amount": 3005.33,
|
|
3678
|
+
"payment_method_id": "gift_card_4374071"
|
|
3679
|
+
}
|
|
3680
|
+
]
|
|
3681
|
+
},
|
|
3682
|
+
"#W6979932": {
|
|
3683
|
+
"order_id": "#W6979932",
|
|
3684
|
+
"user_id": "aarav_gonzalez_5113",
|
|
3685
|
+
"address": {
|
|
3686
|
+
"address1": "264 River Road",
|
|
3687
|
+
"address2": "Suite 604",
|
|
3688
|
+
"city": "San Antonio",
|
|
3689
|
+
"country": "USA",
|
|
3690
|
+
"state": "TX",
|
|
3691
|
+
"zip": "78268"
|
|
3692
|
+
},
|
|
3693
|
+
"items": [
|
|
3694
|
+
{
|
|
3695
|
+
"name": "Electric Toothbrush",
|
|
3696
|
+
"product_id": "7352963235",
|
|
3697
|
+
"item_id": "6164262152",
|
|
3698
|
+
"price": 211.11,
|
|
3699
|
+
"options": {
|
|
3700
|
+
"color": "white",
|
|
3701
|
+
"speed settings": "low",
|
|
3702
|
+
"battery type": "rechargeable"
|
|
3703
|
+
}
|
|
3704
|
+
},
|
|
3705
|
+
{
|
|
3706
|
+
"name": "Action Camera",
|
|
3707
|
+
"product_id": "3377618313",
|
|
3708
|
+
"item_id": "1586641416",
|
|
3709
|
+
"price": 497.39,
|
|
3710
|
+
"options": {
|
|
3711
|
+
"resolution": "5K",
|
|
3712
|
+
"waterproof": "yes",
|
|
3713
|
+
"color": "silver"
|
|
3714
|
+
}
|
|
3715
|
+
},
|
|
3716
|
+
{
|
|
3717
|
+
"name": "Cycling Helmet",
|
|
3718
|
+
"product_id": "7765186836",
|
|
3719
|
+
"item_id": "3339188619",
|
|
3720
|
+
"price": 200.24,
|
|
3721
|
+
"options": {
|
|
3722
|
+
"size": "M",
|
|
3723
|
+
"color": "blue",
|
|
3724
|
+
"ventilation": "low"
|
|
3725
|
+
}
|
|
3726
|
+
},
|
|
3727
|
+
{
|
|
3728
|
+
"name": "Smart Watch",
|
|
3729
|
+
"product_id": "6945232052",
|
|
3730
|
+
"item_id": "2993891288",
|
|
3731
|
+
"price": 383.08,
|
|
3732
|
+
"options": {
|
|
3733
|
+
"color": "silver",
|
|
3734
|
+
"band material": "leather",
|
|
3735
|
+
"display": "AMOLED"
|
|
3736
|
+
}
|
|
3737
|
+
}
|
|
3738
|
+
],
|
|
3739
|
+
"status": "pending",
|
|
3740
|
+
"fulfillments": [],
|
|
3741
|
+
"payment_history": [
|
|
3742
|
+
{
|
|
3743
|
+
"transaction_type": "payment",
|
|
3744
|
+
"amount": 1291.82,
|
|
3745
|
+
"payment_method_id": "paypal_6121064"
|
|
3746
|
+
}
|
|
3747
|
+
]
|
|
3748
|
+
},
|
|
3749
|
+
"#W6797115": {
|
|
3750
|
+
"order_id": "#W6797115",
|
|
3751
|
+
"user_id": "aarav_gonzalez_5113",
|
|
3752
|
+
"address": {
|
|
3753
|
+
"address1": "270 River Road",
|
|
3754
|
+
"address2": "Suite 611",
|
|
3755
|
+
"city": "San Diego",
|
|
3756
|
+
"country": "USA",
|
|
3757
|
+
"state": "CA",
|
|
3758
|
+
"zip": "92194"
|
|
3759
|
+
},
|
|
3760
|
+
"items": [
|
|
3761
|
+
{
|
|
3762
|
+
"name": "Air Purifier",
|
|
3763
|
+
"product_id": "3821016478",
|
|
3764
|
+
"item_id": "8302289002",
|
|
3765
|
+
"price": 547.55,
|
|
3766
|
+
"options": {
|
|
3767
|
+
"room size": "large",
|
|
3768
|
+
"filter type": "HEPA",
|
|
3769
|
+
"features": "night mode"
|
|
3770
|
+
}
|
|
3771
|
+
},
|
|
3772
|
+
{
|
|
3773
|
+
"name": "Mechanical Keyboard",
|
|
3774
|
+
"product_id": "1656367028",
|
|
3775
|
+
"item_id": "7658724607",
|
|
3776
|
+
"price": 256.73,
|
|
3777
|
+
"options": {
|
|
3778
|
+
"switch type": "tactile",
|
|
3779
|
+
"backlight": "none",
|
|
3780
|
+
"size": "80%"
|
|
3781
|
+
}
|
|
3782
|
+
}
|
|
3783
|
+
],
|
|
3784
|
+
"status": "delivered",
|
|
3785
|
+
"fulfillments": [
|
|
3786
|
+
{
|
|
3787
|
+
"tracking_id": ["903322238282"],
|
|
3788
|
+
"item_ids": ["8302289002", "7658724607"]
|
|
3789
|
+
}
|
|
3790
|
+
],
|
|
3791
|
+
"payment_history": [
|
|
3792
|
+
{
|
|
3793
|
+
"transaction_type": "payment",
|
|
3794
|
+
"amount": 804.28,
|
|
3795
|
+
"payment_method_id": "gift_card_5979071"
|
|
3796
|
+
}
|
|
3797
|
+
]
|
|
3798
|
+
},
|
|
3799
|
+
"#W9160732": {
|
|
3800
|
+
"order_id": "#W9160732",
|
|
3801
|
+
"user_id": "aarav_gonzalez_5113",
|
|
3802
|
+
"address": {
|
|
3803
|
+
"address1": "264 River Road",
|
|
3804
|
+
"address2": "Suite 604",
|
|
3805
|
+
"city": "San Antonio",
|
|
3806
|
+
"country": "USA",
|
|
3807
|
+
"state": "TX",
|
|
3808
|
+
"zip": "78268"
|
|
3809
|
+
},
|
|
3810
|
+
"items": [
|
|
3811
|
+
{
|
|
3812
|
+
"name": "Water Bottle",
|
|
3813
|
+
"product_id": "8310926033",
|
|
3814
|
+
"item_id": "2366567022",
|
|
3815
|
+
"price": 54.04,
|
|
3816
|
+
"options": {
|
|
3817
|
+
"capacity": "1000ml",
|
|
3818
|
+
"material": "stainless steel",
|
|
3819
|
+
"color": "blue"
|
|
3820
|
+
}
|
|
3821
|
+
},
|
|
3822
|
+
{
|
|
3823
|
+
"name": "Bluetooth Speaker",
|
|
3824
|
+
"product_id": "4768869376",
|
|
3825
|
+
"item_id": "7597543861",
|
|
3826
|
+
"price": 310.47,
|
|
3827
|
+
"options": {
|
|
3828
|
+
"color": "black",
|
|
3829
|
+
"battery life": "10 hours",
|
|
3830
|
+
"water resistance": "no"
|
|
3831
|
+
}
|
|
3832
|
+
},
|
|
3833
|
+
{
|
|
3834
|
+
"name": "Wall Clock",
|
|
3835
|
+
"product_id": "2344688344",
|
|
3836
|
+
"item_id": "8610532516",
|
|
3837
|
+
"price": 203.76,
|
|
3838
|
+
"options": {
|
|
3839
|
+
"diameter": "10 inches",
|
|
3840
|
+
"color": "black",
|
|
3841
|
+
"type": "digital"
|
|
3842
|
+
}
|
|
3843
|
+
},
|
|
3844
|
+
{
|
|
3845
|
+
"name": "Patio Umbrella",
|
|
3846
|
+
"product_id": "9743693396",
|
|
3847
|
+
"item_id": "3111466194",
|
|
3848
|
+
"price": 285.66,
|
|
3849
|
+
"options": {
|
|
3850
|
+
"size": "7 ft",
|
|
3851
|
+
"color": "red",
|
|
3852
|
+
"material": "polyester",
|
|
3853
|
+
"tilt mechanism": "manual tilt"
|
|
3854
|
+
}
|
|
3855
|
+
},
|
|
3856
|
+
{
|
|
3857
|
+
"name": "Fleece Jacket",
|
|
3858
|
+
"product_id": "8560156827",
|
|
3859
|
+
"item_id": "8590708195",
|
|
3860
|
+
"price": 157.61,
|
|
3861
|
+
"options": {
|
|
3862
|
+
"size": "XL",
|
|
3863
|
+
"color": "navy",
|
|
3864
|
+
"zipper": "half"
|
|
3865
|
+
}
|
|
3866
|
+
}
|
|
3867
|
+
],
|
|
3868
|
+
"status": "pending",
|
|
3869
|
+
"fulfillments": [],
|
|
3870
|
+
"payment_history": [
|
|
3871
|
+
{
|
|
3872
|
+
"transaction_type": "payment",
|
|
3873
|
+
"amount": 1011.54,
|
|
3874
|
+
"payment_method_id": "gift_card_5979071"
|
|
3875
|
+
}
|
|
3876
|
+
]
|
|
3877
|
+
},
|
|
3878
|
+
"#W1840144": {
|
|
3879
|
+
"order_id": "#W1840144",
|
|
3880
|
+
"user_id": "harper_brown_7363",
|
|
3881
|
+
"address": {
|
|
3882
|
+
"address1": "723 Park Avenue",
|
|
3883
|
+
"address2": "Suite 802",
|
|
3884
|
+
"city": "Fort Worth",
|
|
3885
|
+
"country": "USA",
|
|
3886
|
+
"state": "TX",
|
|
3887
|
+
"zip": "76112"
|
|
3888
|
+
},
|
|
3889
|
+
"items": [
|
|
3890
|
+
{
|
|
3891
|
+
"name": "Desk Lamp",
|
|
3892
|
+
"product_id": "6817146515",
|
|
3893
|
+
"item_id": "8384507844",
|
|
3894
|
+
"price": 137.94,
|
|
3895
|
+
"options": {
|
|
3896
|
+
"color": "white",
|
|
3897
|
+
"brightness": "medium",
|
|
3898
|
+
"power source": "USB"
|
|
3899
|
+
}
|
|
3900
|
+
},
|
|
3901
|
+
{
|
|
3902
|
+
"name": "Laptop",
|
|
3903
|
+
"product_id": "4760268021",
|
|
3904
|
+
"item_id": "6017636844",
|
|
3905
|
+
"price": 2292.37,
|
|
3906
|
+
"options": {
|
|
3907
|
+
"screen size": "15-inch",
|
|
3908
|
+
"processor": "i7",
|
|
3909
|
+
"ram": "32GB",
|
|
3910
|
+
"storage": "1TB SSD",
|
|
3911
|
+
"color": "space grey"
|
|
3912
|
+
}
|
|
3913
|
+
},
|
|
3914
|
+
{
|
|
3915
|
+
"name": "Fleece Jacket",
|
|
3916
|
+
"product_id": "8560156827",
|
|
3917
|
+
"item_id": "8590708195",
|
|
3918
|
+
"price": 157.61,
|
|
3919
|
+
"options": {
|
|
3920
|
+
"size": "XL",
|
|
3921
|
+
"color": "navy",
|
|
3922
|
+
"zipper": "half"
|
|
3923
|
+
}
|
|
3924
|
+
},
|
|
3925
|
+
{
|
|
3926
|
+
"name": "Fleece Jacket",
|
|
3927
|
+
"product_id": "8560156827",
|
|
3928
|
+
"item_id": "8590708195",
|
|
3929
|
+
"price": 157.61,
|
|
3930
|
+
"options": {
|
|
3931
|
+
"size": "XL",
|
|
3932
|
+
"color": "navy",
|
|
3933
|
+
"zipper": "half"
|
|
3934
|
+
}
|
|
3935
|
+
},
|
|
3936
|
+
{
|
|
3937
|
+
"name": "Wall Clock",
|
|
3938
|
+
"product_id": "2344688344",
|
|
3939
|
+
"item_id": "6534134392",
|
|
3940
|
+
"price": 196.15,
|
|
3941
|
+
"options": {
|
|
3942
|
+
"diameter": "10 inches",
|
|
3943
|
+
"color": "wood",
|
|
3944
|
+
"type": "analog"
|
|
3945
|
+
}
|
|
3946
|
+
}
|
|
3947
|
+
],
|
|
3948
|
+
"status": "delivered",
|
|
3949
|
+
"fulfillments": [
|
|
3950
|
+
{
|
|
3951
|
+
"tracking_id": ["969011918193"],
|
|
3952
|
+
"item_ids": ["8384507844", "6017636844", "8590708195", "8590708195", "6534134392"]
|
|
3953
|
+
}
|
|
3954
|
+
],
|
|
3955
|
+
"payment_history": [
|
|
3956
|
+
{
|
|
3957
|
+
"transaction_type": "payment",
|
|
3958
|
+
"amount": 2941.68,
|
|
3959
|
+
"payment_method_id": "paypal_2306935"
|
|
3960
|
+
}
|
|
3961
|
+
]
|
|
3962
|
+
},
|
|
3963
|
+
"#W2693718": {
|
|
3964
|
+
"order_id": "#W2693718",
|
|
3965
|
+
"user_id": "harper_brown_7363",
|
|
3966
|
+
"address": {
|
|
3967
|
+
"address1": "723 Park Avenue",
|
|
3968
|
+
"address2": "Suite 802",
|
|
3969
|
+
"city": "Fort Worth",
|
|
3970
|
+
"country": "USA",
|
|
3971
|
+
"state": "TX",
|
|
3972
|
+
"zip": "76112"
|
|
3973
|
+
},
|
|
3974
|
+
"items": [
|
|
3975
|
+
{
|
|
3976
|
+
"name": "Laptop",
|
|
3977
|
+
"product_id": "4760268021",
|
|
3978
|
+
"item_id": "4241599783",
|
|
3979
|
+
"price": 2324.61,
|
|
3980
|
+
"options": {
|
|
3981
|
+
"screen size": "15-inch",
|
|
3982
|
+
"processor": "i7",
|
|
3983
|
+
"ram": "16GB",
|
|
3984
|
+
"storage": "1TB SSD",
|
|
3985
|
+
"color": "black"
|
|
3986
|
+
}
|
|
3987
|
+
},
|
|
3988
|
+
{
|
|
3989
|
+
"name": "Smartphone",
|
|
3990
|
+
"product_id": "1801728040",
|
|
3991
|
+
"item_id": "3952176596",
|
|
3992
|
+
"price": 1199.77,
|
|
3993
|
+
"options": {
|
|
3994
|
+
"color": "rose gold",
|
|
3995
|
+
"storage": "64GB",
|
|
3996
|
+
"RAM": "8GB",
|
|
3997
|
+
"screen size": "6.1-inch"
|
|
3998
|
+
}
|
|
3999
|
+
},
|
|
4000
|
+
{
|
|
4001
|
+
"name": "Jigsaw Puzzle",
|
|
4002
|
+
"product_id": "1808611083",
|
|
4003
|
+
"item_id": "7869640094",
|
|
4004
|
+
"price": 47.59,
|
|
4005
|
+
"options": {
|
|
4006
|
+
"pieces": "2000",
|
|
4007
|
+
"theme": "animals",
|
|
4008
|
+
"difficulty level": "expert"
|
|
4009
|
+
}
|
|
4010
|
+
},
|
|
4011
|
+
{
|
|
4012
|
+
"name": "Digital Camera",
|
|
4013
|
+
"product_id": "8940227892",
|
|
4014
|
+
"item_id": "7255224608",
|
|
4015
|
+
"price": 2922.97,
|
|
4016
|
+
"options": {
|
|
4017
|
+
"resolution": "30MP",
|
|
4018
|
+
"zoom": "3x",
|
|
4019
|
+
"storage": "CF card"
|
|
4020
|
+
}
|
|
4021
|
+
},
|
|
4022
|
+
{
|
|
4023
|
+
"name": "Sunglasses",
|
|
4024
|
+
"product_id": "7314138884",
|
|
4025
|
+
"item_id": "4358482460",
|
|
4026
|
+
"price": 290.94,
|
|
4027
|
+
"options": {
|
|
4028
|
+
"frame color": "black",
|
|
4029
|
+
"lens color": "brown",
|
|
4030
|
+
"lens type": "polarized",
|
|
4031
|
+
"frame material": "plastic"
|
|
4032
|
+
}
|
|
4033
|
+
}
|
|
4034
|
+
],
|
|
4035
|
+
"status": "delivered",
|
|
4036
|
+
"fulfillments": [
|
|
4037
|
+
{
|
|
4038
|
+
"tracking_id": ["446311818175"],
|
|
4039
|
+
"item_ids": ["4241599783", "3952176596", "7869640094", "7255224608", "4358482460"]
|
|
4040
|
+
}
|
|
4041
|
+
],
|
|
4042
|
+
"payment_history": [
|
|
4043
|
+
{
|
|
4044
|
+
"transaction_type": "payment",
|
|
4045
|
+
"amount": 6785.88,
|
|
4046
|
+
"payment_method_id": "paypal_2306935"
|
|
4047
|
+
}
|
|
4048
|
+
]
|
|
4049
|
+
},
|
|
4050
|
+
"#W2273069": {
|
|
4051
|
+
"order_id": "#W2273069",
|
|
4052
|
+
"user_id": "harper_brown_7363",
|
|
4053
|
+
"address": {
|
|
4054
|
+
"address1": "723 Park Avenue",
|
|
4055
|
+
"address2": "Suite 802",
|
|
4056
|
+
"city": "Fort Worth",
|
|
4057
|
+
"country": "USA",
|
|
4058
|
+
"state": "TX",
|
|
4059
|
+
"zip": "76112"
|
|
4060
|
+
},
|
|
4061
|
+
"items": [
|
|
4062
|
+
{
|
|
4063
|
+
"name": "Smart Watch",
|
|
4064
|
+
"product_id": "6945232052",
|
|
4065
|
+
"item_id": "2681513500",
|
|
4066
|
+
"price": 356.23,
|
|
4067
|
+
"options": {
|
|
4068
|
+
"color": "gold",
|
|
4069
|
+
"band material": "silicone",
|
|
4070
|
+
"display": "AMOLED"
|
|
4071
|
+
}
|
|
4072
|
+
},
|
|
4073
|
+
{
|
|
4074
|
+
"name": "Tea Kettle",
|
|
4075
|
+
"product_id": "9832717871",
|
|
4076
|
+
"item_id": "3909406921",
|
|
4077
|
+
"price": 98.25,
|
|
4078
|
+
"options": {
|
|
4079
|
+
"material": "glass",
|
|
4080
|
+
"capacity": "1 liter",
|
|
4081
|
+
"stovetop compatibility": "gas"
|
|
4082
|
+
}
|
|
4083
|
+
},
|
|
4084
|
+
{
|
|
4085
|
+
"name": "Perfume",
|
|
4086
|
+
"product_id": "6858788497",
|
|
4087
|
+
"item_id": "3399869890",
|
|
4088
|
+
"price": 312.04,
|
|
4089
|
+
"options": {
|
|
4090
|
+
"scent family": "woody",
|
|
4091
|
+
"size": "100ml",
|
|
4092
|
+
"gender": "men"
|
|
4093
|
+
}
|
|
4094
|
+
},
|
|
4095
|
+
{
|
|
4096
|
+
"name": "Electric Toothbrush",
|
|
4097
|
+
"product_id": "7352963235",
|
|
4098
|
+
"item_id": "8098621301",
|
|
4099
|
+
"price": 192.15,
|
|
4100
|
+
"options": {
|
|
4101
|
+
"color": "black",
|
|
4102
|
+
"speed settings": "high",
|
|
4103
|
+
"battery type": "rechargeable"
|
|
4104
|
+
}
|
|
4105
|
+
},
|
|
4106
|
+
{
|
|
4107
|
+
"name": "Hiking Boots",
|
|
4108
|
+
"product_id": "7363354090",
|
|
4109
|
+
"item_id": "2185126308",
|
|
4110
|
+
"price": 241.9,
|
|
4111
|
+
"options": {
|
|
4112
|
+
"size": "10",
|
|
4113
|
+
"material": "leather",
|
|
4114
|
+
"waterproof": "no"
|
|
4115
|
+
}
|
|
4116
|
+
}
|
|
4117
|
+
],
|
|
4118
|
+
"status": "pending",
|
|
4119
|
+
"fulfillments": [],
|
|
4120
|
+
"payment_history": [
|
|
4121
|
+
{
|
|
4122
|
+
"transaction_type": "payment",
|
|
4123
|
+
"amount": 1200.57,
|
|
4124
|
+
"payment_method_id": "credit_card_3240550"
|
|
4125
|
+
}
|
|
4126
|
+
]
|
|
4127
|
+
},
|
|
4128
|
+
"#W2417020": {
|
|
4129
|
+
"order_id": "#W2417020",
|
|
4130
|
+
"user_id": "emma_smith_8564",
|
|
4131
|
+
"address": {
|
|
4132
|
+
"address1": "243 Hillcrest Drive",
|
|
4133
|
+
"address2": "Suite 113",
|
|
4134
|
+
"city": "New York",
|
|
4135
|
+
"country": "USA",
|
|
4136
|
+
"state": "NY",
|
|
4137
|
+
"zip": "10192"
|
|
4138
|
+
},
|
|
4139
|
+
"items": [
|
|
4140
|
+
{
|
|
4141
|
+
"name": "Laptop",
|
|
4142
|
+
"product_id": "4760268021",
|
|
4143
|
+
"item_id": "8997785118",
|
|
4144
|
+
"price": 2674.4,
|
|
4145
|
+
"options": {
|
|
4146
|
+
"screen size": "13-inch",
|
|
4147
|
+
"processor": "i7",
|
|
4148
|
+
"ram": "32GB",
|
|
4149
|
+
"storage": "256GB SSD",
|
|
4150
|
+
"color": "space grey"
|
|
4151
|
+
}
|
|
4152
|
+
}
|
|
4153
|
+
],
|
|
4154
|
+
"status": "pending",
|
|
4155
|
+
"fulfillments": [],
|
|
4156
|
+
"payment_history": [
|
|
4157
|
+
{
|
|
4158
|
+
"transaction_type": "payment",
|
|
4159
|
+
"amount": 2674.4,
|
|
4160
|
+
"payment_method_id": "gift_card_8541487"
|
|
4161
|
+
}
|
|
4162
|
+
]
|
|
4163
|
+
},
|
|
4164
|
+
"#W5605613": {
|
|
4165
|
+
"order_id": "#W5605613",
|
|
4166
|
+
"user_id": "emma_smith_8564",
|
|
4167
|
+
"address": {
|
|
4168
|
+
"address1": "243 Hillcrest Drive",
|
|
4169
|
+
"address2": "Suite 113",
|
|
4170
|
+
"city": "New York",
|
|
4171
|
+
"country": "USA",
|
|
4172
|
+
"state": "NY",
|
|
4173
|
+
"zip": "10192"
|
|
4174
|
+
},
|
|
4175
|
+
"items": [
|
|
4176
|
+
{
|
|
4177
|
+
"name": "Digital Camera",
|
|
4178
|
+
"product_id": "8940227892",
|
|
4179
|
+
"item_id": "7195021808",
|
|
4180
|
+
"price": 2909.87,
|
|
4181
|
+
"options": {
|
|
4182
|
+
"resolution": "30MP",
|
|
4183
|
+
"zoom": "5x",
|
|
4184
|
+
"storage": "SD card"
|
|
4185
|
+
}
|
|
4186
|
+
}
|
|
4187
|
+
],
|
|
4188
|
+
"status": "delivered",
|
|
4189
|
+
"fulfillments": [
|
|
4190
|
+
{
|
|
4191
|
+
"tracking_id": ["267160774045"],
|
|
4192
|
+
"item_ids": ["7195021808"]
|
|
4193
|
+
}
|
|
4194
|
+
],
|
|
4195
|
+
"payment_history": [
|
|
4196
|
+
{
|
|
4197
|
+
"transaction_type": "payment",
|
|
4198
|
+
"amount": 2909.87,
|
|
4199
|
+
"payment_method_id": "gift_card_8541487"
|
|
4200
|
+
}
|
|
4201
|
+
]
|
|
4202
|
+
},
|
|
4203
|
+
"#W3614011": {
|
|
4204
|
+
"order_id": "#W3614011",
|
|
4205
|
+
"user_id": "emma_smith_8564",
|
|
4206
|
+
"address": {
|
|
4207
|
+
"address1": "243 Hillcrest Drive",
|
|
4208
|
+
"address2": "Suite 113",
|
|
4209
|
+
"city": "New York",
|
|
4210
|
+
"country": "USA",
|
|
4211
|
+
"state": "NY",
|
|
4212
|
+
"zip": "10192"
|
|
4213
|
+
},
|
|
4214
|
+
"items": [
|
|
4215
|
+
{
|
|
4216
|
+
"name": "Action Camera",
|
|
4217
|
+
"product_id": "3377618313",
|
|
4218
|
+
"item_id": "5436236388",
|
|
4219
|
+
"price": 538.6,
|
|
4220
|
+
"options": {
|
|
4221
|
+
"resolution": "1080p",
|
|
4222
|
+
"waterproof": "yes",
|
|
4223
|
+
"color": "silver"
|
|
4224
|
+
}
|
|
4225
|
+
},
|
|
4226
|
+
{
|
|
4227
|
+
"name": "Air Purifier",
|
|
4228
|
+
"product_id": "3821016478",
|
|
4229
|
+
"item_id": "3076708684",
|
|
4230
|
+
"price": 535.97,
|
|
4231
|
+
"options": {
|
|
4232
|
+
"room size": "medium",
|
|
4233
|
+
"filter type": "HEPA",
|
|
4234
|
+
"features": "quiet operation"
|
|
4235
|
+
}
|
|
4236
|
+
},
|
|
4237
|
+
{
|
|
4238
|
+
"name": "Sneakers",
|
|
4239
|
+
"product_id": "7471004230",
|
|
4240
|
+
"item_id": "4410138384",
|
|
4241
|
+
"price": 197.37,
|
|
4242
|
+
"options": {
|
|
4243
|
+
"size": "8",
|
|
4244
|
+
"color": "gray",
|
|
4245
|
+
"material": "canvas"
|
|
4246
|
+
}
|
|
4247
|
+
}
|
|
4248
|
+
],
|
|
4249
|
+
"status": "pending",
|
|
4250
|
+
"fulfillments": [],
|
|
4251
|
+
"payment_history": [
|
|
4252
|
+
{
|
|
4253
|
+
"transaction_type": "payment",
|
|
4254
|
+
"amount": 1271.94,
|
|
4255
|
+
"payment_method_id": "gift_card_8541487"
|
|
4256
|
+
}
|
|
4257
|
+
]
|
|
4258
|
+
}
|
|
4259
|
+
}
|
|
4260
|
+
}
|