-
Notifications
You must be signed in to change notification settings - Fork 0
/
furnitureScraper.py
3390 lines (3390 loc) · 222 KB
/
furnitureScraper.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
import requests
lis = [
{
"sku": "ANDO1549",
"product_name": "Smith Armchair",
"product_description": "Neutral upholstery and subtle tufting make this charming arm chair the perfect anchor for your master suite or living room. Top it with a velvet throw and Damask pillow for a touch of sophisticated style, or keep it casual with a cozy wool throw and solid pillow.",
"product_page_url": "https://www.wayfair.com/furniture/pdp/andover-mills-smith-armchair-ando1549.html",
"class_name": "Accent Chairs",
"sale_price": 179.99,
"thumbnail_image_url": "https://secure.img.wfcdn.com/lf/43/hash/30808/15664008/1/Ogelthrope%2BXpress%2BChair.jpg",
"model": {
"dimensions_inches": {
"x": 34,
"y": 33,
"z": 35
},
"glb": "http://img.wfrcdn.com/docresources/30808/107/1071266.glb",
"obj": "http://img.wfrcdn.com/docresources/30808/76/762991.zip"
}
},
{
"sku": "ANDO1569",
"product_name": "Dewitt Barrel Side Chair",
"product_description": "This barrel side chair is the perfect seating addition to your home. Just add it to your living room, entertainment room, or even a children’s play room for an added seat that is able to support up to 250 lbs. Child friendly, this piece is easily cleaned with soap and water. Measuring 38'' H x 46'' W x 44'' D, this rounded back chair is upholstered with a polyester blend and filled with foam. Easily assembled with detachable legs.",
"product_page_url": "https://www.wayfair.com/furniture/pdp/andover-mills-dewitt-barrel-side-chair-ando1569.html",
"class_name": "Accent Chairs",
"sale_price": 369.99,
"thumbnail_image_url": "https://secure.img1.wfcdn.com/lf/43/hash/2664/59407815/1/custom_image.jpg",
"model": {
"dimensions_inches": {
"x": 46,
"y": 44,
"z": 38
},
"glb": "http://img.wfrcdn.com/docresources/30808/118/1180601.glb",
"obj": "http://img.wfrcdn.com/docresources/30808/118/1185304.zip"
}
},
{
"sku": "CSTD2801",
"product_name": "Marta Armchair",
"product_description": "",
"product_page_url": "https://www.wayfair.com/furniture/pdp/corrigan-studio-marta-armchair-cstd2801.html",
"class_name": "Accent Chairs",
"sale_price": 359.99,
"thumbnail_image_url": "https://secure.img1.wfcdn.com/lf/43/hash/36990/33486437/1/custom_image.jpg",
"model": {
"dimensions_inches": {
"x": 26,
"y": 21.9,
"z": 32.3
},
"glb": "http://img.wfrcdn.com/docresources/36990/109/1091009.glb",
"obj": "http://img.wfrcdn.com/docresources/36990/105/1050153.zip"
}
},
{
"sku": "FV50959",
"product_name": "Natuna Armchair",
"product_description": "Crafted of Kubu gray rattan which is coveted for its natural soft grey color, the Natuna Armchair is easy and breezy year round. With its artfully woven sculptural lines, this transitional chair is chic and comfortable in the family room or dining room.",
"product_page_url": "https://www.wayfair.com/furniture/pdp/safavieh-natuna-armchair-fv50959.html",
"class_name": "Accent Chairs",
"sale_price": 259.99,
"thumbnail_image_url": "https://secure.img1.wfcdn.com/lf/43/hash/428/12618121/1/custom_image.jpg",
"model": {
"dimensions_inches": {
"x": 25.64,
"y": 25.31,
"z": 35.35
},
"glb": "http://img.wfrcdn.com/docresources/428/107/1073540.glb",
"obj": "http://img.wfrcdn.com/docresources/428/88/885210.zip"
}
},
{
"sku": "GOLV5061",
"product_name": "Oxendine Traditional Fabric Armchair",
"product_description": "This Oxendine Traditional Fabric Club Chair is a great addition to any room in your home. Featuring an extra cushioned seat and backrest along with lightly cushioned armrests, this chair is sure to be a favorite amongst the family.",
"product_page_url": "https://www.wayfair.com/furniture/pdp/george-oliver-oxendine-traditional-fabric-armchair-golv5061.html",
"class_name": "Accent Chairs",
"sale_price": 315.99,
"thumbnail_image_url": "https://secure.img.wfcdn.com/lf/43/hash/44308/58627652/1/furniture%2Fpdp%2Fgeorge-oliver-oxendine-traditional-fabric-armchair.jpg",
"model": {
"dimensions_inches": {
"x": 28.25,
"y": 31.49,
"z": 32.75
},
"glb": "http://img.wfrcdn.com/docresources/44316/130/1303267.glb",
"obj": "http://img.wfrcdn.com/docresources/44316/130/1308406.zip"
}
},
{
"sku": "LATR7704",
"product_name": "Microscopium Barrel Chair",
"product_description": "Pairing a swivel design with a silhouette, this distinctive barrel chair is sure to spark conversation in your favorite seating space. Its nailhead trim adds a timeless touch to your decor while its solid pattern blends effortlessly into monochromatic and vibrant palettes. Play into this piece's contemporary influence by adding it to a living room seating group comprised of a mid-century-inspired loveseat and streamlined sofa for a complementing look, then accent the arrangement with an embroidered patchwork pillow for a touch of texture. Build up the aesthetic by dotting nearby walls with beveled oval mirrors and black-and-white cityscape photographs for an eye-catching display, then pair it with hanging woven tapestry for an unexpected dash of drama. Whether you're seating guests at your next neighborhood get-together or enjoying weekend movie night, this polyester-upholstered chair is a perfect addition to your favorite aesthetic.",
"product_page_url": "https://www.wayfair.com/furniture/pdp/latitude-run-microscopium-barrel-chair-latr7704.html",
"class_name": "Accent Chairs",
"sale_price": 332.99,
"thumbnail_image_url": "https://secure.img.wfcdn.com/lf/43/hash/40128/35834628/1/custom_image.jpg",
"model": {
"dimensions_inches": {
"x": 26.9,
"y": 25.73,
"z": 27.21
},
"glb": "http://img.wfrcdn.com/docresources/40128/107/1072184.glb",
"obj": "http://img.wfrcdn.com/docresources/40128/76/763964.zip"
}
},
{
"sku": "LATR8439",
"product_name": "Dorset Barrel Chair",
"product_description": "Understated with a rounded silhouette, this barrel chair works wonderfully in both classic and contemporary ensembles. Its frame is crafted of birch wood, featuring a four-leg foundation with a dark brown finish. Its seat is topped off by a single cushion stuffed with medium-firm polyester fill, while the upholstery wraps around the rest in a versatile solid hue. Assembly is easy with only the legs needing to be attached once it arrives.",
"product_page_url": "https://www.wayfair.com/furniture/pdp/latitude-run-dorset-barrel-chair-latr8439.html",
"class_name": "Accent Chairs",
"sale_price": 207.99,
"thumbnail_image_url": "https://secure.img1.wfcdn.com/lf/43/hash/2664/60043469/1/custom_image.jpg",
"model": {
"dimensions_inches": {
"x": 29.09,
"y": 29.89,
"z": 29.54
},
"glb": "http://img.wfrcdn.com/docresources/40128/115/1159971.glb",
"obj": "http://img.wfrcdn.com/docresources/40128/117/1175073.zip"
}
},
{
"sku": "LGLY3906",
"product_name": "Birmingham Armchair",
"product_description": "This wood frame arm chair combines a classic French-style with a bold look that will compliment any decor. Well-padded on the back and seat and includes an additional throw pillow for style and added comfort.",
"product_page_url": "https://www.wayfair.com/furniture/pdp/langley-street-birmingham-armchair-lgly3906.html",
"class_name": "Accent Chairs",
"sale_price": 275.99,
"thumbnail_image_url": "https://secure.img.wfcdn.com/lf/43/hash/36991/33501240/1/custom_image.jpg",
"model": {
"dimensions_inches": {
"x": 24.7,
"y": 28.7,
"z": 32
},
"glb": "http://img.wfrcdn.com/docresources/36991/115/1156128.glb",
"obj": "http://img.wfrcdn.com/docresources/36991/116/1168126.zip"
}
},
{
"sku": "LRFY4876",
"product_name": "Haywood Swivel Barrel Chair",
"product_description": "Pairing a floral paisley pattern with neutral hues, this swivel arm chair adds a refined touch to any seating group. Its distressed details pair perfectly with antiqued decor and weathered accents while its understated deign fits aesthetics from cottage-chic to crisp contemporary. Add this option to the den to complement a farmhouse arrangement or use it to level out a breezy coastal look in the living room. Try draping a cable-knit throw over its back for a casual display, or pair it with a patchwork pillow for a bold pop of pattern. Use this design to seat guests at your next neighborhood get-together, or to curl up and watch the big game with your favorite beverage. Its solid birch-wood frame gives it a sturdy foundation while its barrel silhouette adds a refined touch to any space. With its garden-chic motif and rolled arms, this eye-catching design is the perfect finishing touch to your cozy home.",
"product_page_url": "https://www.wayfair.com/furniture/pdp/haywood-swivel-barrel-chair-lrfy4876.html",
"class_name": "Accent Chairs",
"sale_price": 374,
"thumbnail_image_url": "https://secure.img1.wfcdn.com/lf/43/hash/42526/37202443/1/custom_image.jpg",
"model": {
"dimensions_inches": {
"x": 32.22,
"y": 30.44,
"z": 31.99
},
"glb": "http://img.wfrcdn.com/docresources/42526/131/1316702.glb",
"obj": "http://img.wfrcdn.com/docresources/42526/132/1329393.zip"
}
},
{
"sku": "MCRW1865",
"product_name": "Quinten Slipper Chair",
"product_description": "Add a splash of streamlined style to your seating group with this slipper chair. Crafted with a solid birch frame, this piece is filled with foam for a medium firm feel. Its poly-blend upholstery is offered in a variety of tones to ensure it suits your color palette, while its single row of button-tufted details lend the solid-hued seat a touch of texture. Four amber-finished legs give it a bit of warmth and round out this design.",
"product_page_url": "https://www.wayfair.com/furniture/pdp/mercury-row-quinten-slipper-chair-mcrw1865.html",
"class_name": "Accent Chairs",
"sale_price": 175.99,
"thumbnail_image_url": "https://secure.img1.wfcdn.com/lf/43/hash/2664/58387287/1/custom_image.jpg",
"model": {
"dimensions_inches": {
"x": 24.89,
"y": 31.29,
"z": 31.46
},
"glb": "http://img.wfrcdn.com/docresources/33808/119/1195198.glb",
"obj": "http://img.wfrcdn.com/docresources/33808/121/1212181.zip"
}
},
{
"sku": "MCRW6355",
"product_name": "Derrico Armchair",
"product_description": "",
"product_page_url": "https://www.wayfair.com/furniture/pdp/mercury-row-derrico-armchair-mcrw6355.html",
"class_name": "Accent Chairs",
"sale_price": 319.99,
"thumbnail_image_url": "https://secure.img.wfcdn.com/lf/43/hash/29633/58012654/1/custom_image.jpg",
"model": {
"dimensions_inches": {
"x": 22.1,
"y": 28.44,
"z": 34.51
},
"glb": "http://img.wfrcdn.com/docresources/33808/128/1284223.glb",
"obj": "http://img.wfrcdn.com/docresources/33808/129/1290414.zip"
}
},
{
"sku": "ONAW2547",
"product_name": "Yerres Wingback Chair",
"product_description": "This chair is a tribute to the elegance of styles from the past gentle curves, button tufting and a hand finished frame. Add a touch of sophistication to your bedroom or living room with this chair.",
"product_page_url": "https://www.wayfair.com/furniture/pdp/one-allium-way-yerres-wingback-chair-onaw2547.html",
"class_name": "Accent Chairs",
"sale_price": 459.99,
"thumbnail_image_url": "https://secure.img1.wfcdn.com/lf/43/hash/2418/41010755/1/custom_image.jpg",
"model": {
"dimensions_inches": {
"x": 29.31,
"y": 29.96,
"z": 39.33
},
"glb": "http://img.wfrcdn.com/docresources/37307/112/1123731.glb",
"obj": "http://img.wfrcdn.com/docresources/37307/114/1140683.zip"
}
},
{
"sku": "RDBS1728",
"product_name": "Yellowstone Valley Contemporary Armchair",
"product_description": "Sleek design and superior comfort makes this piece an obvious favorite among family and friends. Sure to have guests arriving unannounced to enjoy the lux softness of this chair, your popularity just got a boost! Upholstered in a patterned fabric, the high-density foam filled cushion is conveniently removable for lasting use. Perfectly stitched, this chair is complete with padded arm rest.",
"product_page_url": "https://www.wayfair.com/furniture/pdp/red-barrel-studio-yellowstone-valley-contemporary-armchair-rdbs1728.html",
"class_name": "Accent Chairs",
"sale_price": 1169.99,
"thumbnail_image_url": "https://secure.img.wfcdn.com/lf/43/hash/34591/27298218/1/custom_image.jpg",
"model": {
"dimensions_inches": {
"x": 36.58,
"y": 37.01,
"z": 45.29
},
"glb": "http://img.wfrcdn.com/docresources/34591/109/1090515.glb",
"obj": "http://img.wfrcdn.com/docresources/34591/101/1016208.zip"
}
},
{
"sku": "SEHO1600",
"product_name": "Randall Armchair",
"product_description": "",
"product_page_url": "https://www.wayfair.com/furniture/pdp/beachcrest-home-randall-armchair-seho1600.html",
"class_name": "Accent Chairs",
"sale_price": 323.99,
"thumbnail_image_url": "https://secure.img1.wfcdn.com/lf/43/hash/37308/39048857/1/custom_image.jpg",
"model": {
"dimensions_inches": {
"x": 28.7,
"y": 32.98,
"z": 31.42
},
"glb": "http://img.wfrcdn.com/docresources/37308/119/1199943.glb",
"obj": "http://img.wfrcdn.com/docresources/37308/121/1215153.zip"
}
},
{
"sku": "VKGL1857",
"product_name": "Potts Barrel Chair",
"product_description": "Sit pretty or simply add high style to your space with this beautiful barrel chair. Crafted of wood, this delightful design is founded on a four leg tapered base with a dramatically curved top silhouette. Contemporary but still comfortable, it is wrapped in glossy leather-inspired upholstery with a solid hue for a more versatile look. Set it in the den along with a clean-lined love seat for a chic seating group, then roll out a trellis-printed rug on the floor below, use a sleek coffee table to display a trio of earthy succulents, and suspend an exposed light bulb overhead to really make it shine.",
"product_page_url": "https://www.wayfair.com/furniture/pdp/wrought-studio-potts-barrel-chair-vkgl1857.html",
"class_name": "Accent Chairs",
"sale_price": 169.99,
"thumbnail_image_url": "https://secure.img1.wfcdn.com/lf/43/hash/36987/27237285/1/custom_image.jpg",
"model": {
"dimensions_inches": {
"x": 30.69,
"y": 27.46,
"z": 32.16
},
"glb": "http://img.wfrcdn.com/docresources/36987/128/1280966.glb",
"obj": "http://img.wfrcdn.com/docresources/36987/128/1285254.zip"
}
},
{
"sku": "WADL4889",
"product_name": "Evanston Chair in White",
"product_description": "Quintessentially contemporary, the Faux Leather Barrel Chair is perfect to keep in your living room, home library, or study room. Simply designed to offer efficacy, this barrel chair has a sleek style that is hard to miss. It has immaculate lines and meticulous cuts, which are further enhanced by its flawless finesse. Offering a fine blend of style and efficacy, this barrel chair can also be used in the office, restaurant, or any other commercial place. The Faux Leather Barrel Chair is made from a stainless steel frame for unrivaled strength and sturdiness. It has a foam-filled seat, which is soft to touch and comfortable to sit for a long time. This barrel chair is upholstered in white faux leather, which perfectly complements the chrome-finished steel frame. It has flared arms and a sturdy pedestal base that facilitates good balance on the floor. This barrel chair has a capacity of 250 pounds, and comes with a removable seat cushion for hassle-free cleaning. This barrel chair requires minimal assembly, and can be easily put together using simple household tools. Low on maintenance, this leather chair can be occasionally cleaned using mild leather cleaner. ",
"product_page_url": "https://www.wayfair.com/furniture/pdp/wade-logan-evanston-chair-in-white-wadl4889.html",
"class_name": "Accent Chairs",
"sale_price": 180.99,
"thumbnail_image_url": "https://secure.img.wfcdn.com/lf/43/hash/2664/59140456/1/custom_image.jpg",
"model": {
"dimensions_inches": {
"x": 29.2,
"y": 26.44,
"z": 31.98
},
"glb": "http://img.wfrcdn.com/docresources/36989/129/1293304.glb",
"obj": "http://img.wfrcdn.com/docresources/36989/129/1296618.zip"
}
},
{
"sku": "WADL9371",
"product_name": "Ares Armchair",
"product_description": "",
"product_page_url": "https://www.wayfair.com/furniture/pdp/wade-logan-ares-armchair-wadl9371.html",
"class_name": "Accent Chairs",
"sale_price": 335.99,
"thumbnail_image_url": "https://secure.img1.wfcdn.com/lf/43/hash/2664/58566361/1/custom_image.jpg",
"model": {
"dimensions_inches": {
"x": 29.74,
"y": 33.43,
"z": 33.08
},
"glb": "http://img.wfrcdn.com/docresources/36989/124/1244612.glb",
"obj": "http://img.wfrcdn.com/docresources/36989/125/1254567.zip"
}
},
{
"sku": "WDLN3255",
"product_name": "Alfredo Leisure Lounge Chair",
"product_description": "The high-style, retro chic design is not to be ignored. Inspired by the designs of Arne Emil Jacobson, this collection is a sculptural masterpiece; specifically designed to maximize comfort, while maintaining an unobtrusive profile. Hand-sewn with the finest fabric, and standing on a pedestal of chrome cross legs, this collection is a true work of art that is sure to pop in any decor.",
"product_page_url": "https://www.wayfair.com/furniture/pdp/wade-logan-alfredo-leisure-lounge-chair-wdln3255.html",
"class_name": "Accent Chairs",
"sale_price": 263.99,
"thumbnail_image_url": "https://secure.img1.wfcdn.com/lf/43/hash/2664/55064355/1/custom_image.jpg",
"model": {
"dimensions_inches": {
"x": 28.7,
"y": 24.8,
"z": 35
},
"glb": "http://img.wfrcdn.com/docresources/36989/117/1173534.glb",
"obj": "http://img.wfrcdn.com/docresources/36989/118/1183086.zip"
}
},
{
"sku": "ZIPC4121",
"product_name": "Liam Barrel Chair",
"product_description": "<i>Mooove</i> on over to make room for your new favorite accent chair! This American-made design brings a little down-home flair to any seating arrangement, combining a cowhide pattern with a classic silhouette to create a piece that pairs well with both contemporary and rustic ensembles. Founded atop four tapered legs, its manufactured wood frame is wrapped in polyester blend fabric that’s easy to keep pristine. Measuring 32'' H x 30.5'' W x 27.5'' D.",
"product_page_url": "https://www.wayfair.com/furniture/pdp/zipcode-design-liam-barrel-chair-zipc4121.html",
"class_name": "Accent Chairs",
"sale_price": 172.99,
"thumbnail_image_url": "https://secure.img1.wfcdn.com/lf/43/hash/2664/59803713/1/custom_image.jpg",
"model": {
"dimensions_inches": {
"x": 34.29,
"y": 27.86,
"z": 32.46
},
"glb": "http://img.wfrcdn.com/docresources/37311/108/1089869.glb",
"obj": "http://img.wfrcdn.com/docresources/37311/101/1014484.zip"
}
},
{
"sku": "ZIPC6590",
"product_name": "Weymand Floral Slipper Chair",
"product_description": "Why let your garden get all the glory? You can instantly add a little blooming beauty into your bedroom with this stunning slipper chair. Simply set it in a sunny corner for a posh spot to unwind with your latest read, or try pulling up an end table topped with a mirror and essential cosmetics to craft an impromptu vanity display. Founded atop four gently tapered legs finished in espresso, its clean-lined frame is crafted of solid wood and wrapped in floral-printed cotton upholstery. For a more lively living room look, try pulling it up beside a neutral loveseat for an instant pop of pattern. To tie it all together in your own style, just roll out a flat-woven rug on the floor below, hang up flowing sheer curtains, and set out a glossy white coffee table topped with a trio of lush succulents. Though this distinctive design is certainly striking solo, you can lend a little extra luxury by tossing a lush shag throw over the back.",
"product_page_url": "https://www.wayfair.com/furniture/pdp/zipcode-design-weymand-floral-slipper-chair-zipc6590.html",
"class_name": "Accent Chairs",
"sale_price": 141.99,
"thumbnail_image_url": "https://secure.img1.wfcdn.com/lf/43/hash/30593/61603901/1/custom_image.jpg",
"model": {
"dimensions_inches": {
"x": 22,
"y": 29.74,
"z": 33
},
"glb": "http://img.wfrcdn.com/docresources/0/139/1396770.glb",
"obj": "http://img.wfrcdn.com/docresources/0/139/1396771.zip"
}
},
{
"sku": "ALTL1608",
"product_name": "Groveland Navy Indoor/Outdoor Area Rug",
"product_description": "This delightful collection of quality loomed rugs provides an instant housewarming. Choose from an exciting array of foliage and flower based designs, some with bold interplays of curvaceous geometrics. Conceived in deeply pigmented tones that contrast beautifully with soft neutrals, for an effect as lush and welcoming as a sultry island garden. The woven loop pile adds an appealing accent of visual and tactile texture.",
"product_page_url": "https://www.wayfair.com/rugs/pdp/alcott-hill-groveland-navy-indooroutdoor-area-rug-altl1608.html",
"class_name": "Area Rugs",
"sale_price": 53.99,
"thumbnail_image_url": "https://secure.img1.wfcdn.com/lf/43/hash/36985/61826565/1/rugs%2Fpdp%2Falcott-hill-groveland-navy-indooroutdoor-area-rug.jpg",
"model": {
"dimensions_inches": {
"x": 63,
"y": 89,
"z": 0.5
},
"glb": "http://img.wfrcdn.com/docresources/36985/107/1072374.glb",
"obj": "http://img.wfrcdn.com/docresources/36985/75/753376.zip"
}
},
{
"sku": "ANDO3516",
"product_name": "Virginia Beige/Red Area Rug",
"product_description": "Put the focus on your floor and anchor any ensemble in your home with classic sophistication when you roll out this charming rug. Brimming with traditional elegance, it will effortlessly elevate your aesthetic. The paisley-inspired botanical pattern gives this rug floral fancy and eye-catching appeal, while the red, green and orange color palette and the solid-toned background adds refined style. Try rolling this rug out in your foyer to greet guests with welcoming style, then complement the botanical print by dotting the walls with framed floral art. If you want to give your whole space a refresh, start by adding a simple gray linen bench and an oak-finished coffee table, then top the table with a stack of glossy fashion books, a trio of golden candlesticks and a blooming bouquet of flowers from your backyard garden for a dazzling display that is sure to impress.",
"product_page_url": "https://www.wayfair.com/rugs/pdp/andover-mills-virginia-beigered-area-rug-ando3516.html",
"class_name": "Area Rugs",
"sale_price": 33.99,
"thumbnail_image_url": "https://secure.img.wfcdn.com/lf/43/hash/30808/34906844/1/custom_image.jpg",
"model": {
"dimensions_inches": {
"x": 60,
"y": 96,
"z": 0.44
},
"glb": "http://img.wfrcdn.com/docresources/30808/107/1072416.glb",
"obj": "http://img.wfrcdn.com/docresources/30808/76/764264.zip"
}
},
{
"sku": "ANDO4524",
"product_name": "Raffin Beige/Brown Leaves Area Rug",
"product_description": "Instantly elevate your floors in understated elegance with this eye-catching rug, crafted from polypropylene. Its floral details add botanical charm to any space while its muted colors pair perfectly against a hardwood floor for a complementing look. Play up this piece's traditional influence by adding it to a entryway alongside a cherry-finished console table, topped with a trio of turned candleholders for a dash of dimension. Adorn nearby walls with equestrian canvas prints and typographic decor for an eye-catching display, then suspend a geometric pendant above the space to illuminate your room in visual appeal. With its floral motif and geometric details, this lovely rug is the perfect option for anchoring high traffic areas in the living room, or defining space in the den.",
"product_page_url": "https://www.wayfair.com/rugs/pdp/andover-mills-raffin-beigebrown-leaves-area-rug-ando4524.html",
"class_name": "Area Rugs",
"sale_price": 11.99,
"thumbnail_image_url": "https://secure.img.wfcdn.com/lf/43/hash/30808/58055036/1/custom_image.jpg",
"model": {
"dimensions_inches": {
"x": 108,
"y": 79,
"z": 0.5
},
"glb": "http://img.wfrcdn.com/docresources/30808/107/1072499.glb",
"obj": "http://img.wfrcdn.com/docresources/30808/76/764335.zip"
}
},
{
"sku": "ANDO4889",
"product_name": "Smithtown Area Rug",
"product_description": "Sophisticated color and incomparable texture in a unique collection of high fashion accent and area rugs. Made exclusively from unique fiber for superlative softness and durability. Expertly woven on state-of-the-art Wilton looms. A wealth of fashion-forward color palettes warmly enhanced by the rich patina of the special proprietary fiber. Specially dyed yarns create a shaded “abrash” effect that evokes the vintage appeal of the finest handmade carpets. Subtle accents of hand carving impart an elegant sense of dimension to the feature elements of each signature design.",
"product_page_url": "https://www.wayfair.com/rugs/pdp/andover-mills-smithtown-area-rug-ando4889.html",
"class_name": "Area Rugs",
"sale_price": 35.51,
"thumbnail_image_url": "https://secure.img.wfcdn.com/lf/43/hash/2664/56764884/1/custom_image.jpg",
"model": {
"dimensions_inches": {
"x": 63,
"y": 89,
"z": 0.5
},
"glb": "http://img.wfrcdn.com/docresources/30808/109/1096723.glb",
"obj": "http://img.wfrcdn.com/docresources/30808/105/1050634.zip"
}
},
{
"sku": "BGLS4809",
"product_name": "Indira Gray & Light Blue Area Rug",
"product_description": "Set a fashionable foundation in any space with this area rug, showcasing an abstract pattern in neutral gray and taupe tones with pops of light blue for a subtle splash of color. Power-loomed in Turkey from polypropylene, this durable design is an ideal option for busy entryways, bustling living rooms, or any other high-traffic room in your home. Though its medium 0.45\" pile height provides a bit of padding underfoot, this piece is best paired with a rug pad for extra cushioning and traction.",
"product_page_url": "https://www.wayfair.com/rugs/pdp/bungalow-rose-annabel-gray-light-blue-area-rug-w000660168.html",
"class_name": "Area Rugs",
"sale_price": 37.99,
"thumbnail_image_url": "https://secure.img1.wfcdn.com/lf/43/hash/37700/34722173/1/custom_image.jpg",
"model": {
"dimensions_inches": {
"x": 96.01,
"y": 132.01,
"z": 0.51
},
"glb": "http://img.wfrcdn.com/docresources/37700/109/1099139.glb",
"obj": "http://img.wfrcdn.com/docresources/37700/109/1099140.zip"
}
},
{
"sku": "LATR7331",
"product_name": "Myia Radiance Area Rug",
"product_description": "Like sprinkles of lush leaves falling softly over water, the design of the radiance style was inspired by nature’s splendor. Cool aqua shades run alongside hints of chartreuse, sky blue and rich gray in the palette of the Radiance. This rug is quality constructed with Latitude Run exclusive wear dated nylon, designed specifically to resist staining and crushing in high traffic areas of the home.",
"product_page_url": "https://www.wayfair.com/rugs/pdp/latitude-run-myia-radiance-area-rug-latr7331.html",
"class_name": "Area Rugs",
"sale_price": 52.99,
"thumbnail_image_url": "https://secure.img1.wfcdn.com/lf/43/hash/40128/57066735/1/rugs%2Fpdp%2Flatitude-run-myia-radiance-area-rug.jpg",
"model": {
"dimensions_inches": {
"x": 60.05,
"y": 96.05,
"z": 0.43
},
"glb": "http://img.wfrcdn.com/docresources/34591/118/1183841.glb",
"obj": "http://img.wfrcdn.com/docresources/34591/118/1189812.zip"
}
},
{
"sku": "MCRR7867",
"product_name": "Marcelo Hand Woven Ivory Area Rug",
"product_description": "Take any floor space from dull to dazzling with this chic area rug. Crafted in India, it is hand woven of 80% wool and 20% cotton and features canvas backing. Printed with a diamond motif in versatile this rug is perfect adding a pop of pattern to any ensemble. Let it sit below a pair of crisp white love seats to craft an elegant living room ensemble, or have it anchor a streamlined dining set to refresh your entertaining space. It's also the perfect foundation for your eye-catching entryway ensemble; Just add in a pillow-topped bench and set a sleek chandelier overhead to round out the look.",
"product_page_url": "https://www.wayfair.com/rugs/pdp/mercury-row-marcelo-hand-woven-ivory-area-rug-mcrr7867.html",
"class_name": "Area Rugs",
"sale_price": 62.99,
"thumbnail_image_url": "https://secure.img.wfcdn.com/lf/43/hash/2664/57990772/1/custom_image.jpg",
"model": {
"dimensions_inches": {
"x": 90.11,
"y": 114.14,
"z": 0.72
},
"glb": "http://img.wfrcdn.com/docresources/33808/109/1090615.glb",
"obj": "http://img.wfrcdn.com/docresources/33808/101/1016867.zip"
}
},
{
"sku": "MCRW6632",
"product_name": "Dorset Ivory/Fuchsia Indoor Area Rug",
"product_description": "Add a pop of pink to any ensemble in your home with this area rug. Blending vintaged charm with a touch of modern flair, it showcases a Persian-inspired motif with a medallion in the center and a matching border. Its vibrant fuchsia and ivory color palette is accented by antiqued detailing, giving this design a balanced and bright look. Machine-woven in Turkey from 100% polypropylene, it is stain- and fade-resistant, making it an ideal anchor for high-traffic spaces. We recommend you pair this piece with a rug pad for extra cushioning and traction underfoot.",
"product_page_url": "https://www.wayfair.com/rugs/pdp/mercury-row-dorset-ivoryfuchsia-indoor-area-rug-mcrw6632.html",
"class_name": "Area Rugs",
"sale_price": 24.99,
"thumbnail_image_url": "https://secure.img1.wfcdn.com/lf/43/hash/33808/46488007/1/custom_image.jpg",
"model": {
"dimensions_inches": {
"x": 62.98,
"y": 86.98,
"z": 0.5
},
"glb": "http://img.wfrcdn.com/docresources/44356/107/1077820.glb",
"obj": "http://img.wfrcdn.com/docresources/44356/94/944092.zip"
}
},
{
"sku": "MCRW7352",
"product_name": "Mcguire Ivory/Silver Area Rug",
"product_description": "Blending a minimalist design with neutral hues, this versatile area rug is right at home in a variety of aesthetics and color palettes. This contemporary anchor showcases a subtle striated pattern in tones that transition from ivory to gray. Power-loomed in Turkey, this piece is stain- and fade-resistant, making it the perfect pick for high-traffic spaces. Featuring a 0.43\" pile height, this base is best paired with a rug pad underneath for extra cushioning and traction.",
"product_page_url": "https://www.wayfair.com/rugs/pdp/mercury-row-mcguire-ivorysilver-area-rug-mcrw7352.html",
"class_name": "Area Rugs",
"sale_price": 37.99,
"thumbnail_image_url": "https://secure.img1.wfcdn.com/lf/43/hash/2664/58133689/1/custom_image.jpg",
"model": {
"dimensions_inches": {
"x": 72,
"y": 108,
"z": 0.27
},
"glb": "http://img.wfrcdn.com/docresources/33808/107/1072725.glb",
"obj": "http://img.wfrcdn.com/docresources/33808/76/764667.zip"
}
},
{
"sku": "MTNA1015",
"product_name": "Brandt Machine Woven Indoor Gray Area Rug",
"product_description": "The table is set, your lights are dimmed down low for ambiance, and you're just putting the finishing touches on each course - this dinner party is about to begin! While eclectic dishes like herb-roasted rack of lamb and stuffed sweet potatoes are sure to delight your guests, your dining room decor might just steal the show! Start by centering your tablescape with a lush overflowing potted plant, then spark conversation between your foodie companions with colorful canvas prints dotting the surrounding walls, and finally anchor it all with this alluring area rug. Made in Turkey, it is machine woven of shed-free polypropylene with a distressed Persian-inspired motif in versatile hues of gray and beige. If your social gatherings are mainly hosted in the living room, just center it in your seating group! It's equally lovely shining solo between a pair of pillow-topped loveseats, or made boldly bohemian with a few plush pouf ottomans scattered around.",
"product_page_url": "https://www.wayfair.com/rugs/pdp/mistana-brandt-machine-woven-indoor-gray-area-rug-mtna1015.html",
"class_name": "Area Rugs",
"sale_price": 26.99,
"thumbnail_image_url": "https://secure.img.wfcdn.com/lf/43/hash/37055/56364938/1/custom_image.jpg",
"model": {
"dimensions_inches": {
"x": 72,
"y": 48,
"z": 0.5
},
"glb": "http://img.wfrcdn.com/docresources/37700/107/1072403.glb",
"obj": "http://img.wfrcdn.com/docresources/37700/76/764251.zip"
}
},
{
"sku": "MTNA1398",
"product_name": "Brandt Turquoise Area Rug",
"product_description": "Pairing an oriental-inspired motif with distressed details, this eye-catching polypropylene rug instantly elevates your favorite aesthetic. Its medallion details add a pop of pattern to your decor, while its turquoise hue blends effortlessly into both monochromatic or vibrant spaces. Lean into this piece's versatility by adding it to a boho chic entryway ensemble alongside a clean-lined console table and tufted storage bench for a complementing look. Dot the table with a trio of antiqued ceramic bird figurines for a whimsical nod to the past, then match it with an array of framed family photos for personal charm. Dot nearby walls with sunburst accents and abstract canvas prints for an eye-catching display, then suspend a geometric pendant above the space to illuminate it in visual appeal.",
"product_page_url": "https://www.wayfair.com/rugs/pdp/mistana-brandt-turquoise-area-rug-mtna1398.html",
"class_name": "Area Rugs",
"sale_price": 39.1,
"thumbnail_image_url": "https://secure.img1.wfcdn.com/lf/43/hash/37055/57120511/1/custom_image.jpg",
"model": {
"dimensions_inches": {
"x": 60,
"y": 96,
"z": 0.5
},
"glb": "http://img.wfrcdn.com/docresources/44356/106/1066102.glb",
"obj": "http://img.wfrcdn.com/docresources/44356/86/865335.zip"
}
},
{
"sku": "MTNA1678",
"product_name": "Clair Dark Gray Area Rug",
"product_description": "Anchor any arrangement with a dash of global inspiration with this area rug, offering a distressed geometric motif in gray hues to set a stylish foundation for your eclectic ensemble. Power-loomed in Turkey from polypropylene – a durable synthetic material that resists staining and fading – this piece is an ideal anchor for high-traffic rooms in your home. Though this design's medium 0.5\" provides a bit of cushioning underfoot, we recommend you pair it with a rug pad for additional padding and traction.",
"product_page_url": "https://www.wayfair.com/rugs/pdp/mistana-clair-dark-gray-area-rug-mtna1678.html",
"class_name": "Area Rugs",
"sale_price": 28.99,
"thumbnail_image_url": "https://secure.img1.wfcdn.com/lf/43/hash/2664/58137097/1/custom_image.jpg",
"model": {
"dimensions_inches": {
"x": 60,
"y": 89,
"z": 0.25
},
"glb": "http://img.wfrcdn.com/docresources/37700/107/1072206.glb",
"obj": "http://img.wfrcdn.com/docresources/37700/76/763999.zip"
}
},
{
"sku": "MTNA1789",
"product_name": "Darchelle Beige/Pink Area Rug",
"product_description": "Ready to stand up to high foot traffic in the entryway and take on occasional spills under the kitchen table, polypropylene rugs are ideal anchors for any mess-prone area of your abode. Take this one for example: made in Turkey, it is power-loomed from that must-have material and features an eye-catching Persian-inspired motif in hues of beige and pink. To keep this piece safely in place, we recommend using a rug pad.",
"product_page_url": "https://www.wayfair.com/rugs/pdp/mistana-darchelle-beigepink-area-rug-mtna1789.html",
"class_name": "Area Rugs",
"sale_price": 51.99,
"thumbnail_image_url": "https://secure.img1.wfcdn.com/lf/43/hash/2664/46921865/1/custom_image.jpg",
"model": {
"dimensions_inches": {
"x": 48,
"y": 72,
"z": 0.25
},
"glb": "http://img.wfrcdn.com/docresources/37700/107/1073034.glb",
"obj": "http://img.wfrcdn.com/docresources/37700/76/764922.zip"
}
},
{
"sku": "MTNA1822",
"product_name": "Brandt Dark Grey Area Rug",
"product_description": "A fine foyer starts with the foundation! Set the tone for your alluring entryway by rolling out this ravishing area rug by the front door, effortlessly grabbing glances as you're greeting guests. Play up its bohemian beauty with a weathered wood console table for staging lush overflowing plants, then lend a little extra light with a gleaming golden pendant hanging overhead. Made in Turkey, this distinctive design is machine woven of polypropylene with latex backing for a casual piece that stays put. Detailed with a distressed Persian-inspired motif that's sure to draw the eye, it's able to beautifully blend into any abode thanks to hues of dark gray and white. Looking to liven up the living room? Just let this posh piece lay down between a pair of pillow-topped loveseats for a cozy seating ensemble, lovely dotted with a smattering of plush pouf ottomans for a dash of boho-chic beauty.",
"product_page_url": "https://www.wayfair.com/rugs/pdp/mistana-brandt-dark-grey-area-rug-mtna1822.html",
"class_name": "Area Rugs",
"sale_price": 33.99,
"thumbnail_image_url": "https://secure.img.wfcdn.com/lf/43/hash/44356/43847352/1/custom_image.jpg",
"model": {
"dimensions_inches": {
"x": 48,
"y": 72,
"z": 0.3
},
"glb": "http://img.wfrcdn.com/docresources/37700/107/1076305.glb",
"obj": "http://img.wfrcdn.com/docresources/37700/76/764161.zip"
}
},
{
"sku": "WDLN3892",
"product_name": "Cangelosi Gray Area Rug",
"product_description": "A bold, contemporary pinwheel pattern defines this alluring area rug, showcasing soft hues of gray, ivory, and brown. Made in China, this rug is machine woven from a stain and fade-resistant polyester and acrylic blend in a high-low 0.5’’ pile—perfect for laying out in the living room or digging your toes in right out of bed in the morning. Available in a selection of sizes to best suit your space, this rug works best when paired with a rug pad to prevent shifting and sliding.",
"product_page_url": "https://www.wayfair.com/rugs/pdp/wade-logan-cangelosi-gray-area-rug-wdln3892.html",
"class_name": "Area Rugs",
"sale_price": 35.98,
"thumbnail_image_url": "https://secure.img.wfcdn.com/lf/43/hash/36989/26204414/1/custom_image.jpg",
"model": {
"dimensions_inches": {
"x": 91.77,
"y": 91.63,
"z": 0.5
},
"glb": "http://img.wfrcdn.com/docresources/36989/107/1073047.glb",
"obj": "http://img.wfrcdn.com/docresources/36989/76/764943.zip"
}
},
{
"sku": "WLAO3915",
"product_name": "Aliyah Pink Area Rug",
"product_description": "",
"product_page_url": "https://www.wayfair.com/rugs/pdp/willa-arlo-interiors-aliyah-pink-area-rug-wlao3915.html",
"class_name": "Area Rugs",
"sale_price": 29.99,
"thumbnail_image_url": "https://secure.img1.wfcdn.com/lf/43/hash/2664/58129065/1/custom_image.jpg",
"model": {
"dimensions_inches": {
"x": 63,
"y": 91,
"z": 0.25
},
"glb": "http://img.wfrcdn.com/docresources/37700/107/1072415.glb",
"obj": "http://img.wfrcdn.com/docresources/37700/76/764263.zip"
}
},
{
"sku": "WNST3848",
"product_name": "Kimbell Donohoe Beige/Green Indoor/Outdoor Area Rug",
"product_description": "This sunny and sensational collection of flat woven indoor/outdoor rugs is pretty, practical and simply perfect for high traffic areas. With its inviting assortment of classic and contemporary designs, tempting color palettes and terrific textures, these multipurpose rugs will afford an air of simple sophistication to any environment.",
"product_page_url": "https://www.wayfair.com/rugs/pdp/winston-porter-kimbell-donohoe-beigegreen-indooroutdoor-area-rug-wnst3848.html",
"class_name": "Area Rugs",
"sale_price": 41.99,
"thumbnail_image_url": "https://secure.img1.wfcdn.com/lf/43/hash/2664/57101151/1/custom_image.jpg",
"model": {
"dimensions_inches": {
"x": 63.15,
"y": 89,
"z": 0.36
},
"glb": "http://img.wfrcdn.com/docresources/0/139/1392932.glb",
"obj": "http://img.wfrcdn.com/docresources/0/141/1413337.zip"
}
},
{
"sku": "ZPCD5905",
"product_name": "Kistler Hand-Braided Multi Area Rug",
"product_description": "An effortless glance-grabber in any space, this alluring area rug is sure to enliven your abode. Roll it out between a pair of crisp white loveseats for a pop of contrast in the living room, then make it shine with flickering candle lanterns atop weathered wood nightstands around the ensemble. Made in India, this ravishing rug is sure to stand out in any space. It is handcrafted of 100% cotton for a soft touch, while a braided design and a rainbow of vibrant hues make it effortlessly eye-catching. Switching up your style in the master suite? Take a solid-hued sumptuous comforter from simple to stunning in seconds by complementing it with this ravishing rug on the floor below. Though this posh piece brims with bohemian beauty all on its own, you can lend a little extra breezy appeal by dotting the walls around with a collection of curated antique prints.",
"product_page_url": "https://www.wayfair.com/rugs/pdp/zipcode-design-kistler-hand-braided-multi-area-rug-zpcd5905.html",
"class_name": "Area Rugs",
"sale_price": 28.99,
"thumbnail_image_url": "https://secure.img.wfcdn.com/lf/43/hash/30593/55591222/1/custom_image.jpg",
"model": {
"dimensions_inches": {
"x": 36,
"y": 60,
"z": 0.5
},
"glb": "http://img.wfrcdn.com/docresources/37700/107/1071976.glb",
"obj": "http://img.wfrcdn.com/docresources/37700/76/763780.zip"
}
},
{
"sku": "ZPCD6981",
"product_name": "Gehl Modern Blue Arcs & Shapes Area Rug",
"product_description": "Outfit your favorite aesthetic in versatile style with this eye-catching rug, an artful addition to any space. Its abstract geometric motif adds a pop of pattern to your decor while its muted hues blend effortlessly into both monochromatic and vibrant spaces. Lean into this piece's transitional influence by adding it to a contemporary living room alongside a streamlined sofa and tufted arm chair for a cohesive ensemble. Dot nearby walls with a rectangle mirror and landscape canvas print for an understated display, then pair it with metal typographic decor for a dash of dimension. Anchor the space with a glass-top coffee table, then use it to display charming flea market finds or a bowl of faux fruit for natural appeal. Equally at home defining high-traffic areas in the entryway, this charming rug instantly elevates your well-appointed decor ensemble.",
"product_page_url": "https://www.wayfair.com/rugs/pdp/zipcode-design-gehl-modern-blue-arcs-shapes-area-rug-zpcd6981.html",
"class_name": "Area Rugs",
"sale_price": 30.99,
"thumbnail_image_url": "https://secure.img1.wfcdn.com/lf/43/hash/2664/58397785/1/custom_image.jpg",
"model": {
"dimensions_inches": {
"x": 26.99,
"y": 46.99,
"z": 0.4
},
"glb": "http://img.wfrcdn.com/docresources/30593/107/1073238.glb",
"obj": "http://img.wfrcdn.com/docresources/30593/76/765127.zip"
}
},
{
"sku": "BCHH7421",
"product_name": "Stoneford Etagere Bookcase",
"product_description": "A traditional silhouette gets a contemporary update in this etagere bookcase. Crafted of solid and manufactured wood in a classic painted finish, this bookcase features tasteful moldings, a slatted backing, and X-shaped panel sides. Each clean-lined shelf provides a perfect platform for displaying everything from rows of your favorite reads to framed photos and collected curios. Shipped flat-packed, this bookcase requires full assembly, and should take a team of two about 60 minutes to complete.",
"product_page_url": "https://www.wayfair.com/furniture/pdp/beachcrest-home-stoneford-etagere-bookcase-bchh7421.html",
"class_name": "Bookcases",
"sale_price": 75.19,
"thumbnail_image_url": "https://secure.img1.wfcdn.com/lf/43/hash/2445/41669691/1/custom_image.jpg",
"model": {
"dimensions_inches": {
"x": 31.5,
"y": 11.75,
"z": 32.5
},
"glb": "http://img.wfrcdn.com/docresources/38454/94/942614.glb",
"obj": "http://img.wfrcdn.com/docresources/38454/101/1019705.zip"
}
},
{
"sku": "CLOP1021",
"product_name": "Cubicals Cube Unit Bookcase",
"product_description": "",
"product_page_url": "https://www.wayfair.com/furniture/pdp/closetmaid-cubicals-cube-unit-bookcase-clop1021.html",
"class_name": "Bookcases",
"sale_price": 94.99,
"thumbnail_image_url": "https://secure.img.wfcdn.com/lf/43/hash/36069/16377394/1/custom_image.jpg",
"model": {
"dimensions_inches": {
"x": 47.5,
"y": 11.6,
"z": 35.9
},
"glb": "http://img.wfrcdn.com/docresources/36069/107/1071333.glb",
"obj": "http://img.wfrcdn.com/docresources/36069/76/763066.zip"
}
},
{
"sku": "LRFY1920",
"product_name": "Ermont Etagere Bookcase",
"product_description": "Blending the charm of farmhouse aesthetics with modern minimalism, this understated bookcase brings on-trend style to any space in your home. Its compact 56.75\" H x 23.46\" W x 11.62\" D silhouette makes it an ideal option for smaller spaces, while its clean lines and open design ensure it won't overwhelm an existing arrangement. Crafted with a black-finished metal frame, this budget-friendly piece features five tiers made from manufactured wood in a natural finish, each with a weight capacity of 30 lbs., that are perfect for housing linens, cookbooks, or a decorative display. Assembly is required.",
"product_page_url": "https://www.wayfair.com/furniture/pdp/ermont-etagere-bookcase-lrfy1920.html",
"class_name": "Bookcases",
"sale_price": 83.22,
"thumbnail_image_url": "https://secure.img.wfcdn.com/lf/43/hash/42526/41294446/1/custom_image.jpg",
"model": {
"dimensions_inches": {
"x": 23.46,
"y": 11.62,
"z": 56.77
},
"glb": "http://img.wfrcdn.com/docresources/42526/107/1072122.glb",
"obj": "http://img.wfrcdn.com/docresources/42526/76/763897.zip"
}
},
{
"sku": "MCRF5348",
"product_name": "Selzer Geometric Etagere Bookcase",
"product_description": "More than just a platform to perch your collection of novels, accent pieces, and more, this bookcase offers a touch of glam style to your abode. Constructed from metal, it features a clean-lined frame awash in a warm brass finish, and strikes a rectangular silhouette. Since not all decorative displays come in the same size, it showcases six shelves at different heights and widths to accommodate tall potted plants and eye-catching decorative bowls alike.",
"product_page_url": "https://www.wayfair.com/furniture/pdp/mercer41-selzer-geometric-etagere-bookcase-mcrf5348.html",
"class_name": "Bookcases",
"sale_price": 227.99,
"thumbnail_image_url": "https://secure.img1.wfcdn.com/lf/43/hash/2664/60455095/1/custom_image.jpg",
"model": {
"dimensions_inches": {
"x": 40.04,
"y": 13.01,
"z": 72.03
},
"glb": "http://img.wfrcdn.com/docresources/39355/119/1191264.glb",
"obj": "http://img.wfrcdn.com/docresources/39355/121/1210988.zip"
}
},
{
"sku": "MCRR3404",
"product_name": "Chrysanthos Etagere Bookcase",
"product_description": "",
"product_page_url": "https://www.wayfair.com/furniture/pdp/mercury-row-chrysanthos-etagere-bookcase-mcrr3404.html",
"class_name": "Bookcases",
"sale_price": 203.99,
"thumbnail_image_url": "https://secure.img1.wfcdn.com/lf/43/hash/33808/43181625/1/custom_image.jpg",
"model": {
"dimensions_inches": {
"x": 34.9,
"y": 11.96,
"z": 70.79
},
"glb": "http://img.wfrcdn.com/docresources/33808/109/1097492.glb",
"obj": "http://img.wfrcdn.com/docresources/33808/75/755655.zip"
}
},
{
"sku": "SEHO2183",
"product_name": "Bowerbank Cube Unit Bookcase",
"product_description": "What good is a collection if it’s not properly displayed? Show off your favorite novels, movies, and more with this understated and stylish bookcase featuring ten open compartments (eight small and two large). It’s made from manufactured wood and measures 47.5'' H x 53.13'' W x 12.13'' D while striking a square silhouette, and comes in a solid neutral color for a look that complements any traditional aesthetic. Proudly made in the USA.",
"product_page_url": "https://www.wayfair.com/furniture/pdp/beachcrest-home-bowerbank-cube-unit-bookcase-seho2183.html",
"class_name": "Bookcases",
"sale_price": 215.99,
"thumbnail_image_url": "https://secure.img1.wfcdn.com/lf/43/hash/2664/59085279/1/custom_image.jpg",
"model": {
"dimensions_inches": {
"x": 52.78,
"y": 13.02,
"z": 47.12
},
"glb": "http://img.wfrcdn.com/docresources/37308/106/1068437.glb",
"obj": "http://img.wfrcdn.com/docresources/37308/75/758937.zip"
}
},
{
"sku": "SEHO9871",
"product_name": "Oridatown Standard Bookcase",
"product_description": "Expand your personal library and display your favorite reads, decorative accents, and potted plants with this bookcase. Featuring five shelves – three of which are adjustable – this manufactured wood piece boasts cottage-style details and tapered legs for a look that’s traditionally charming, while x-shaped details on the side round out the look. Wall attachment hardware is included, so you don’t need to worry about it tipping over. Measures 31'' H x 26.61'' W.",
"product_page_url": "https://www.wayfair.com/furniture/pdp/beachcrest-home-oridatown-standard-bookcase-seho9871.html",
"class_name": "Bookcases",
"sale_price": 216.99,
"thumbnail_image_url": "https://secure.img1.wfcdn.com/lf/43/hash/2664/51576463/1/custom_image.jpg",
"model": {
"dimensions_inches": {
"x": 31.73,
"y": 12.72,
"z": 65.98
},
"glb": "http://img.wfrcdn.com/docresources/150/110/1104004.glb",
"obj": "http://img.wfrcdn.com/docresources/150/112/1122853.zip"
}
},
{
"sku": "ZPCD1459",
"product_name": "Ricardo Ladder Bookcase",
"product_description": "Whether you love showing off framed family photos or you want a spot to store your collection of DVDs, this versatile leaning bookcase brings understated appeal and fantastic function to your home. Crafted with manufactured wood, this solid-hued design blends seamlessly into any existing ensemble while offering ample storage space. Place this five-tiered piece in your study to display your favorite books with pride, or tuck it into an unused corner of your living room to use it as a simplistic stage for potted succulents, contemporary sculptures, and sleek vases that will grab glances from guests at your next casual cocktail party.",
"product_page_url": "https://www.wayfair.com/furniture/pdp/zipcode-design-ricardo-ladder-bookcase-zpcd1459.html",
"class_name": "Bookcases",
"sale_price": 64.99,
"thumbnail_image_url": "https://secure.img1.wfcdn.com/lf/43/hash/30593/39337707/1/custom_image.jpg",
"model": {
"dimensions_inches": {
"x": 22,
"y": 14.5,
"z": 70
},
"glb": "http://img.wfrcdn.com/docresources/37572/107/1071397.glb",
"obj": "http://img.wfrcdn.com/docresources/37572/76/763118.zip"
}
},
{
"sku": "ZPCD6675",
"product_name": "Rutherford Ladder Bookcase",
"product_description": "Equally ideal for staging and storage space, this beautiful bookcase is a must-have for your abode. Keep it centered against a blank wall in the entryway to put framed family photos on display atop its five open shelves, then add in woven wicker bins to keep out-the-door accessories on hand. Or, if you're working with a smaller space, simply pull it up beside your bed for a nightstand alternative with space to keep a small lamp and stow away morning prep essentials. Taking on a stylish leaning silhouette, this distinctive design is crafted of laminate wood with a gently weathered gray finish.",
"product_page_url": "https://www.wayfair.com/furniture/pdp/zipcode-design-rutherford-ladder-bookcase-zpcd6675.html",
"class_name": "Bookcases",
"sale_price": 145.99,
"thumbnail_image_url": "https://secure.img.wfcdn.com/lf/43/hash/2664/47459214/1/custom_image.jpg",
"model": {
"dimensions_inches": {
"x": 25.15,
"y": 18.17,
"z": 60
},
"glb": "http://img.wfrcdn.com/docresources/30593/107/1077406.glb",
"obj": "http://img.wfrcdn.com/docresources/30593/93/935964.zip"
}
},
{
"sku": "BCHH7429",
"product_name": "Stoneford Traditional Coffee Table",
"product_description": "A breezy way to anchor your living room look, this coffee table brings both storage and style to your carefully curated ensemble. Its clean lines are emblematic of traditional styles, and x-shaped sides lend coastal flair. Made from manufactured wood, this design features a lower open shelf perfect for lining with woven wicker bins, while ample space up top makes room for coasters, fanning out magazines, and setting TV remotes.",
"product_page_url": "https://www.wayfair.com/furniture/pdp/beachcrest-home-stoneford-traditional-coffee-table-bchh7429.html",
"class_name": "Coffee & Cocktail Tables",
"sale_price": 224.99,
"thumbnail_image_url": "https://secure.img.wfcdn.com/lf/43/hash/38454/32250186/1/custom_image.jpg",
"model": {
"dimensions_inches": {
"x": 35.5,
"y": 35.5,
"z": 18
},
"glb": "http://img.wfrcdn.com/docresources/38454/109/1092868.glb",
"obj": "http://img.wfrcdn.com/docresources/38454/76/766575.zip"
}
},
{
"sku": "DBHC6310",
"product_name": "Mathis Coffee Table Trunk with Lift Top",
"product_description": "",
"product_page_url": "https://www.wayfair.com/furniture/pdp/darby-home-co-mathis-coffee-table-trunk-with-lift-top-dbhc6310.html",
"class_name": "Coffee & Cocktail Tables",
"sale_price": 349.87,
"thumbnail_image_url": "https://secure.img.wfcdn.com/lf/43/hash/36984/41918630/1/Woolwich%2BTrunk%2BCoffee%2BTable%2Bwith%2BLift-Top.jpg",
"model": {
"dimensions_inches": {
"x": 46,
"y": 26,
"z": 20
},
"glb": "http://img.wfrcdn.com/docresources/36984/109/1097498.glb",
"obj": "http://img.wfrcdn.com/docresources/36984/76/763358.zip"
}
},
{
"sku": "IVBX2371",
"product_name": "Sydnor Coffee Table",
"product_description": "Center your seating space in contemporary style with this clean-lined coffee table. Crafted of metal, this piece features a sizable square top and lower shelf (which both measure 32\" across) that provide a place for snacks, framed photos, a stack of magazines, and more. Clear tempered glass tiers contribute to its open and airy look, while the neutral finish on its frame allows this versatile design to blend with a variety of color palettes and aesthetics. Assembly is required.",
"product_page_url": "https://www.wayfair.com/furniture/pdp/ivy-bronx-sydnor-coffee-table-ivbx2371.html",
"class_name": "Coffee & Cocktail Tables",
"sale_price": 122.99,
"thumbnail_image_url": "https://secure.img.wfcdn.com/lf/43/hash/1261/38956912/1/custom_image.jpg",
"model": {
"dimensions_inches": {
"x": 32.01,
"y": 31.99,
"z": 17.98
},
"glb": "http://img.wfrcdn.com/docresources/34591/107/1077850.glb",
"obj": "http://img.wfrcdn.com/docresources/34591/94/944255.zip"
}
},
{
"sku": "IVYB7137",
"product_name": "Evadne Coffee Table",
"product_description": "A practical piece for any living room, this coffee tables offer a platform for seasonal decor and brings contemporary appeal to your home. Crafted from metal with a brushed nickel finish, the stylish frame features four angled legs connected to a square base. Set to the frame by suction cup hooks, its clear glass tabletop features beveled edges and measures 34.13'' W x 34.13'' D, leaving plenty of real estate available in your living room ensemble. Assembly is required, but no tools are needed.",
"product_page_url": "https://www.wayfair.com/furniture/pdp/ivy-bronx-evadne-coffee-table-ivyb7137.html",
"class_name": "Coffee & Cocktail Tables",
"sale_price": 180.99,
"thumbnail_image_url": "https://secure.img1.wfcdn.com/lf/43/hash/2668/51727997/1/custom_image.jpg",
"model": {
"dimensions_inches": {
"x": 34.32,
"y": 34.18,
"z": 16.38
},
"glb": "http://img.wfrcdn.com/docresources/33808/110/1101629.glb",
"obj": "http://img.wfrcdn.com/docresources/33808/111/1119781.zip"
}
},
{
"sku": "LFMF1697",
"product_name": "Kaitlin Coffee Table",
"product_description": "Feeling boxed out by square furniture? If you're looking for a way to break up a room with an abundance of blocky pieces, adding a circular accent like this coffee table can be a great selection. Constructed of solid poplar with poplar veneers, this piece features a distressed finish for a country touch in any room. The surface and shelf feature a slat-inspired surface, perfect for a home looking for a rustic accent. Measuring 18'' H x 40'' in diameter, this piece also includes wheels for easy movement.",
"product_page_url": "https://www.wayfair.com/furniture/pdp/kaitlin-coffee-table-lfmf1697.html",
"class_name": "Coffee & Cocktail Tables",
"sale_price": 377.12,
"thumbnail_image_url": "https://secure.img1.wfcdn.com/lf/43/hash/1436/60832553/1/Bellagio%2BRound%2BCoffee%2BTable.jpg",
"model": {
"dimensions_inches": {
"x": 40,
"y": 39.83,
"z": 18
},
"glb": "http://img.wfrcdn.com/docresources/37306/130/1302505.glb",
"obj": "http://img.wfrcdn.com/docresources/37306/131/1310103.zip"
}
},
{
"sku": "LFMF1830",
"product_name": "Silvis Coffee Table",
"product_description": "Center your living room or den around charming style with this lovely coffee table. The perfect pick for modern farmhouse aesthetics, it showcases a streamlined frame with a rustic wood top supported by two x-crossed sides. The sides are crafted from metal and finished in a black hue for a touch of industrial appeal, while the lower shelf provides a convenient space to tuck away glossy magazines, media accessories, and more.",
"product_page_url": "https://www.wayfair.com/furniture/pdp/silvis-coffee-table-lfmf1830.html",
"class_name": "Coffee & Cocktail Tables",
"sale_price": 220.99,
"thumbnail_image_url": "https://secure.img.wfcdn.com/lf/43/hash/29633/41687288/1/custom_image.jpg",
"model": {
"dimensions_inches": {
"x": 47.25,
"y": 23.75,
"z": 18
},
"glb": "http://img.wfrcdn.com/docresources/42526/108/1082327.glb",
"obj": "http://img.wfrcdn.com/docresources/42526/104/1043151.zip"
}
},
{
"sku": "LGLY2659",
"product_name": "Finnur Coffee Table",
"product_description": "This minimalist coffee table's slighly dipped surface and classic walnut finish make it the perfect piece to let your favorite accents take center stage. Add a stack of design books and chic statuette for an artful look, or top it with a vintage vase to play up its midcentury side.",
"product_page_url": "https://www.wayfair.com/furniture/pdp/langley-street-finnur-coffee-table-lgly2659.html",
"class_name": "Coffee & Cocktail Tables",
"sale_price": 209.99,
"thumbnail_image_url": "https://secure.img1.wfcdn.com/lf/43/hash/36991/58163521/1/custom_image.jpg",
"model": {
"dimensions_inches": {
"x": 34.25,
"y": 34.25,
"z": 15.75
},
"glb": "http://img.wfrcdn.com/docresources/36991/128/1283658.glb",
"obj": "http://img.wfrcdn.com/docresources/36991/129/1290018.zip"
}
},
{
"sku": "LRFY7375",
"product_name": "Forteau Coffee Table",
"product_description": "When movie marathons and cocktail parties come around, you’ll be happy to have this clean-lined coffee table at your side. Crafted with a black-finished metal frame, this budget-friendly piece features two tiers made from manufactured wood in a natural finish for a neutral and understated look. Measuring 18.5'' H x 42'' W x 18.1'' D overall, this design provides essential space to set down snacks, magazines, and more. Assembly is required.",
"product_page_url": "https://www.wayfair.com/furniture/pdp/forteau-coffee-table-lrfy7375.html",
"class_name": "Coffee & Cocktail Tables",
"sale_price": 127.99,
"thumbnail_image_url": "https://secure.img.wfcdn.com/lf/43/hash/42526/43997462/1/custom_image.jpg",