-
Notifications
You must be signed in to change notification settings - Fork 103
/
Copy pathsearch.json
5935 lines (5935 loc) · 165 KB
/
search.json
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
[
{
"id": 38475891,
"brand": {
"id": 17,
"name": "Louis Vuitton"
},
"name": "Keepall leather travel bag",
"description": "An icon since the appearance in 1930, the Keepall embodies the spirit of modern travel. Light, supple and always ready for immediate departure, the bag lives up to its name: those adept at the art of packing can easily fit a week's wardrobe into the generously sized (and cabin-friendly) Keepall 55. Hardware tarnished, leather aging. Comes with detachable strap, nametag, poignee.",
"country": "US",
"discount": {
"originalPrice": {
"cents": 162750,
"currency": "USD"
},
"ranges": null,
"percent": 10
},
"colors": {
"originalId": 8,
"all": [
{
"id": 8,
"name": "Brown"
}
]
},
"localEligible": true,
"directShippingEligible": false,
"editorPicks": {
"vintage": false,
"weLove": true,
"hot": false,
"dealEligible": true,
"exceptionalPieces": false
},
"likes": 128,
"link": "/men-bags/bags/louis-vuitton/brown-leather-keepall-louis-vuitton-bag-38475891.shtml",
"model": {
"id": 7514,
"name": "Keepall"
},
"pictures": [
"/produit/38475891-1_2.jpg"
],
"price": {
"cents": 146475,
"currency": "USD"
},
"seller": {
"id": 3942669,
"firstname": "Preloved",
"badge": "Expert",
"picture": "/cdn-cgi/image/f=auto/profil/3942669-d5351a3deaff3b9dd3646f65bbc4e821.jpg",
"isOfficialStore": false
},
"sold": false,
"stock": false,
"shouldBeGone": false,
"createdAt": 1699647289,
"universeId": 2,
"dutyFree": true
},
{
"id": 38243610,
"brand": {
"id": 17,
"name": "Louis Vuitton"
},
"name": "Neverfull leather tote",
"description": "Louis Vuitton Neverfull MM with Cherry Interior Damier Ebene Tote Purse\n\n100% Authentic backed with our money back guarantee. Includes authentication by AuthenticateFirst, the leading Louis Vuitton authenticator (please see second image for Certificate of Authenticity and scan QR code to view authentication). \n\nDate Code: SD1079\nMade in USA in the 17th week of 2009\n\nIncludes this Louis Vuitton purse and Louis Vuitton dust bag\n\nCondition: \nExterior Canvas: Very good. Slight rubbing on corners. No cuts/rips\nVachetta (handles & trim): Overall good with slight scuffing and some wrinkling on handles\nInterior: Very good\nInterior Pockets: Very good. One tiny mark\nStitching: Very good\nHardware: Good\n\nMeasurements:\nWidth = 12.6 inches\nHeight = 11.4 inches\nDepth = 6.7 inches\nDrop = 8 inches\n\nDescription: \nCoated canvas\nNatural cowhide-leather trim\nCherry striped textile lining\nGold-color hardware\nHook closure\nFlat lined zipped inside pocket\n4 side laces\nD-ring\nDouble handle",
"country": "US",
"discount": {
"originalPrice": {
"cents": 141645,
"currency": "USD"
},
"ranges": null,
"percent": 15
},
"colors": {
"originalId": 8,
"all": [
{
"id": 8,
"name": "Brown"
}
]
},
"localEligible": true,
"directShippingEligible": false,
"editorPicks": {
"vintage": false,
"weLove": true,
"hot": false,
"dealEligible": true,
"exceptionalPieces": false
},
"likes": 54,
"link": "/women-bags/handbags/louis-vuitton/brown-leather-neverfull-louis-vuitton-handbag-38243610.shtml",
"model": {
"id": 15,
"name": "Neverfull"
},
"pictures": [
"/produit/38243610-1_2.jpg"
],
"price": {
"cents": 120435,
"currency": "USD"
},
"seller": {
"id": 17559891,
"firstname": "BrandedModa",
"badge": "Expert",
"picture": "/cdn-cgi/image/f=auto/profil/17559891-c3fd7e591f89bad5d09cbed7b12304a5.jpg",
"isOfficialStore": false
},
"sold": false,
"stock": false,
"shouldBeGone": false,
"createdAt": 1699079376,
"universeId": 1,
"dutyFree": true
},
{
"id": 39008902,
"brand": {
"id": 17,
"name": "Louis Vuitton"
},
"name": "Bom Dia leather sandal",
"description": "Louis Vuitton Brown Buckle Bom Dia Monogram Flat Slide Sandal\nSize EU 38 US 8 WOMENS\nComes with dustbag\n100% Authentic\n\n\n*PRICE IS FIRM*\n\n\nColor: Cacao Brown\nClassic dark brown slip on sandal with allover LV monogram print\n\n\nPatent Monogram canvas\nAdjustable strap\nAnatomic insole\nTreaded rubber outsole\nLouis Vuitton-engraved buckle\nMonogram pattern on the tread\nPlease note signs of wear on the bottom as shown. Please note any scratches on edges have been polished over as shown",
"country": "US",
"colors": {
"originalId": 8,
"all": [
{
"id": 8,
"name": "Brown"
}
]
},
"localEligible": true,
"directShippingEligible": true,
"editorPicks": {
"vintage": false,
"weLove": false,
"hot": false,
"dealEligible": false,
"exceptionalPieces": false
},
"likes": 2,
"link": "/women-shoes/sandals/louis-vuitton/brown-leather-bom-dia-louis-vuitton-sandals-39008902.shtml",
"model": {
"id": 4532,
"name": "Bom Dia "
},
"pictures": [
"/produit/39008902-1_2.jpg"
],
"price": {
"cents": 76650,
"currency": "USD"
},
"seller": {
"id": 7006483,
"firstname": "Leora",
"badge": "Expert",
"picture": "",
"isOfficialStore": false
},
"sold": false,
"stock": false,
"shouldBeGone": false,
"size": {
"id": 36,
"label": "8 US",
"types": [
{
"type": 3,
"values": [
"8#37"
]
}
]
},
"createdAt": 1701044755,
"universeId": 1,
"dutyFree": true
},
{
"id": 38586945,
"brand": {
"id": 17,
"name": "Louis Vuitton"
},
"name": "Sarah leather wallet",
"description": "LOUIS VUITTON\nmodel: sarah long clutch wallet\nmaterial: monogram canvas, leather\ndimensions: 7.5\" x 4.5\"\ndate code: SD 0032\nMade in USA\n\nvery good condition. only some normal signs of average use and patina. please see all photos.\n\n\n\n\n\n\n\n\ngbstock 000",
"country": "US",
"discount": {
"originalPrice": {
"cents": 20475,
"currency": "USD"
},
"ranges": null,
"percent": 15
},
"colors": {
"originalId": 8,
"all": [
{
"id": 8,
"name": "Brown"
}
]
},
"localEligible": true,
"directShippingEligible": true,
"editorPicks": {
"vintage": false,
"weLove": false,
"hot": false,
"dealEligible": true,
"exceptionalPieces": false
},
"likes": 20,
"link": "/women-accessories/wallet/louis-vuitton/brown-leather-sarah-louis-vuitton-wallet-38586945.shtml",
"model": {
"id": 2451,
"name": "Sarah"
},
"pictures": [
"/produit/38586945-1_2.jpg"
],
"price": {
"cents": 17430,
"currency": "USD"
},
"seller": {
"id": 18292304,
"firstname": "Golden Bear Boutique",
"badge": "",
"picture": "/cdn-cgi/image/f=auto/profil/18292304-0f52342149798490a13455d14437398d.jpg",
"isOfficialStore": false
},
"sold": false,
"stock": false,
"shouldBeGone": false,
"createdAt": 1699924467,
"universeId": 1,
"dutyFree": true
},
{
"id": 38243656,
"brand": {
"id": 17,
"name": "Louis Vuitton"
},
"name": "Neverfull leather tote",
"description": "Louis Vuitton Neverfull MM with beige interior Damier Azur tote shoulder bag 100% authentic. Includes authentication by AuthenticateFirst, Louis Vuitton's leading authenticator (please see second image for Certificate of Authenticity and scan QR code to view authentication). Date Code: SR0176 Made in France during the 7th week of 2016 Includes this Louis Vuitton handbag, this Louis Vuitton box and this Louis Vuitton dust bag Condition: Outer canvas: Very good. Light rubbing at corners and slight discoloration. No cracks/tears Vachetta (handles and trim): Overall tan with areas of rubbing, wrinkles and darkening. No cuts/rips. Interior: Light browning on top of lining. A few small stains on the bottom lining. Otherwise good Interior pockets: Light dirt Stitching: Very good Hardware: Very good Measurements: Width = 12.6 inches Height = 11.4 inches Depth = 6.7 inches Height = 8 inches Description: Coated canvas Natural cowhide trim Lining beige striped textile Gold hardware Hook closure Interior flat lined zipped pocket 4 side laces D-ring Double handle",
"country": "US",
"discount": {
"originalPrice": {
"cents": 131145,
"currency": "USD"
},
"ranges": null,
"percent": 15
},
"colors": {
"originalId": 1,
"all": [
{
"id": 1,
"name": "White"
}
]
},
"localEligible": true,
"directShippingEligible": false,
"editorPicks": {
"vintage": false,
"weLove": true,
"hot": false,
"dealEligible": true,
"exceptionalPieces": false
},
"likes": 125,
"link": "/women-bags/handbags/louis-vuitton/white-leather-neverfull-louis-vuitton-handbag-38243656.shtml",
"model": {
"id": 15,
"name": "Neverfull"
},
"pictures": [
"/produit/38243656-1_2.jpg"
],
"price": {
"cents": 111510,
"currency": "USD"
},
"seller": {
"id": 17559891,
"firstname": "BrandedModa",
"badge": "Expert",
"picture": "/cdn-cgi/image/f=auto/profil/17559891-c3fd7e591f89bad5d09cbed7b12304a5.jpg",
"isOfficialStore": false
},
"sold": false,
"stock": false,
"shouldBeGone": false,
"createdAt": 1699079399,
"universeId": 1,
"dutyFree": true
},
{
"id": 38483711,
"brand": {
"id": 17,
"name": "Louis Vuitton"
},
"name": "Noé leather handbag",
"description": "LOUIS VUITTON\nmodel: vintage noe gm drawstring shoulder bag w/ dustbag\nmaterial: lv monogram canvas, leather\ndimensions: 14.5\" x 10.5\" x 7.5\"\ndate code:A2 8609\nmade in: france\n\ndustbag included. overall very good condition with normal signs of average use and patina. aged leather. please see all photos.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\ngbstock 000000180",
"country": "US",
"discount": {
"originalPrice": {
"cents": 51975,
"currency": "USD"
},
"ranges": null,
"percent": 15
},
"colors": {
"originalId": 8,
"all": [
{
"id": 8,
"name": "Brown"
}
]
},
"localEligible": true,
"directShippingEligible": true,
"editorPicks": {
"vintage": true,
"weLove": true,
"hot": false,
"dealEligible": true,
"exceptionalPieces": false
},
"likes": 86,
"link": "/women-bags/handbags/louis-vuitton/brown-leather-noe-louis-vuitton-handbag-38483711.shtml",
"model": {
"id": 7955,
"name": "Noé"
},
"pictures": [
"/produit/38483711-1_2.jpg"
],
"price": {
"cents": 44205,
"currency": "USD"
},
"seller": {
"id": 18292304,
"firstname": "Golden Bear Boutique",
"badge": "",
"picture": "/cdn-cgi/image/f=auto/profil/18292304-0f52342149798490a13455d14437398d.jpg",
"isOfficialStore": false
},
"sold": false,
"stock": false,
"shouldBeGone": false,
"createdAt": 1699674961,
"universeId": 1,
"dutyFree": true
},
{
"id": 38039996,
"brand": {
"id": 17,
"name": "Louis Vuitton"
},
"name": "Neverfull leather tote",
"description": "Louis Vuitton Neverfull MM with Beige Interior Damier Azur Tote Shoulder Bag\n\n100% Authentic backed with our money back guarantee. Includes authentication by AuthenticateFirst, the leading Louis Vuitton authenticator (please see second image for Certificate of Authenticity and scan QR code to view authentication). \n\nDate Code: SP4079\nMade in France in the 47th week of 2009\n\nIncludes this Louis Vuitton purse only \n\nCondition: \nExterior Canvas: Very good. Light rubbing on bottom corners. No cracks/rips\nVachetta (handles & trim): Light colored vachetta with areas of wrinkling, rubbing, and fading\nInterior: Few dark spots and stains and some dirtiness\nInterior Pockets: Some peeling/light dirtiness\nStitching: Very good\nHardware: Good with light scratches\n\nMeasurements:\nWidth = 12.6 inches\nHeight = 11.4 inches\nDepth = 6.7 inches\nDrop = 8 inches\n\nDescription: \nCoated canvas\nNatural cowhide-leather trim\nBeige striped textile lining\nGold-color hardware\nHook closure\nFlat lined zipped inside pocket\n4 side laces\nD-ring\nDouble handle",
"country": "US",
"discount": {
"originalPrice": {
"cents": 120645,
"currency": "USD"
},
"ranges": null,
"percent": 15
},
"colors": {
"originalId": 1,
"all": [
{
"id": 1,
"name": "White"
}
]
},
"localEligible": true,
"directShippingEligible": true,
"editorPicks": {
"vintage": false,
"weLove": true,
"hot": false,
"dealEligible": true,
"exceptionalPieces": false
},
"likes": 33,
"link": "/women-bags/handbags/louis-vuitton/white-leather-neverfull-louis-vuitton-handbag-38039996.shtml",
"model": {
"id": 15,
"name": "Neverfull"
},
"pictures": [
"/produit/38039996-1_2.jpg"
],
"price": {
"cents": 102585,
"currency": "USD"
},
"seller": {
"id": 17559891,
"firstname": "BrandedModa",
"badge": "Expert",
"picture": "/cdn-cgi/image/f=auto/profil/17559891-c3fd7e591f89bad5d09cbed7b12304a5.jpg",
"isOfficialStore": false
},
"sold": false,
"stock": false,
"shouldBeGone": false,
"createdAt": 1698545422,
"universeId": 1,
"dutyFree": true
},
{
"id": 38352124,
"brand": {
"id": 17,
"name": "Louis Vuitton"
},
"name": "Neverfull leather handbag",
"description": "Louis Vuitton Neverfull GM Brown Monogram Canvas Shoulder bag; Measurements:15.5\"L x 7.5\"W x 12.5\"H;Date Code: FL0153;light wear and scuffs at corners; light water stains at rim; light wear at interior lining; light wear at hardware; No Dustbag, No box; SKU T_ZY0000283445 B4000",
"country": "US",
"discount": {
"originalPrice": {
"cents": 135450,
"currency": "USD"
},
"ranges": null,
"percent": 15
},
"colors": {
"originalId": 8,
"all": [
{
"id": 8,
"name": "Brown"
}
]
},
"localEligible": true,
"directShippingEligible": false,
"editorPicks": {
"vintage": false,
"weLove": true,
"hot": false,
"dealEligible": true,
"exceptionalPieces": false
},
"likes": 47,
"link": "/women-bags/handbags/louis-vuitton/brown-leather-neverfull-louis-vuitton-handbag-38352124.shtml",
"model": {
"id": 15,
"name": "Neverfull"
},
"pictures": [
"/produit/38352124-1_2.jpg"
],
"price": {
"cents": 115185,
"currency": "USD"
},
"seller": {
"id": 8810280,
"firstname": "coco",
"badge": "",
"picture": "/cdn-cgi/image/f=auto/profil/8810280-4cac032672178ce0b09f9fbfc9e66742.jpg",
"isOfficialStore": false
},
"sold": false,
"stock": false,
"shouldBeGone": false,
"createdAt": 1699349003,
"universeId": 1,
"dutyFree": true
},
{
"id": 39004687,
"brand": {
"id": 17,
"name": "Louis Vuitton"
},
"name": "Neverfull leather tote",
"description": "Louis vuitton neverfull MM is in very good condition no cracking no is discoloration on canvas sign of small rubs on the lips but still beautiful.",
"country": "US",
"colors": {
"originalId": 8,
"all": [
{
"id": 8,
"name": "Brown"
}
]
},
"localEligible": true,
"directShippingEligible": false,
"editorPicks": {
"vintage": false,
"weLove": false,
"hot": false,
"dealEligible": false,
"exceptionalPieces": false
},
"likes": 0,
"link": "/women-bags/handbags/louis-vuitton/brown-leather-neverfull-louis-vuitton-handbag-39004687.shtml",
"model": {
"id": 15,
"name": "Neverfull"
},
"pictures": [
"/produit/39004687-1_2.jpg"
],
"price": {
"cents": 114975,
"currency": "USD"
},
"seller": {
"id": 22532026,
"firstname": "chandanie",
"badge": "Expert",
"picture": "",
"isOfficialStore": false
},
"sold": false,
"stock": false,
"shouldBeGone": false,
"createdAt": 1701034024,
"universeId": 1,
"dutyFree": true
},
{
"id": 38487252,
"brand": {
"id": 17,
"name": "Louis Vuitton"
},
"name": "Onthego leather satchel",
"description": "Louis Vuitton Onthego Black Monogram Canvas Satchel ;Measurements:16\"L x 6.5\"W x 12.5\"H; Date Code:Microchip; Light wear at corners and bottom; Light wear at interior lining; Light wear at hardware; No Dustbag, No box; SKU T_ZY0000285501 B12000",
"country": "US",
"discount": {
"originalPrice": {
"cents": 317625,
"currency": "USD"
},
"ranges": null,
"percent": 15
},
"colors": {
"originalId": 14,
"all": [
{
"id": 14,
"name": "Black"
}
]
},
"localEligible": true,
"directShippingEligible": false,
"editorPicks": {
"vintage": false,
"weLove": false,
"hot": false,
"dealEligible": true,
"exceptionalPieces": false
},
"likes": 17,
"link": "/women-bags/handbags/louis-vuitton/black-leather-onthego-louis-vuitton-handbag-38487252.shtml",
"model": {
"id": 4324,
"name": "Onthego"
},
"pictures": [
"/produit/38487252-1_2.jpg"
],
"price": {
"cents": 269955,
"currency": "USD"
},
"seller": {
"id": 8810280,
"firstname": "coco",
"badge": "",
"picture": "/cdn-cgi/image/f=auto/profil/8810280-4cac032672178ce0b09f9fbfc9e66742.jpg",
"isOfficialStore": false
},
"sold": false,
"stock": false,
"shouldBeGone": false,
"createdAt": 1699695461,
"universeId": 1,
"dutyFree": true
},
{
"id": 38347404,
"brand": {
"id": 17,
"name": "Louis Vuitton"
},
"name": "Neverfull leather tote",
"description": "NEW! Original design Neverfull MM with waterproof slide pocket and cursive writing inside. No longer produced! Never used, comes with dustbag.",
"country": "US",
"discount": {
"originalPrice": {
"cents": 188895,
"currency": "USD"
},
"ranges": null,
"percent": 10
},
"colors": {
"originalId": 8,
"all": [
{
"id": 8,
"name": "Brown"
}
]
},
"localEligible": true,
"directShippingEligible": false,
"editorPicks": {
"vintage": false,
"weLove": true,
"hot": false,
"dealEligible": true,
"exceptionalPieces": false
},
"likes": 33,
"link": "/women-bags/handbags/louis-vuitton/brown-leather-neverfull-louis-vuitton-handbag-38347404.shtml",
"model": {
"id": 15,
"name": "Neverfull"
},
"pictures": [
"/produit/38347404-1_2.jpg"
],
"price": {
"cents": 169995,
"currency": "USD"
},
"seller": {
"id": 3942669,
"firstname": "Preloved",
"badge": "Expert",
"picture": "/cdn-cgi/image/f=auto/profil/3942669-d5351a3deaff3b9dd3646f65bbc4e821.jpg",
"isOfficialStore": false
},
"sold": false,
"stock": false,
"shouldBeGone": false,
"createdAt": 1699321288,
"universeId": 1,
"dutyFree": true
},
{
"id": 37828753,
"brand": {
"id": 17,
"name": "Louis Vuitton"
},
"name": "Keepall leather travel bag",
"description": "The biggest keepall!! An icon since the appearance in 1930, the Keepall embodies the spirit of modern travel. Light, supple and always ready for immediate departure, the bag lives up to its name: those adept at the art of packing can easily fit a week's wardrobe into the generously sized (and cabin-friendly) Keepall 60. Hardware tarnished, leather aging. Comes with detachable strap.",
"country": "US",
"discount": {
"originalPrice": {
"cents": 73395,
"currency": "USD"
},
"ranges": null,
"percent": 10
},
"colors": {
"originalId": 8,
"all": [
{
"id": 8,
"name": "Brown"
}
]
},
"localEligible": true,
"directShippingEligible": true,
"editorPicks": {
"vintage": false,
"weLove": true,
"hot": false,
"dealEligible": true,
"exceptionalPieces": false
},
"likes": 102,
"link": "/men-bags/bags/louis-vuitton/brown-leather-keepall-louis-vuitton-bag-37828753.shtml",
"model": {
"id": 7514,
"name": "Keepall"
},
"pictures": [
"/produit/37828753-1_2.jpg"
],
"price": {
"cents": 66045,
"currency": "USD"
},
"seller": {
"id": 3942669,
"firstname": "Preloved",
"badge": "Expert",
"picture": "/cdn-cgi/image/f=auto/profil/3942669-d5351a3deaff3b9dd3646f65bbc4e821.jpg",
"isOfficialStore": false
},
"sold": false,
"stock": false,
"shouldBeGone": false,
"createdAt": 1697992169,
"universeId": 2,
"dutyFree": true
},
{
"id": 37658908,
"brand": {
"id": 17,
"name": "Louis Vuitton"
},
"name": "Noé leather handbag",
"description": "LOUIS VUITTON\nmodel: petit noe drawstring shoulder bag w/ dustbag\nmaterial: lv monogram canvas, leather\ndimensions: 10.5\" x 10.5\" x 7.5\"\ndate code: AR 0970\nmade in: france\n\ndustbag included. excellent vintage condition. only normal signs of light average use and patina. please see all photos\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\ngbstock 0000230",
"country": "US",
"discount": {
"originalPrice": {
"cents": 57750,
"currency": "USD"
},
"ranges": null,
"percent": 15
},
"colors": {
"originalId": 8,
"all": [
{
"id": 8,
"name": "Brown"
}
]
},
"localEligible": true,
"directShippingEligible": true,
"editorPicks": {
"vintage": true,
"weLove": true,
"hot": false,
"dealEligible": true,
"exceptionalPieces": false
},
"likes": 812,
"link": "/women-bags/handbags/louis-vuitton/brown-leather-noe-louis-vuitton-handbag-37658908.shtml",
"model": {
"id": 145,
"name": "Noé"
},
"pictures": [
"/produit/37658908-1_2.jpg"
],
"price": {
"cents": 49140,
"currency": "USD"
},
"seller": {
"id": 18292304,
"firstname": "Golden Bear Boutique",
"badge": "",
"picture": "/cdn-cgi/image/f=auto/profil/18292304-0f52342149798490a13455d14437398d.jpg",
"isOfficialStore": false
},
"sold": false,
"stock": false,
"shouldBeGone": false,
"createdAt": 1697572109,
"universeId": 1,
"dutyFree": true
},
{
"id": 38374795,
"brand": {
"id": 17,
"name": "Louis Vuitton"
},
"name": "Emilie cloth wallet",
"description": "Beautiful and stylish wallet in like new condition. Monogram coated canvas exterior and cowhide leather interior. Gold tone hardware. Fuchsia calf leather front snap button. Interior has four card slots, a bill slot, two open slots and a zipper coin compartment. The zipper coin compartment interior color is brown. Made in France! Date code is: VM2200. Sold with a Louis Vuitton box. Not sold with a dustbag.",
"country": "US",
"discount": {
"originalPrice": {
"cents": 57750,
"currency": "USD"
},
"ranges": [
"20%"
],
"percent": 27
},
"colors": {
"originalId": 8,
"all": [
{
"id": 8,
"name": "Brown"
}
]
},
"localEligible": true,
"directShippingEligible": true,
"editorPicks": {
"vintage": false,
"weLove": false,
"hot": false,
"dealEligible": true,
"exceptionalPieces": false
},
"likes": 24,
"link": "/women-accessories/wallet/louis-vuitton/brown-cloth-emilie-louis-vuitton-wallet-38374795.shtml",
"model": {
"id": 3172,
"name": "Emilie"
},
"pictures": [
"/produit/38374795-1_2.jpg"
],
"price": {
"cents": 42000,
"currency": "USD"
},
"seller": {
"id": 16193360,
"firstname": "MB",
"badge": "Expert",
"picture": "/cdn-cgi/image/f=auto/profil/16193360-54d6ca5fdba500b248c676dea5253634.jpg",
"isOfficialStore": false
},
"sold": false,
"stock": false,
"shouldBeGone": false,
"createdAt": 1699392333,
"universeId": 1,
"dutyFree": true
},
{
"id": 38621843,
"brand": {
"id": 17,
"name": "Louis Vuitton"
},
"name": "Pallas leather wallet",
"description": "Louis Vuitton Pallas Brown&Black Monogram Canvas Long Wallet;Measurements:7.4\"L x 1\"W x 4.4\"H; Date Code: SN5106; light wear at corners and edge; slight wear at interior lining; light wear at hardware; No Dustbag, No box; SKU T_ZY0000286769 B1500",
"country": "US",
"discount": {
"originalPrice": {
"cents": 54075,
"currency": "USD"
},
"ranges": null,
"percent": 15
},
"colors": {
"originalId": 8,
"all": [
{
"id": 8,
"name": "Brown"
}
]
},
"localEligible": true,
"directShippingEligible": true,
"editorPicks": {
"vintage": false,
"weLove": false,
"hot": false,
"dealEligible": true,
"exceptionalPieces": false
},
"likes": 16,
"link": "/women-accessories/wallet/louis-vuitton/brown-leather-pallas-louis-vuitton-wallet-38621843.shtml",
"model": {
"id": 2391,
"name": "Pallas"
},
"pictures": [
"/produit/38621843-1_2.jpg"
],
"price": {
"cents": 45990,
"currency": "USD"
},
"seller": {
"id": 8810280,
"firstname": "coco",
"badge": "",
"picture": "/cdn-cgi/image/f=auto/profil/8810280-4cac032672178ce0b09f9fbfc9e66742.jpg",
"isOfficialStore": false
},
"sold": false,
"stock": false,
"shouldBeGone": false,
"createdAt": 1700009925,
"universeId": 1,
"dutyFree": true
},
{
"id": 38102830,
"brand": {
"id": 17,
"name": "Louis Vuitton"
},
"name": "Speedy Bandoulière leather handbag",
"description": "Limited edition! Rare in this very good condition. This is a few steps up from a regular speedy! See features below. \n\n\n• Louis Vuitton Top rolled Handle Bag - 5.5 inch handle opening is generous and comfortable on crook of arm\n• From the 2010 Collection by Marc Jacob’s\n• LV Monogram canvas\n• Brass Hardware\n• Leather champagne color embellishments make the monogram more subtle\n• Beautiful lite Honey vachetta leather handles and trim \n• Alcantara Lining & Dual Interior Pockets\n• Zip Closure at Top\n• Protective Feet at Base! a unique feature of this limited collection. \n• Includes original Lock & Keys plus non-LV high quality NEW adjustable wide vachetta strap plus NEW bag organizer, strap measure 39-47 (1in width) and has a shoulder pad. \n\nBag will not have a dust bag but I will include a new LV orange shopping bag with it for easy gifting!\n\nOverall in very good preowned condition. Only minor scratches and flaws from lite wear. Couple of pen marks inside. Bag has been recently thoroughly cleaned and conditioned.",
"country": "US",
"discount": {
"originalPrice": {
"cents": 131250,
"currency": "USD"
},
"ranges": [
"20%"
],
"percent": 24
},
"colors": {
"originalId": 8,
"all": [
{
"id": 8,
"name": "Brown"
}
]
},
"localEligible": true,
"directShippingEligible": true,
"editorPicks": {
"vintage": false,
"weLove": true,
"hot": false,
"dealEligible": true,
"exceptionalPieces": false
},
"likes": 25,
"link": "/women-bags/handbags/louis-vuitton/brown-leather-speedy-bandouliere-louis-vuitton-handbag-38102830.shtml",
"model": {
"id": 2089,
"name": "Speedy Bandoulière"
},
"pictures": [
"/produit/38102830-1_2.jpg"
],
"price": {
"cents": 99750,
"currency": "USD"
},
"seller": {
"id": 19887757,
"firstname": "Natalia",
"badge": "Expert",
"picture": "/cdn-cgi/image/f=auto/profil/19887757-9c61b18549c17af1436af33d327020ea.jpg",
"isOfficialStore": false
},
"sold": false,
"stock": false,
"shouldBeGone": false,
"createdAt": 1698697029,
"universeId": 1,
"dutyFree": true
},
{
"id": 38621870,
"brand": {
"id": 17,
"name": "Louis Vuitton"
},
"name": "Pallas leather wallet",