diff --git a/fashionphile-scraper/fashionphile.py b/fashionphile-scraper/fashionphile.py index 5bd69e0..cc4480f 100644 --- a/fashionphile-scraper/fashionphile.py +++ b/fashionphile-scraper/fashionphile.py @@ -10,8 +10,8 @@ from typing import Dict, List from pathlib import Path from loguru import logger as log -from urllib.parse import parse_qs, urlencode, urlparse -from scrapfly import ScrapeConfig, ScrapflyClient, ScrapeApiResponse +import re +from scrapfly import ScrapeConfig, ScrapflyClient SCRAPFLY = ScrapflyClient(key=os.environ["SCRAPFLY_KEY"]) @@ -20,61 +20,153 @@ "asp": True, # set the proxy country to US "country": "US", + "render_js": True, } output = Path(__file__).parent / "results" output.mkdir(exist_ok=True) -def find_hidden_data(result: ScrapeApiResponse) -> dict: - """extract hidden NEXT_DATA from page html""" - data = result.selector.css("script#__NEXT_DATA__::text").get() - data = json.loads(data) - return data +def convert_to_json_urls(urls): + converted = [] + for url in urls: + # Replace '/p/' with '/products/' and add '.json' at the end + new_url = url.replace("/p/", "/products/") + ".json" + converted.append(new_url) + return converted -async def scrape_products(urls: List[str]) -> dict: - """scrape fashionphile product pages for product data""" +async def scrape_products(urls: List[str]) -> List[Dict]: + """ + Scrape product data from Fashionphile product pages using the product API. + """ + urls = convert_to_json_urls(urls) to_scrape = [ScrapeConfig(url, **BASE_CONFIG) for url in urls] products = [] async for response in SCRAPFLY.concurrent_scrape(to_scrape): - data = find_hidden_data(response) - product = data["props"]["pageProps"]["initialState"]["productPageReducer"]["productData"] - products.append(product) - log.success(f"scraped {len(products)} product listings from product pages") + # Extract just the product data from the JSON content + content = response.result['result']['content'] + product_data = json.loads(content)['product'] + products.append(product_data) + log.success(f"scraped {len(products)} product listings from product pages") return products -def update_url_parameter(url, **params): - """update url query parameter of an url with new values""" - current_params = parse_qs(urlparse(url).query) - updated_query_params = urlencode({**current_params, **params}, doseq=True) - return f"{url.split('?')[0]}?{updated_query_params}" +def parse_price(price_text: str) -> int: + if not price_text: + return 0 + # Remove $ and commas, convert to int + return int(re.sub(r'[$,]', '', price_text.strip())) + + +def extract_product_from_card(card_selector) -> Dict: + """Extract product data from a product card HTML element""" + + # Get product ID from data attribute + product_id = card_selector.css('::attr(data-product-id)').get('') + + # Get brand name + brand_name = card_selector.css('.fp-card__vendor::text').get('').strip() + + # Get product name + product_name = card_selector.css('.fp-card__link__product-name::text').get('').strip() + + # Get condition + condition = card_selector.css('.fp-condition::text').get('').strip() + + # Get prices + regular_price_text = card_selector.css('.price-item--regular::text').get('').strip() + sale_price_text = card_selector.css('.price-item--sale.price-item--last::text').get('').strip() + + # If no sale price, use regular price as final price + if sale_price_text: + price_text = sale_price_text + elif regular_price_text: + price_text = regular_price_text + else: + # Fallback: try to find any price + price_text = card_selector.css('.price-item::text').get('$0').strip() + + price = parse_price(price_text) + + # Calculate discounted price + if regular_price_text and sale_price_text: + regular = parse_price(regular_price_text) + discounted_price = regular - price + else: + discounted_price = 0 + + + # Build result matching search_schema + result = { + "brand_name": brand_name, + "product_name" : product_name, + "condition": condition, + "discounted_price": discounted_price, + "price": price, + "id": int(product_id) if product_id else 0 + } + + return result async def scrape_search(url: str, max_pages: int = 10) -> List[Dict]: - log.info(f"scraping search page {url}") - # scrape first page + # Scrape first page result_first_page = await SCRAPFLY.async_scrape(ScrapeConfig(url, **BASE_CONFIG)) - data_first_page = find_hidden_data(result_first_page) - data_first_page = data_first_page["props"]["pageProps"]["serverState"]["initialResults"][ - "prod_ecom_products_date_desc" - ]["results"][0] - results = data_first_page["hits"] - - # find total page count - total_pages = data_first_page["nbPages"] + selector = result_first_page.selector + + # Find all product cards + product_cards = selector.css('.fp-algolia-product-card') + log.info(f"found {len(product_cards)} products on first page") + + # Extract data from each card + results = [] + for card in product_cards: + try: + product_data = extract_product_from_card(card) + results.append(product_data) + except Exception as e: + log.warning(f"failed to extract product: {e}") + continue + + # Find total pages from pagination + pagination_href = selector.css('.ais-Pagination-item--lastPage a::attr(href)').get('') + if pagination_href: + match = re.search(r'page=(\d+)', pagination_href) + if match: + total_pages = int(match.group(1)) + else: + total_pages = 1 + else: + total_pages = 1 + if max_pages and max_pages < total_pages: total_pages = max_pages - - # scrape remaining pages - log.info(f"scraping search pagination ({total_pages-1} more pages)") - to_scrape = [ - ScrapeConfig(update_url_parameter(url, page=page), **BASE_CONFIG) for page in range(2, total_pages + 1) - ] - async for result in SCRAPFLY.concurrent_scrape(to_scrape): - data = find_hidden_data(result) - data = data["props"]["pageProps"]["serverState"]["initialResults"]["prod_ecom_products_date_desc"]["results"][0] - results.extend(data["hits"]) - log.success(f"scraped {len(results)} product listings from search pages") - return results + + log.info(f"total pages: {total_pages}") + + # Scrape remaining pages + if total_pages > 1: + log.info(f"scraping pagination ({total_pages-1} more pages)") + + # Build URLs for remaining pages + base_url = url.split('?')[0] + to_scrape = [] + for page in range(2, total_pages + 1): + page_url = f"{base_url}?page={page}" + to_scrape.append(ScrapeConfig(page_url, **BASE_CONFIG)) + + # Scrape concurrently + async for result in SCRAPFLY.concurrent_scrape(to_scrape): + product_cards = result.selector.css('.fp-algolia-product-card') + + for card in product_cards: + try: + product_data = extract_product_from_card(card) + results.append(product_data) + except Exception as e: + log.warning(f"failed to extract product: {e}") + continue + + log.info(f"scraped {len(results)} product listings from search pages") + return results \ No newline at end of file diff --git a/fashionphile-scraper/results/products.json b/fashionphile-scraper/results/products.json index eda8b06..d33f6d8 100644 --- a/fashionphile-scraper/results/products.json +++ b/fashionphile-scraper/results/products.json @@ -1,3069 +1,566 @@ [ { - "id": 1048096, - "sku": "BW", - "title": "BOTTEGA VENETA Nappa Twisted Padded Intrecciato Curve Slide Sandals 36 Black", - "slug": "/p/bottega-veneta-nappa-twisted-padded-intrecciato-curve-slide-sandals-36-black-1048096", - "price": 450, - "salePrice": 450, - "retailPrice": 1650, - "discountedPrice": 450, - "discountEnabled": 1, - "discountedTier": 0, - "isSuperSale": false, - "madeAvailableAt": "2023-09-05T11:38:08.000Z", - "madeAvailableAtUTC": "2023-09-05 11:38:08", - "length": null, - "width": null, - "height": null, - "drop": null, - "weight": null, - "season": null, - "year": null, - "yearIsDecade": 0, - "location": "Carlsbad, CA", - "searchTermList": [ - { - "searchTerms": "Bottega Veneta Shoes", - "slug": "bottega-veneta-shoes", - "sortOrder": "" + "id": 10648212373807, + "title": "Monogram Multicolor Lodge GM Black", + "body_html": "This is an authentic LOUIS VUITTON Monogram Multicolor Lodge GM in Black. This chic shoulder bag is expertly crafted of multicolore Louis Vuitton monogram in 33 vivid colors on black toile canvas. The bag features two front external pockets, a vachetta cowhide leather shoulder strap and trim with polished brass hardware. The top zipper opens to a taupe microfiber interior with a patch pocket.", + "vendor": "Louis Vuitton", + "product_type": "Bags", + "created_at": "2025-06-14T23:36:45-07:00", + "handle": "louis-vuitton-monogram-multicolor-lodge-gm-black-1242632", + "updated_at": "2025-10-16T14:53:08-07:00", + "published_at": "2025-06-14T23:36:47-07:00", + "template_suffix": null, + "published_scope": "global", + "tags": "", + "variants": [ + { + "id": 51507420660015, + "product_id": 10648212373807, + "title": "Default Title", + "price": "880.00", + "sku": "3103", + "position": 1, + "compare_at_price": "1465.00", + "fulfillment_service": "manual", + "inventory_management": "shopify", + "option1": "Default Title", + "option2": null, + "option3": null, + "created_at": "2025-06-14T23:36:46-07:00", + "updated_at": "2025-10-16T14:53:08-07:00", + "taxable": true, + "barcode": "000012426324", + "grams": 0, + "image_id": null, + "weight": 0.0, + "weight_unit": "lb", + "requires_shipping": true, + "quantity_rule": { + "min": 1, + "max": null, + "increment": 1 + }, + "price_currency": "USD", + "compare_at_price_currency": "USD", + "quantity_price_breaks": [] } ], - "condition": "Excellent", - "conditionValue": "excellent", - "conditions": [ - "scuffs", - "imprints", - "marks on sole(s)" - ], - "prettyConditions": null, - "productColors": null, - "productColorsAndQuantitiesMap": null, - "isFashionphileMerchandise": false, - "isSwagItem": false, - "isGiftCard": false, - "isQualifiedForLayaway": false, - "isTooNewForLayaway": false, - "isEligibleForBuyBack": false, - "isJewelry": false, - "locationDetails": { - "id": 6, - "title": "FASHIONPHILE Flagship San Diego (Carlsbad) ", - "customerTitle": "San Diego Flagship", - "marketingTitle": "San Diego Flagship", - "phoneNumber": "1 (760) 932-4874", - "street": "6359 Paseo Del Lago", - "city": "Carlsbad", - "stateShortCode": "CA", - "zipcode": "92011", - "googleCid": "13404657155706911717", - "address": { - "lon": -117.284, - "lat": 33.1167 - }, - "hoursOfOperation": "Monday: 9AM - 5PM\nTuesday: 9AM - 5PM\nWednesday: 9AM - 5PM\nThursday: 9AM - 5PM\nFriday: 9AM - 5PM\nSaturday: 10AM - 6PM\nSunday: Closed", - "servicesOffered": [ - { - "title": "Location Service - Shop", - "serviceHeadline": "Shop", - "serviceDescription": "From your following list to your fingertips. Browse a select inventory of authenticated pre-owned handbags, jewelry, watches and accessories in-person, from brands like Louis Vuitton, Chanel and Saint Laurent.", - "tileImage": { - "title": "Shop", - "description": "Woman holding Chanel and Hermes handbags", - "file": { - "url": "//images.ctfassets.net/nh92jw72tw1h/MRhkLAKJgXfSMWmjuklra/52736248e2365c9fcb1e14cec313d47c/location_Shop.jpg", - "details": { - "size": 121613, - "image": { - "width": 804, - "height": 603 - } - }, - "fileName": "location_Shop.jpg", - "contentType": "image/jpeg" - } - } - }, - { - "title": "Location Service - Sell", - "serviceHeadline": "Sell", - "serviceDescription": "Some of the best brands to sell are Chanel, Cartier and Hermes. Make an appointment at one of our locations to turn your ultra-luxury accessories into money in your pocket.", - "tileImage": { - "title": "Sell Tile image", - "description": "A woman holding a silver YSL handbag.", - "file": { - "url": "//images.ctfassets.net/nh92jw72tw1h/2aOYZVMzxfVXEfNT5EN0zm/57d38a5309004f589d5c56829aaa664b/location_Sell.jpg", - "details": { - "size": 64982, - "image": { - "width": 804, - "height": 603 - } - }, - "fileName": "location_Sell.jpg", - "contentType": "image/jpeg" - } - } - }, - { - "title": "FASHIONPHILE Certified", - "serviceHeadline": "FASHIONPHILE Certified", - "serviceDescription": "Flagship appointment service. Certify your ultra-luxury investments with a FASHIONPHILE Certificate of Authenticity.", - "tileImage": { - "title": "FASHIONPHILE Certified Location Page Tile", - "description": "Green Hermes Bag", - "file": { - "url": "//images.ctfassets.net/nh92jw72tw1h/47QPp7HR8AT4OdCW4ZzqXd/05baeb9d61b2d96082eb07f9f43793f7/LocationPage_CertifiedTile.jpg", - "details": { - "size": 60475, - "image": { - "width": 804, - "height": 603 - } - }, - "fileName": "LocationPage_CertifiedTile.jpg", - "contentType": "image/jpeg" - } - } - }, - { - "title": "Location Services - Dropoff", - "serviceHeadline": "Drop off", - "serviceDescription": "Save yourself a trip to the Post Office and drop off your quoted items at your nearest location.", - "tileImage": { - "title": "Drop off image", - "description": "Hand holding Louis Vuitton and Gucci handbags", - "file": { - "url": "//images.ctfassets.net/nh92jw72tw1h/1atlQKZdYh9bioLLLe8Wpf/64c3058347a3df02830af66d7120d75a/location_DropOff.jpg", - "details": { - "size": 139105, - "image": { - "width": 804, - "height": 603 - } - }, - "fileName": "location_DropOff.jpg", - "contentType": "image/jpeg" - } - } - }, - { - "title": "Location Service - Returns", - "serviceHeadline": "Returns", - "serviceDescription": "We want you to love what you buy, which is why we make returns easy. Bring any qualifying returns to this location so you can get back to finding your next Holy Grail accessory.", - "tileImage": { - "title": "Returns image", - "description": "An image of a white Christian Dior Saddle bag in a box.", - "file": { - "url": "//images.ctfassets.net/nh92jw72tw1h/BT6vOUkGxhtaBWj4A2fkm/1556da36def4ba910770e1e29e282c31/location_Returns.jpg", - "details": { - "size": 90446, - "image": { - "width": 804, - "height": 603 - } - }, - "fileName": "location_Returns.jpg", - "contentType": "image/jpeg" - } - } - }, - { - "title": "Location Service - Pick up", - "serviceHeadline": "Pick up", - "serviceDescription": "Got your eye on something but won’t be home to sign for it? No problem! We’ll ship it to a location near you for you to pick up! Simply choose the “Pick up” option at checkout and we’ll let you know as soon as it arrives.", - "tileImage": { - "title": "Pickup", - "description": "Image of person holding Fashionphile SWAG tote", - "file": { - "url": "//images.ctfassets.net/nh92jw72tw1h/XJIzkCHMLLKasfgSeXvVI/0366ae6a637c34d74ed2c49fad9e19c3/location_PickUp.jpg", - "details": { - "size": 76745, - "image": { - "width": 804, - "height": 603 - } - }, - "fileName": "location_PickUp.jpg", - "contentType": "image/jpeg" - } - } - } - ], - "walkInDescription": " Shopping walk-ins welcome, selling appointments recommended, FASHIONPHILE Certified by appointment only. Call to book your appointment. ", - "citySlug": "carlsbad", - "zipCodeSlug": "92011", - "neimanMarcusLocationDetails": "N/A", - "slug": "san-diego-flagship", - "heroImage": { - "metadata": { - "tags": [], - "concepts": [] - }, - "sys": { - "space": { - "sys": { - "type": "Link", - "linkType": "Space", - "id": "nh92jw72tw1h" - } - }, - "id": "5kNfWlwoXH1thueg5Cet3a", - "type": "Asset", - "createdAt": "2025-03-25T22:34:42.500Z", - "updatedAt": "2025-03-25T22:34:42.500Z", - "environment": { - "sys": { - "id": "master", - "type": "Link", - "linkType": "Environment" - } - }, - "publishedVersion": 3, - "revision": 1, - "locale": "en-US" - }, - "fields": { - "title": "SD Flagship Slider 4", - "description": "", - "file": { - "url": "//images.ctfassets.net/nh92jw72tw1h/5kNfWlwoXH1thueg5Cet3a/b3273f4ecfdd626e15f383cbc1b7e0f9/SD_Flagship_Slider_4.jpg", - "details": { - "size": 1494144, - "image": { - "width": 2432, - "height": 754 - } - }, - "fileName": "SD Flagship Slider 4.jpg", - "contentType": "image/jpeg" - } - } - }, - "heroMobileImage": { - "metadata": { - "tags": [], - "concepts": [] - }, - "sys": { - "space": { - "sys": { - "type": "Link", - "linkType": "Space", - "id": "nh92jw72tw1h" - } - }, - "id": "ztVXOQvPxhjTnn3YwcOgd", - "type": "Asset", - "createdAt": "2025-03-25T23:05:25.362Z", - "updatedAt": "2025-03-25T23:05:25.362Z", - "environment": { - "sys": { - "id": "master", - "type": "Link", - "linkType": "Environment" - } - }, - "publishedVersion": 3, - "revision": 1, - "locale": "en-US" - }, - "fields": { - "title": "Location List 2X 1 (4)", - "description": "", - "file": { - "url": "//images.ctfassets.net/nh92jw72tw1h/ztVXOQvPxhjTnn3YwcOgd/9f432b333f72aa058e5de1fe10e0f08d/Location_List_2X_1__4_.jpg", - "details": { - "size": 612913, - "image": { - "width": 1174, - "height": 554 - } - }, - "fileName": "Location_List_2X_1 (4).jpg", - "contentType": "image/jpeg" - } - } - }, - "type": "flagship", - "metaTitle": "San Diego Flagship | FASHIONPHILE", - "metaDescription": "Visit FASHIONPHILE’s San Diego Flagship Location and sell us your pre-owned designer handbag or ultra-luxury accessory. You can also experience all of the services only available at a FASHIONPHILE Flagship location!", - "metaOgImage": { - "metadata": { - "tags": [], - "concepts": [] - }, - "sys": { - "space": { - "sys": { - "type": "Link", - "linkType": "Space", - "id": "nh92jw72tw1h" - } - }, - "id": "1HvsVyrHddLXIZM7mjUcx9", - "type": "Asset", - "createdAt": "2025-03-25T23:09:18.507Z", - "updatedAt": "2025-03-25T23:09:18.507Z", - "environment": { - "sys": { - "id": "master", - "type": "Link", - "linkType": "Environment" - } - }, - "publishedVersion": 3, - "revision": 1, - "locale": "en-US" - }, - "fields": { - "title": "Location List 2X 1 (4)", - "description": "", - "file": { - "url": "//images.ctfassets.net/nh92jw72tw1h/1HvsVyrHddLXIZM7mjUcx9/f4d457ea45adc46dd719a3622106b3da/Location_List_2X_1__4_.jpg", - "details": { - "size": 612913, - "image": { - "width": 1174, - "height": 554 - } - }, - "fileName": "Location_List_2X_1 (4).jpg", - "contentType": "image/jpeg" - } - } - } - }, - "description": "This is an authentic pair of BOTTEGA VENETA Nappa Intrecciato Padded BV Curve Sandals size 36 in Black. These stylish strappy sandals are crafted of padded and twisted Intrecciato leather in black. These heels feature interwoven strap detailing and a 4-inch heel.", - "exteriorDescription": null, - "handleDescription": null, - "interiorDescription": null, - "hardwareDescription": null, - "conditionDescription": null, - "brand": [ - { - "id": 89, - "shopify_id": null, - "name": "Bottega Veneta", - "slug": "bottega-veneta", - "type": "brand", - "description": "Shop authentic used Bottega Veneta shoes & handbags at a discounted price. FASHIONPHILE has the largest selection of used Bottega Veneta on sale online.", - "title": "Shop Bottega Veneta | Cassette, Jodie, & Pouch Handbags | FASHIONPHILE", - "parent_id": null, - "classification": "0", - "bio": "Bottega Veneta (translated as “Venetian shop”) is a luxury fashion house that was established in 1966 by Michele Taddei and Renzo Zengiaro. Best known for its leather goods, Bottega Veneta developed their own weaving method, called “intrecciato,” that crosses the leather in a braid-like pattern. This interwoven design would become the brand’s trademark. It was the beautifully handcrafted designs and the quality of their materials, which were further accentuated by an unassuming and logo-less design, that gained Bottega Veneta notoriety in those early years. \r\n\r\nCo-founder Renzo Zengiaro left Bottega Veneta in the late 1970s, with Michele Taddei following suit a few years later. Taddei’s ex-wife, Laura Moltedo, and her husband Vittorio moved from the States to Italy to take ownership of the company. \r\n\r\nThe decade of the 1980s saw the rise of Bottega Veneta’s popularity among celebrities around the world. Andy Warhol was one of Bottega Veneta’s most fervent fans, and the famous artist even made a short film to advertise the brand. But despite these efforts, the company took a financial downturn. In response, Bottega Veneta changed its design in the 1990s to one that more directly reflected the trends of the time.\r\n\r\nThe Gucci Group bought Bottega Veneta in 2001, with German fashion designer Tomas Maier as the company’s new Creative Director. He presented his first collection that year as the brand’s 2002 Spring/Summer Collection. Formerly affiliated with prestigious fashion houses Sonia Rykiel and Hermès, Maier brought his vast experience to Bottega Veneta and worked to restore the brand’s original and distinctive identity. To bring this about, Maier made the decision to strip any visible logos from products and include more of the brand’s original handcrafted work, including the intrecciato weave that formerly characterized the brand. These changes worked and the Bottega Veneta company, and image, was revived.\r\n\r\nBottega Veneta began introducing new additions to its existing lines, including fine jewelry and fragrance as well as handbags, small leather goods, shoes, gifts, and even home furniture. In 2005, the company released a women’s ready-to-wear line — the brand’s first — and followed it up with a men’s line in 2006. That same year, the company opened the Scuola della Pelletteria, a training school with the purpose of supporting the dwindling number of leatherworkers dedicated to the art of handcrafted design. It is from this school that the brand will select future leather artisans for Bottega Veneta. \r\n\r\nThough Bottega Veneta offers an assortment of clothing, fragrances, and home furnishings, their leather goods remain the company’s specialty. Bottega Veneta handbags, with their quintessential interwoven straps of leather, are considered by many as the height of sophistication.\r\n", - "is_feature": 0, - "is_enabled_for_quotes": 1, - "quote_image_angles": "", - "is_outlet_brand": 0, - "is_eligible_for_buyback": 1, - "created_at": "2016-03-29T11:25:43.000Z", - "updated_at": "2022-05-20T16:03:24.000Z", - "deleted_at": null, - "is_enabled_for_authentication_prediction": 0, - "productId": 1048096 - } - ], - "measurements": [ - { - "id": 5135876, - "product_id": 1048096, - "type": "size", - "unit": "EU", - "value": "36.00", - "adjustment_value": null - }, - { - "id": 5135877, - "product_id": 1048096, - "type": "heel", - "unit": "in", - "value": "4.00", - "adjustment_value": null + "options": [ + { + "id": 13155872604463, + "product_id": 10648212373807, + "name": "Title", + "position": 1, + "values": [ + "Default Title" + ] } ], - "shipsWith": "2 dust bags, box", - "designerId": "", - "color": "Black", - "brandName": "Bottega Veneta", - "categories": [ - { - "id": 168, - "name": "Shoes", - "slug": "shoes", - "type": "category", - "parent_id": 164 - }, - { - "id": 706, - "name": "Alfresco Accents", - "slug": "summer-accessories", - "type": "category", - "parent_id": 388 - }, - { - "id": 677, - "name": "Our Gift to You", - "slug": "our-gift-to-you", - "type": "category", - "parent_id": 388 - }, - { - "id": 419, - "name": "RSVP-Worthy", - "slug": "holiday-party-looks", - "type": "category", - "parent_id": 388 - }, - { - "id": 680, - "name": "Spring Refresh Offer", - "slug": "spring-refresh-offer", - "type": "category", - "parent_id": 388 - }, - { - "id": 679, - "name": "Vacation Vibes", - "slug": "vacation-mode", - "type": "category", - "parent_id": 388 - }, - { - "id": 624, - "name": "Woven Accents", - "slug": "woven-accessories", - "type": "category", - "parent_id": 388 - }, - { - "id": 192, - "name": "Black", - "slug": "black", - "type": "category", - "parent_id": 191 - }, - { - "id": 205, - "name": "Leather", - "slug": "leather", - "type": "category", - "parent_id": 204 - }, - { - "id": 323, - "name": "Solid Color", - "slug": "solid-color", - "type": "category", - "parent_id": 204 - }, - { - "id": 350, - "name": "36", - "slug": "36", - "type": "category", - "parent_id": 347 - }, - { - "id": 380, - "name": "Pumps", - "slug": "pumps-shoes", - "type": "category", - "parent_id": 377 - }, - { - "id": 381, - "name": "Sandals", - "slug": "sandals-shoes", - "type": "category", - "parent_id": 377 - }, - { - "id": 164, - "name": "Accessories", - "slug": "accessories", - "type": "category", - "parent_id": null - }, - { - "id": 89, - "name": "Bottega Veneta", - "slug": "bottega-veneta", - "type": "brand", - "parent_id": null - }, - { - "id": 451, - "name": "Spring Style", - "slug": "spring-style", - "type": "category", - "parent_id": 388 - }, - { - "id": 568, - "name": "Over 50% off Retail", - "slug": "50-off-retail", - "type": "category", - "parent_id": 388 - }, - { - "id": 763, - "name": "Summer Kickoff Sale", - "slug": "summer-kickoff-sale", - "type": "category", - "parent_id": 388 - }, - { - "id": 765, - "name": "Take 10 Sale", - "slug": "take-10-sale", - "type": "category", - "parent_id": 388 - } - ], - "isExcludedFromPromo": true, - "subCategories": [ - "Shoes", - "Alfresco Accents", - "Our Gift to You", - "RSVP-Worthy", - "Spring Refresh Offer", - "Vacation Vibes", - "Woven Accents", - "Black", - "Leather", - "Solid Color", - "36", - "Pumps", - "Sandals", - "Spring Style", - "Over 50% off Retail", - "Summer Kickoff Sale", - "Take 10 Sale" - ], - "giftable": false, - "lastCall": false, - "featuredImage": { - "large": "https://prod-images.fashionphile.com/large/06c36eb9816bf3e6be63834eb7d33200/eaa3a63349a686dadb8198c8cdabc386.jpg", - "main": "https://prod-images.fashionphile.com/main/06c36eb9816bf3e6be63834eb7d33200/eaa3a63349a686dadb8198c8cdabc386.jpg", - "thumb": "https://prod-images.fashionphile.com/thumb/06c36eb9816bf3e6be63834eb7d33200/eaa3a63349a686dadb8198c8cdabc386.jpg" - }, "images": [ { - "thumb": "https://prod-images.fashionphile.com/thumb/06c36eb9816bf3e6be63834eb7d33200/eaa3a63349a686dadb8198c8cdabc386.jpg", - "main": "https://prod-images.fashionphile.com/main/06c36eb9816bf3e6be63834eb7d33200/eaa3a63349a686dadb8198c8cdabc386.jpg", - "large": "https://prod-images.fashionphile.com/large/06c36eb9816bf3e6be63834eb7d33200/eaa3a63349a686dadb8198c8cdabc386.jpg", - "altText": "Bottega Veneta undefined image 1 of 10" - }, - { - "thumb": "https://prod-images.fashionphile.com/thumb/06c36eb9816bf3e6be63834eb7d33200/609f080b0b90e1d9a8e6d2b4b164ac91.jpg", - "main": "https://prod-images.fashionphile.com/main/06c36eb9816bf3e6be63834eb7d33200/609f080b0b90e1d9a8e6d2b4b164ac91.jpg", - "large": "https://prod-images.fashionphile.com/large/06c36eb9816bf3e6be63834eb7d33200/609f080b0b90e1d9a8e6d2b4b164ac91.jpg", - "altText": "Bottega Veneta undefined image 2 of 10" - }, - { - "thumb": "https://prod-images.fashionphile.com/thumb/06c36eb9816bf3e6be63834eb7d33200/7babd761c2efc32c7949579820f7e732.jpg", - "main": "https://prod-images.fashionphile.com/main/06c36eb9816bf3e6be63834eb7d33200/7babd761c2efc32c7949579820f7e732.jpg", - "large": "https://prod-images.fashionphile.com/large/06c36eb9816bf3e6be63834eb7d33200/7babd761c2efc32c7949579820f7e732.jpg", - "altText": "Bottega Veneta undefined image 3 of 10" - }, - { - "thumb": "https://prod-images.fashionphile.com/thumb/06c36eb9816bf3e6be63834eb7d33200/8e3bf43e3fcc1202db72c3693eace5d0.jpg", - "main": "https://prod-images.fashionphile.com/main/06c36eb9816bf3e6be63834eb7d33200/8e3bf43e3fcc1202db72c3693eace5d0.jpg", - "large": "https://prod-images.fashionphile.com/large/06c36eb9816bf3e6be63834eb7d33200/8e3bf43e3fcc1202db72c3693eace5d0.jpg", - "altText": "Bottega Veneta undefined image 4 of 10" - }, - { - "thumb": "https://prod-images.fashionphile.com/thumb/06c36eb9816bf3e6be63834eb7d33200/e144283f721ab625d5d10980d2782f8d.jpg", - "main": "https://prod-images.fashionphile.com/main/06c36eb9816bf3e6be63834eb7d33200/e144283f721ab625d5d10980d2782f8d.jpg", - "large": "https://prod-images.fashionphile.com/large/06c36eb9816bf3e6be63834eb7d33200/e144283f721ab625d5d10980d2782f8d.jpg", - "altText": "Bottega Veneta undefined image 5 of 10" - }, - { - "thumb": "https://prod-images.fashionphile.com/thumb/06c36eb9816bf3e6be63834eb7d33200/902794b1806144a205924db1f4f74bd3.jpg", - "main": "https://prod-images.fashionphile.com/main/06c36eb9816bf3e6be63834eb7d33200/902794b1806144a205924db1f4f74bd3.jpg", - "large": "https://prod-images.fashionphile.com/large/06c36eb9816bf3e6be63834eb7d33200/902794b1806144a205924db1f4f74bd3.jpg", - "altText": "Bottega Veneta undefined image 6 of 10" - }, - { - "thumb": "https://prod-images.fashionphile.com/thumb/06c36eb9816bf3e6be63834eb7d33200/768cda285b970f0f1e1e997698bb8bfa.jpg", - "main": "https://prod-images.fashionphile.com/main/06c36eb9816bf3e6be63834eb7d33200/768cda285b970f0f1e1e997698bb8bfa.jpg", - "large": "https://prod-images.fashionphile.com/large/06c36eb9816bf3e6be63834eb7d33200/768cda285b970f0f1e1e997698bb8bfa.jpg", - "altText": "Bottega Veneta undefined image 7 of 10" - }, - { - "thumb": "https://prod-images.fashionphile.com/thumb/06c36eb9816bf3e6be63834eb7d33200/dd1dca41b0823810c484c91535b7ca4c.jpg", - "main": "https://prod-images.fashionphile.com/main/06c36eb9816bf3e6be63834eb7d33200/dd1dca41b0823810c484c91535b7ca4c.jpg", - "large": "https://prod-images.fashionphile.com/large/06c36eb9816bf3e6be63834eb7d33200/dd1dca41b0823810c484c91535b7ca4c.jpg", - "altText": "Bottega Veneta undefined image 8 of 10" - }, - { - "thumb": "https://prod-images.fashionphile.com/thumb/06c36eb9816bf3e6be63834eb7d33200/b9d9625bfdde85cdd0f679a62d507971.jpg", - "main": "https://prod-images.fashionphile.com/main/06c36eb9816bf3e6be63834eb7d33200/b9d9625bfdde85cdd0f679a62d507971.jpg", - "large": "https://prod-images.fashionphile.com/large/06c36eb9816bf3e6be63834eb7d33200/b9d9625bfdde85cdd0f679a62d507971.jpg", - "altText": "Bottega Veneta undefined image 9 of 10" - }, - { - "thumb": "https://prod-images.fashionphile.com/thumb/06c36eb9816bf3e6be63834eb7d33200/718d97bb4e4f6c3d68b74856430378de.jpg", - "main": "https://prod-images.fashionphile.com/main/06c36eb9816bf3e6be63834eb7d33200/718d97bb4e4f6c3d68b74856430378de.jpg", - "large": "https://prod-images.fashionphile.com/large/06c36eb9816bf3e6be63834eb7d33200/718d97bb4e4f6c3d68b74856430378de.jpg", - "altText": "Bottega Veneta undefined image 10 of 10" - } - ], - "breadcrumbs": [ - { - "label": "Bottega Veneta: All", - "href": "/shop/brands/bottega-veneta" - }, - { - "label": "accessories", - "href": "/shop/categories/accessories?brands=bottega-veneta" - }, - { - "label": "Shoes", - "href": "/shop/accessories/shoes?brands=bottega-veneta" - }, - { - "label": "BOTTEGA VENETA Nappa Twisted Padded Intrecciato Curve Slide Sandals 36 Black" + "id": 52223362466095, + "product_id": 10648212373807, + "position": 1, + "created_at": "2025-07-23T16:17:02-07:00", + "updated_at": "2025-07-23T16:17:05-07:00", + "alt": null, + "width": 1500, + "height": 1500, + "src": "https://cdn.shopify.com/s/files/1/0894/3186/7695/files/2fa5ea726595741748138b9608803a7d.jpg?v=1753312625", + "variant_ids": [] + }, + { + "id": 52223363907887, + "product_id": 10648212373807, + "position": 2, + "created_at": "2025-07-23T16:17:02-07:00", + "updated_at": "2025-07-23T16:17:06-07:00", + "alt": null, + "width": 1500, + "height": 1500, + "src": "https://cdn.shopify.com/s/files/1/0894/3186/7695/files/1c2495f5f37178466445fc0aaae4a5d8.jpg?v=1753312626", + "variant_ids": [] + }, + { + "id": 52223363875119, + "product_id": 10648212373807, + "position": 3, + "created_at": "2025-07-23T16:17:02-07:00", + "updated_at": "2025-07-23T16:17:05-07:00", + "alt": null, + "width": 1500, + "height": 1500, + "src": "https://cdn.shopify.com/s/files/1/0894/3186/7695/files/e587256629b46a6c887edb47c7a9dce3.jpg?v=1753312625", + "variant_ids": [] + }, + { + "id": 52223364530479, + "product_id": 10648212373807, + "position": 4, + "created_at": "2025-07-23T16:17:02-07:00", + "updated_at": "2025-07-23T16:17:06-07:00", + "alt": null, + "width": 1500, + "height": 1500, + "src": "https://cdn.shopify.com/s/files/1/0894/3186/7695/files/63949c4526c68d921cf30bed51ce51c3.jpg?v=1753312626", + "variant_ids": [] + }, + { + "id": 52223364727087, + "product_id": 10648212373807, + "position": 5, + "created_at": "2025-07-23T16:17:02-07:00", + "updated_at": "2025-07-23T16:17:06-07:00", + "alt": null, + "width": 1500, + "height": 1500, + "src": "https://cdn.shopify.com/s/files/1/0894/3186/7695/files/b9d075b47545b6b38e7a54f57b59a907.jpg?v=1753312626", + "variant_ids": [] + }, + { + "id": 52223363940655, + "product_id": 10648212373807, + "position": 6, + "created_at": "2025-07-23T16:17:02-07:00", + "updated_at": "2025-07-23T16:17:06-07:00", + "alt": null, + "width": 1500, + "height": 1500, + "src": "https://cdn.shopify.com/s/files/1/0894/3186/7695/files/830baa0e78b9ab1680f22fc7bd86b49a.jpg?v=1753312626", + "variant_ids": [] + }, + { + "id": 52223364464943, + "product_id": 10648212373807, + "position": 7, + "created_at": "2025-07-23T16:17:02-07:00", + "updated_at": "2025-07-23T16:17:06-07:00", + "alt": null, + "width": 1500, + "height": 1500, + "src": "https://cdn.shopify.com/s/files/1/0894/3186/7695/files/4e11312c7a8d0e5573ad407dc426170f.jpg?v=1753312626", + "variant_ids": [] + }, + { + "id": 52223364628783, + "product_id": 10648212373807, + "position": 8, + "created_at": "2025-07-23T16:17:02-07:00", + "updated_at": "2025-07-23T16:17:06-07:00", + "alt": null, + "width": 1500, + "height": 1500, + "src": "https://cdn.shopify.com/s/files/1/0894/3186/7695/files/89b32612c2a14e7ca06f6141e3fe2946.jpg?v=1753312626", + "variant_ids": [] } ], - "primaryCategory": "Shoes", - "conditionsMap": { - "interior": [ - "scuffs", - "imprints" - ], - "other": [ - "marks on sole(s)" - ] - }, - "findAnotherLink": "/shop?categories=shoes+summer-accessories+our-gift-to-you+holiday-party-looks+spring-refresh-offer+vacation-mode+woven-accessories+black+leather+solid-color+36+pumps-shoes+sandals-shoes+spring-style+50-off-retail+summer-kickoff-sale+take-10-sale", - "isWatch": false, - "isPurchasable": false, - "retailActive": false, - "parentCategory": "Accessories", - "daysOnSale": 5, - "comingSoon": false, - "recommendedProducts": [], - "brandUrl": "/shop/brands/bottega-veneta", - "isSizeRef": false, - "conditionsText": "scuffs, imprints, marks on sole(s)", - "discount": null, - "dos": 0, - "shipsWithList": [ - "2 dust bags", - " box" - ], - "titleWithoutBrand": " Nappa Twisted Padded Intrecciato Curve Slide Sandals 36 Black", - "oldSlug": "bottega-veneta-nappa-twisted-padded-intrecciato-curve-slide-sandals-36-black-1048096", - "layawayDownpaymentAmount": "$45", - "url": "https://apigateway.fashionphile.com/product/1048096", - "productType": "SOLD_OUT", - "authenticCta": "We guarantee this is an authentic Bottega Veneta item or 100% of your money back. ", - "disclaimer": "Bottega Veneta\n is a registered trademark of\n Bottega Veneta. FASHIONPHILE is not affiliated with\n Bottega Veneta." + "image": { + "id": 52223362466095, + "product_id": 10648212373807, + "position": 1, + "created_at": "2025-07-23T16:17:02-07:00", + "updated_at": "2025-07-23T16:17:05-07:00", + "alt": null, + "width": 1500, + "height": 1500, + "src": "https://cdn.shopify.com/s/files/1/0894/3186/7695/files/2fa5ea726595741748138b9608803a7d.jpg?v=1753312625", + "variant_ids": [] + } }, { - "id": 1242632, - "sku": "BW", - "title": "LOUIS VUITTON Monogram Multicolor Lodge GM Black", - "slug": "/p/louis-vuitton-monogram-multicolor-lodge-gm-black-1242632", - "price": 1465, - "salePrice": 880, - "retailPrice": 0, - "discountedPrice": 880, - "discountEnabled": 1, - "discountedTier": 5, - "isSuperSale": false, - "madeAvailableAt": "2023-06-26T14:59:43.000Z", - "madeAvailableAtUTC": "2023-06-26 14:59:43", - "length": null, - "width": null, - "height": null, - "drop": null, - "weight": null, - "season": null, - "year": 2005, - "yearIsDecade": 0, - "location": "New York, NY", - "searchTermList": [ - { - "searchTerms": "Louis Vuitton Bags", - "slug": "louis-vuitton-bags", - "sortOrder": "1" - }, - { - "searchTerms": "Louis Vuitton on Sale", - "slug": "louis-vuitton-on-sale", - "sortOrder": "1" - }, - { - "searchTerms": "Shoulder Bags on Sale", - "slug": "shoulder-bags-on-sale", - "sortOrder": "" - }, - { - "searchTerms": "Louis Vuitton Crossbody Bags ", - "slug": "louis-vuitton-crossbody-bags", - "sortOrder": "" - }, - { - "searchTerms": "Crossbody Bags on Sale", - "slug": "crossbody-bags-on-sale", - "sortOrder": "" - }, - { - "searchTerms": "Louis Vuitton Shoulder Bags", - "slug": "louis-vuitton-shoulder-bags", - "sortOrder": "" - }, - { - "searchTerms": "Bags on Sale", - "slug": "bags-on-sale", - "sortOrder": "" + "id": 10648379785519, + "title": "Ostrich Lizard Majestueux Tote MM Navy", + "body_html": "This is an authentic LOUIS VUITTON Ostrich Lizard Majestueux Tote MM in Navy. This stylish tote has a body of Louis Vuitton monogram-coated canvas. The bag features rolled lizard top handles with grained burgundy calfskin leather sides. There is a rear zipper pocket and an ostrich front flap with a brass press lock. The top zipper opens to a spacious burgundy leather interior with zipper and patch pockets.", + "vendor": "Louis Vuitton", + "product_type": "Bags", + "created_at": "2025-06-15T00:03:01-07:00", + "handle": "louis-vuitton-ostrich-lizard-majestueux-tote-mm-navy-1247825", + "updated_at": "2025-10-16T14:53:10-07:00", + "published_at": "2025-06-15T00:03:03-07:00", + "template_suffix": null, + "published_scope": "global", + "tags": "", + "variants": [ + { + "id": 51507605537071, + "product_id": 10648379785519, + "title": "Default Title", + "price": "2095.00", + "sku": "10487", + "position": 1, + "compare_at_price": "2095.00", + "fulfillment_service": "manual", + "inventory_management": "shopify", + "option1": "Default Title", + "option2": null, + "option3": null, + "created_at": "2025-06-15T00:03:02-07:00", + "updated_at": "2025-10-16T14:53:10-07:00", + "taxable": true, + "barcode": "000012478255", + "grams": 0, + "image_id": null, + "weight": 0.0, + "weight_unit": "lb", + "requires_shipping": true, + "quantity_rule": { + "min": 1, + "max": null, + "increment": 1 + }, + "price_currency": "USD", + "compare_at_price_currency": "USD", + "quantity_price_breaks": [] } ], - "condition": "Shows Wear", - "conditionValue": "very_good", - "conditions": [ - "residue marks", - "corner wear", - "creases", - "scuffs", - "patina of vachetta", - "edge wear", - "surface wear", - "wear at resin glazing", - "liquid marks", - "sizing marks", - "perfume or cologne odor", - "scratch(es)", - "plating wear", - "marks", - "pocket(s) stretched", - "stain(s)", - "frayed stitch(es)" - ], - "prettyConditions": null, - "productColors": null, - "productColorsAndQuantitiesMap": null, - "isFashionphileMerchandise": false, - "isSwagItem": false, - "isGiftCard": false, - "isQualifiedForLayaway": false, - "isTooNewForLayaway": false, - "isEligibleForBuyBack": true, - "isJewelry": false, - "locationDetails": { - "id": 54, - "title": "FASHIONPHILE Flagship NYC (Chelsea)", - "customerTitle": "NYC Flagship", - "marketingTitle": "NYC Flagship", - "phoneNumber": "1 (332) 330-6133", - "street": "601 West 26TH Street STE 400B", - "street2": "4th Floor", - "city": "New York", - "stateShortCode": "NY", - "zipcode": "10001", - "googleCid": "5909204957846412440", - "address": { - "lon": -74.0071, - "lat": 40.75165 - }, - "hoursOfOperation": "Monday: 10AM - 6PM\nTuesday: 10AM - 6PM\nWednesday: 10AM - 6PM\nThursday: 10AM - 6PM\nFriday: 10AM - 6PM\nSaturday: 10AM - 6PM\nSunday: Closed", - "servicesOffered": [ - { - "title": "Location Service - Shop", - "serviceHeadline": "Shop", - "serviceDescription": "From your following list to your fingertips. Browse a select inventory of authenticated pre-owned handbags, jewelry, watches and accessories in-person, from brands like Louis Vuitton, Chanel and Saint Laurent.", - "tileImage": { - "title": "Shop", - "description": "Woman holding Chanel and Hermes handbags", - "file": { - "url": "//images.ctfassets.net/nh92jw72tw1h/MRhkLAKJgXfSMWmjuklra/52736248e2365c9fcb1e14cec313d47c/location_Shop.jpg", - "details": { - "size": 121613, - "image": { - "width": 804, - "height": 603 - } - }, - "fileName": "location_Shop.jpg", - "contentType": "image/jpeg" - } - } - }, - { - "title": "Location Service - Sell", - "serviceHeadline": "Sell", - "serviceDescription": "Some of the best brands to sell are Chanel, Cartier and Hermes. Make an appointment at one of our locations to turn your ultra-luxury accessories into money in your pocket.", - "tileImage": { - "title": "Sell Tile image", - "description": "A woman holding a silver YSL handbag.", - "file": { - "url": "//images.ctfassets.net/nh92jw72tw1h/2aOYZVMzxfVXEfNT5EN0zm/57d38a5309004f589d5c56829aaa664b/location_Sell.jpg", - "details": { - "size": 64982, - "image": { - "width": 804, - "height": 603 - } - }, - "fileName": "location_Sell.jpg", - "contentType": "image/jpeg" - } - } - }, - { - "title": "FASHIONPHILE Certified", - "serviceHeadline": "FASHIONPHILE Certified", - "serviceDescription": "Flagship appointment service. Certify your ultra-luxury investments with a FASHIONPHILE Certificate of Authenticity.", - "tileImage": { - "title": "FASHIONPHILE Certified Location Page Tile", - "description": "Green Hermes Bag", - "file": { - "url": "//images.ctfassets.net/nh92jw72tw1h/47QPp7HR8AT4OdCW4ZzqXd/05baeb9d61b2d96082eb07f9f43793f7/LocationPage_CertifiedTile.jpg", - "details": { - "size": 60475, - "image": { - "width": 804, - "height": 603 - } - }, - "fileName": "LocationPage_CertifiedTile.jpg", - "contentType": "image/jpeg" - } - } - }, - { - "title": "Location Services - Dropoff", - "serviceHeadline": "Drop off", - "serviceDescription": "Save yourself a trip to the Post Office and drop off your quoted items at your nearest location.", - "tileImage": { - "title": "Drop off image", - "description": "Hand holding Louis Vuitton and Gucci handbags", - "file": { - "url": "//images.ctfassets.net/nh92jw72tw1h/1atlQKZdYh9bioLLLe8Wpf/64c3058347a3df02830af66d7120d75a/location_DropOff.jpg", - "details": { - "size": 139105, - "image": { - "width": 804, - "height": 603 - } - }, - "fileName": "location_DropOff.jpg", - "contentType": "image/jpeg" - } - } - }, - { - "title": "Location Service - Pick up", - "serviceHeadline": "Pick up", - "serviceDescription": "Got your eye on something but won’t be home to sign for it? No problem! We’ll ship it to a location near you for you to pick up! Simply choose the “Pick up” option at checkout and we’ll let you know as soon as it arrives.", - "tileImage": { - "title": "Pickup", - "description": "Image of person holding Fashionphile SWAG tote", - "file": { - "url": "//images.ctfassets.net/nh92jw72tw1h/XJIzkCHMLLKasfgSeXvVI/0366ae6a637c34d74ed2c49fad9e19c3/location_PickUp.jpg", - "details": { - "size": 76745, - "image": { - "width": 804, - "height": 603 - } - }, - "fileName": "location_PickUp.jpg", - "contentType": "image/jpeg" - } - } - }, - { - "title": "Location Service - Returns", - "serviceHeadline": "Returns", - "serviceDescription": "We want you to love what you buy, which is why we make returns easy. Bring any qualifying returns to this location so you can get back to finding your next Holy Grail accessory.", - "tileImage": { - "title": "Returns image", - "description": "An image of a white Christian Dior Saddle bag in a box.", - "file": { - "url": "//images.ctfassets.net/nh92jw72tw1h/BT6vOUkGxhtaBWj4A2fkm/1556da36def4ba910770e1e29e282c31/location_Returns.jpg", - "details": { - "size": 90446, - "image": { - "width": 804, - "height": 603 - } - }, - "fileName": "location_Returns.jpg", - "contentType": "image/jpeg" - } - } - } - ], - "walkInDescription": "Shopping walk-ins welcome, selling appointments recommended, FASHIONPHILE Certified by appointment only. Call to book your appointment. ", - "citySlug": "new-york", - "zipCodeSlug": "10001", - "slug": "chelsea-flagship", - "heroImage": { - "metadata": { - "tags": [], - "concepts": [] - }, - "sys": { - "space": { - "sys": { - "type": "Link", - "linkType": "Space", - "id": "nh92jw72tw1h" - } - }, - "id": "1qDjuxjVjYIx8zDw3Xj4eq", - "type": "Asset", - "createdAt": "2023-10-27T20:19:49.973Z", - "updatedAt": "2023-12-05T23:03:10.617Z", - "environment": { - "sys": { - "id": "master", - "type": "Link", - "linkType": "Environment" - } - }, - "publishedVersion": 14, - "revision": 3, - "locale": "en-US" - }, - "fields": { - "title": "Flagship NYC Desktop", - "description": "", - "file": { - "url": "//images.ctfassets.net/nh92jw72tw1h/1qDjuxjVjYIx8zDw3Xj4eq/99f486d8417f542d32bac6e4ad20735e/chelsea_hero_desktop.jpg", - "details": { - "size": 300221, - "image": { - "width": 2432, - "height": 754 - } - }, - "fileName": "chelsea_hero_desktop.jpg", - "contentType": "image/jpeg" - } - } - }, - "heroMobileImage": { - "metadata": { - "tags": [], - "concepts": [] - }, - "sys": { - "space": { - "sys": { - "type": "Link", - "linkType": "Space", - "id": "nh92jw72tw1h" - } - }, - "id": "7cqAtQMVNyhIriGYafxPtu", - "type": "Asset", - "createdAt": "2023-10-27T20:20:23.589Z", - "updatedAt": "2023-12-05T23:03:47.590Z", - "environment": { - "sys": { - "id": "master", - "type": "Link", - "linkType": "Environment" - } - }, - "publishedVersion": 12, - "revision": 3, - "locale": "en-US" - }, - "fields": { - "title": "Flagship NYC Mobile", - "description": "", - "file": { - "url": "//images.ctfassets.net/nh92jw72tw1h/7cqAtQMVNyhIriGYafxPtu/8bbd4c5902506460ca3319f524e37f62/chelsea_tile_desktop_.jpg", - "details": { - "size": 172840, - "image": { - "width": 1174, - "height": 554 - } - }, - "fileName": "chelsea_tile_desktop_.jpg", - "contentType": "image/jpeg" - } - } - }, - "type": "flagship", - "metaTitle": "NYC Flagship | FASHIONPHILE", - "metaDescription": "Visit FASHIONPHILE’s NYC Flagship Location and sell us your pre-owned designer handbag or ultra-luxury accessory. You can also experience all of the services only available at a FASHIONPHILE Flagship location!", - "metaOgImage": { - "metadata": { - "tags": [], - "concepts": [] - }, - "sys": { - "space": { - "sys": { - "type": "Link", - "linkType": "Space", - "id": "nh92jw72tw1h" - } - }, - "id": "69uyxmrYTkGlq5MuYJ7k97", - "type": "Asset", - "createdAt": "2023-12-05T21:41:33.996Z", - "updatedAt": "2023-12-05T21:41:33.996Z", - "environment": { - "sys": { - "id": "master", - "type": "Link", - "linkType": "Environment" - } - }, - "publishedVersion": 6, - "revision": 1, - "locale": "en-US" - }, - "fields": { - "title": "NYC (Chelsea) Flagship OG Image", - "description": "", - "file": { - "url": "//images.ctfassets.net/nh92jw72tw1h/69uyxmrYTkGlq5MuYJ7k97/b204221652757be721ca8132bcdb649f/chelsea_OG.jpg", - "details": { - "size": 194217, - "image": { - "width": 1200, - "height": 630 - } - }, - "fileName": "chelsea_OG.jpg", - "contentType": "image/jpeg" - } - } - } - }, - "description": "This is an authentic LOUIS VUITTON Monogram Multicolor Lodge GM in Black. This chic shoulder bag is expertly crafted of multicolore Louis Vuitton monogram in 33 vivid colors on black toile canvas. The bag features two front external pockets, a vachetta cowhide leather shoulder strap and trim with polished brass hardware. The top zipper opens to a taupe microfiber interior with a patch pocket.", - "exteriorDescription": null, - "handleDescription": null, - "interiorDescription": null, - "hardwareDescription": null, - "conditionDescription": null, - "brand": [ - { - "id": 107, - "shopify_id": null, - "name": "Louis Vuitton", - "slug": "louis-vuitton", - "type": "brand", - "description": "Shop authentic used Louis Vuitton handbags & accessories at a discounted price. FASHIONPHILE has the largest selection of used Louis Vuitton Speedy, Neverfull, Keepall, & more on sale online.", - "title": "Shop Louis Vuitton | Speedy, Alma, Neverfull & Keepall Handbags | FASHIONPHILE", - "parent_id": null, - "classification": "0", - "bio": "Known for its impeccable style and quality, the Louis Vuitton brand is one highly admired by the fashion world. The company got its start way back in 1854 when the young French designer Louis Vuitton began making his own brand of trunks and luggage, and subsequently expanded the brand’s offering to include various seasonal purses and bags.\r\n\r\nExplore our collection of pre-owned Louis Vuitton and used Louis Vuitton bags, including popular models like the Neverfull, Speedy, Alma, Artsy, Keepall, Mahina, and limited edition lines. You can also shop by textile types, which includes Monogram, Mini Monogram, Damier, Denim, Empreinte, Epi, Multicolore, Suhali, Vernis, and more. You’re sure to find a Louis Vuitton shoulder bag that will fit your style perfectly. Or check out some other accessories, like an authentic Louis Vuitton belt, and add it to your own collection.", - "is_feature": 0, - "is_enabled_for_quotes": 1, - "quote_image_angles": "", - "is_outlet_brand": 0, - "is_eligible_for_buyback": 1, - "created_at": "2016-03-29T11:25:43.000Z", - "updated_at": "2023-11-28T14:20:33.000Z", - "deleted_at": null, - "is_enabled_for_authentication_prediction": 0, - "productId": 1242632 - }, - { - "id": 107, - "shopify_id": null, - "name": "Louis Vuitton", - "slug": "louis-vuitton", - "type": "brand", - "description": "Shop authentic used Louis Vuitton handbags & accessories at a discounted price. FASHIONPHILE has the largest selection of used Louis Vuitton Speedy, Neverfull, Keepall, & more on sale online.", - "title": "Shop Louis Vuitton | Speedy, Alma, Neverfull & Keepall Handbags | FASHIONPHILE", - "parent_id": null, - "classification": "0", - "bio": "Known for its impeccable style and quality, the Louis Vuitton brand is one highly admired by the fashion world. The company got its start way back in 1854 when the young French designer Louis Vuitton began making his own brand of trunks and luggage, and subsequently expanded the brand’s offering to include various seasonal purses and bags.\r\n\r\nExplore our collection of pre-owned Louis Vuitton and used Louis Vuitton bags, including popular models like the Neverfull, Speedy, Alma, Artsy, Keepall, Mahina, and limited edition lines. You can also shop by textile types, which includes Monogram, Mini Monogram, Damier, Denim, Empreinte, Epi, Multicolore, Suhali, Vernis, and more. You’re sure to find a Louis Vuitton shoulder bag that will fit your style perfectly. Or check out some other accessories, like an authentic Louis Vuitton belt, and add it to your own collection.", - "is_feature": 0, - "is_enabled_for_quotes": 1, - "quote_image_angles": "", - "is_outlet_brand": 0, - "is_eligible_for_buyback": 1, - "created_at": "2016-03-29T11:25:43.000Z", - "updated_at": "2023-11-28T14:20:33.000Z", - "deleted_at": null, - "is_enabled_for_authentication_prediction": 0, - "productId": 1242632 - }, - { - "id": 107, - "shopify_id": null, - "name": "Louis Vuitton", - "slug": "louis-vuitton", - "type": "brand", - "description": "Shop authentic used Louis Vuitton handbags & accessories at a discounted price. FASHIONPHILE has the largest selection of used Louis Vuitton Speedy, Neverfull, Keepall, & more on sale online.", - "title": "Shop Louis Vuitton | Speedy, Alma, Neverfull & Keepall Handbags | FASHIONPHILE", - "parent_id": null, - "classification": "0", - "bio": "Known for its impeccable style and quality, the Louis Vuitton brand is one highly admired by the fashion world. The company got its start way back in 1854 when the young French designer Louis Vuitton began making his own brand of trunks and luggage, and subsequently expanded the brand’s offering to include various seasonal purses and bags.\r\n\r\nExplore our collection of pre-owned Louis Vuitton and used Louis Vuitton bags, including popular models like the Neverfull, Speedy, Alma, Artsy, Keepall, Mahina, and limited edition lines. You can also shop by textile types, which includes Monogram, Mini Monogram, Damier, Denim, Empreinte, Epi, Multicolore, Suhali, Vernis, and more. You’re sure to find a Louis Vuitton shoulder bag that will fit your style perfectly. Or check out some other accessories, like an authentic Louis Vuitton belt, and add it to your own collection.", - "is_feature": 0, - "is_enabled_for_quotes": 1, - "quote_image_angles": "", - "is_outlet_brand": 0, - "is_eligible_for_buyback": 1, - "created_at": "2016-03-29T11:25:43.000Z", - "updated_at": "2023-11-28T14:20:33.000Z", - "deleted_at": null, - "is_enabled_for_authentication_prediction": 0, - "productId": 1242632 - } - ], - "measurements": [ - { - "id": 6037154, - "product_id": 1242632, - "type": "base length", - "unit": "in", - "value": "12.75", - "adjustment_value": null - }, - { - "id": 6037155, - "product_id": 1242632, - "type": "height", - "unit": "in", - "value": "8.25", - "adjustment_value": null - }, - { - "id": 6037156, - "product_id": 1242632, - "type": "width", - "unit": "in", - "value": "3.25", - "adjustment_value": null - }, - { - "id": 6037157, - "product_id": 1242632, - "type": "drop", - "unit": "in", - "value": "20.50", - "adjustment_value": null - } - ], - "shipsWith": null, - "designerId": "LM1015", - "color": "Multicolor", - "brandName": "Louis Vuitton", - "categories": [ - { - "id": 192, - "name": "Black", - "slug": "black", - "type": "category", - "parent_id": 191 - }, - { - "id": 215, - "name": "Multicolor", - "slug": "multicolor", - "type": "category", - "parent_id": 191 - }, - { - "id": 184, - "name": "Zip Top", - "slug": "zip-top", - "type": "category", - "parent_id": 182 - }, - { - "id": 210, - "name": "Coated Canvas", - "slug": "coated-canvas", - "type": "category", - "parent_id": 204 - }, - { - "id": 233, - "name": "Handbags", - "slug": "handbags", - "type": "category", - "parent_id": 122 - }, - { - "id": 123, - "name": "Shoulder Bags", - "slug": "shoulder-bags", - "type": "category", - "parent_id": 122 - }, - { - "id": 135, - "name": "Multicolore", - "slug": "multicolore", - "type": "brand", - "parent_id": 107 - }, - { - "id": 122, - "name": "Styles", - "slug": "handbag-styles", - "type": "category", - "parent_id": null - }, - { - "id": 107, - "name": "Louis Vuitton", - "slug": "louis-vuitton", - "type": "brand", - "parent_id": null - }, - { - "id": 135, - "name": "Multicolore", - "slug": "multicolore", - "type": "brand", - "parent_id": 107 - }, - { - "id": 107, - "name": "Louis Vuitton", - "slug": "louis-vuitton", - "type": "brand", - "parent_id": null - }, - { - "id": 107, - "name": "Louis Vuitton", - "slug": "louis-vuitton", - "type": "brand", - "parent_id": null - }, - { - "id": 128, - "name": "Crossbody", - "slug": "cross-body", - "type": "category", - "parent_id": 122 - }, - { - "id": 188, - "name": "Structured", - "slug": "structured", - "type": "category", - "parent_id": 182 - }, - { - "id": 701, - "name": "Street Style Bags", - "slug": "street-style-bags", - "type": "category", - "parent_id": 388 - }, - { - "id": 718, - "name": "OLD - National Handbag Day", - "slug": "national-handbag-day", - "type": "category", - "parent_id": 388 - }, - { - "id": 768, - "name": "OLD - Little Luxuries Sale", - "slug": "little-luxuries-sale", - "type": "category", - "parent_id": 388 - }, - { - "id": 712, - "name": "Vintage Finds", - "slug": "vintage", - "type": "category", - "parent_id": 388 + "options": [ + { + "id": 13156040311087, + "product_id": 10648379785519, + "name": "Title", + "position": 1, + "values": [ + "Default Title" + ] } ], - "isExcludedFromPromo": true, - "subCategories": [ - "Black", - "Multicolor", - "Zip Top", - "Coated Canvas", - "Handbags", - "Shoulder Bags", - "Multicolore", - "Multicolore", - "Crossbody", - "Structured", - "Street Style Bags", - "OLD - National Handbag Day", - "OLD - Little Luxuries Sale", - "Vintage Finds" - ], - "giftable": false, - "lastCall": false, - "featuredImage": { - "large": "https://prod-images.fashionphile.com/large/547fcd78a24672f7683602034e1df190/2fa5ea726595741748138b9608803a7d.jpg", - "main": "https://prod-images.fashionphile.com/main/547fcd78a24672f7683602034e1df190/2fa5ea726595741748138b9608803a7d.jpg", - "thumb": "https://prod-images.fashionphile.com/thumb/547fcd78a24672f7683602034e1df190/2fa5ea726595741748138b9608803a7d.jpg" - }, "images": [ { - "thumb": "https://prod-images.fashionphile.com/thumb/547fcd78a24672f7683602034e1df190/2fa5ea726595741748138b9608803a7d.jpg", - "main": "https://prod-images.fashionphile.com/main/547fcd78a24672f7683602034e1df190/2fa5ea726595741748138b9608803a7d.jpg", - "large": "https://prod-images.fashionphile.com/large/547fcd78a24672f7683602034e1df190/2fa5ea726595741748138b9608803a7d.jpg", - "altText": "Louis Vuitton undefined image 1 of 8" - }, - { - "thumb": "https://prod-images.fashionphile.com/thumb/484307f01e353dd59c0b0a2eefe51aa4/1c2495f5f37178466445fc0aaae4a5d8.jpg", - "main": "https://prod-images.fashionphile.com/main/484307f01e353dd59c0b0a2eefe51aa4/1c2495f5f37178466445fc0aaae4a5d8.jpg", - "large": "https://prod-images.fashionphile.com/large/484307f01e353dd59c0b0a2eefe51aa4/1c2495f5f37178466445fc0aaae4a5d8.jpg", - "altText": "Louis Vuitton undefined image 2 of 8. Model image displays an item of the same style and size. It does not reflect the condition, \"comes with\" items, material, or color of the item. Model is 5ft 8in." - }, - { - "thumb": "https://prod-images.fashionphile.com/thumb/547fcd78a24672f7683602034e1df190/e587256629b46a6c887edb47c7a9dce3.jpg", - "main": "https://prod-images.fashionphile.com/main/547fcd78a24672f7683602034e1df190/e587256629b46a6c887edb47c7a9dce3.jpg", - "large": "https://prod-images.fashionphile.com/large/547fcd78a24672f7683602034e1df190/e587256629b46a6c887edb47c7a9dce3.jpg", - "altText": "Louis Vuitton undefined image 3 of 8" - }, - { - "thumb": "https://prod-images.fashionphile.com/thumb/547fcd78a24672f7683602034e1df190/63949c4526c68d921cf30bed51ce51c3.jpg", - "main": "https://prod-images.fashionphile.com/main/547fcd78a24672f7683602034e1df190/63949c4526c68d921cf30bed51ce51c3.jpg", - "large": "https://prod-images.fashionphile.com/large/547fcd78a24672f7683602034e1df190/63949c4526c68d921cf30bed51ce51c3.jpg", - "altText": "Louis Vuitton undefined image 4 of 8" - }, - { - "thumb": "https://prod-images.fashionphile.com/thumb/547fcd78a24672f7683602034e1df190/b9d075b47545b6b38e7a54f57b59a907.jpg", - "main": "https://prod-images.fashionphile.com/main/547fcd78a24672f7683602034e1df190/b9d075b47545b6b38e7a54f57b59a907.jpg", - "large": "https://prod-images.fashionphile.com/large/547fcd78a24672f7683602034e1df190/b9d075b47545b6b38e7a54f57b59a907.jpg", - "altText": "Louis Vuitton undefined image 5 of 8" - }, - { - "thumb": "https://prod-images.fashionphile.com/thumb/547fcd78a24672f7683602034e1df190/830baa0e78b9ab1680f22fc7bd86b49a.jpg", - "main": "https://prod-images.fashionphile.com/main/547fcd78a24672f7683602034e1df190/830baa0e78b9ab1680f22fc7bd86b49a.jpg", - "large": "https://prod-images.fashionphile.com/large/547fcd78a24672f7683602034e1df190/830baa0e78b9ab1680f22fc7bd86b49a.jpg", - "altText": "Louis Vuitton undefined image 6 of 8" - }, - { - "thumb": "https://prod-images.fashionphile.com/thumb/547fcd78a24672f7683602034e1df190/4e11312c7a8d0e5573ad407dc426170f.jpg", - "main": "https://prod-images.fashionphile.com/main/547fcd78a24672f7683602034e1df190/4e11312c7a8d0e5573ad407dc426170f.jpg", - "large": "https://prod-images.fashionphile.com/large/547fcd78a24672f7683602034e1df190/4e11312c7a8d0e5573ad407dc426170f.jpg", - "altText": "Louis Vuitton undefined image 7 of 8" - }, - { - "thumb": "https://prod-images.fashionphile.com/thumb/547fcd78a24672f7683602034e1df190/89b32612c2a14e7ca06f6141e3fe2946.jpg", - "main": "https://prod-images.fashionphile.com/main/547fcd78a24672f7683602034e1df190/89b32612c2a14e7ca06f6141e3fe2946.jpg", - "large": "https://prod-images.fashionphile.com/large/547fcd78a24672f7683602034e1df190/89b32612c2a14e7ca06f6141e3fe2946.jpg", - "altText": "Louis Vuitton undefined image 8 of 8" - } - ], - "breadcrumbs": [ - { - "label": "Louis Vuitton: All", - "href": "/shop/brands/louis-vuitton" - }, - { - "label": "Bags", - "href": "/shop/categories/handbag-styles?brands=louis-vuitton" - }, - { - "label": "Crossbody", - "href": "/shop/handbag-styles/cross-body?brands=louis-vuitton" - }, - { - "label": "LOUIS VUITTON Monogram Multicolor Lodge GM Black" - } - ], - "primaryCategory": "Crossbody", - "conditionsMap": { - "interior": [ - "residue marks", - "liquid marks", - "creases", - "scuffs", - "perfume or cologne odor", - "surface wear", - "marks", - "pocket(s) stretched" - ], - "exterior": [ - "corner wear", - "creases", - "scuffs", - "patina of vachetta", - "edge wear", - "wear at resin glazing", - "liquid marks", - "stain(s)", - "frayed stitch(es)", - "sizing marks", - "surface wear" - ], - "handle": [ - "surface wear", - "edge wear", - "creases", - "scuffs", - "wear at resin glazing", - "patina of vachetta", - "liquid marks", - "sizing marks" - ], - "hardware": [ - "scratch(es)", - "plating wear" - ] - }, - "findAnotherLink": "/shop/louis-vuitton/multicolore?categories=black+multicolor+zip-top+coated-canvas+handbags+shoulder-bags+cross-body+structured+street-style-bags+national-handbag-day+little-luxuries-sale+vintage", - "isWatch": false, - "isPurchasable": false, - "retailActive": false, - "parentCategory": "Styles", - "daysOnSale": 167, - "comingSoon": false, - "recommendedProducts": [ - { - "brand": "Louis Vuitton", - "conditionValue": "new", - "condition": "New", - "discountedPrice": "5755.00", - "id": 1523343, - "image": "https://prod-images.fashionphile.com/thumb/baebf5f375325c0fc1f67132df75c617/0e1d8cb0074924a2fc6a1d09affaabe6.jpg", - "price": "6395.00", - "slug": "/p/louis-vuitton-ostrich-side-trunk-pm-candy-blue-1523343", - "title": "LOUIS VUITTON Ostrich Side Trunk PM Candy Blue", - "titleWithoutBrand": "Ostrich Side Trunk PM Candy Blue" - }, - { - "brand": "Louis Vuitton", - "conditionValue": "giftable", - "condition": "Giftable", - "discountedPrice": "5150.00", - "id": 1596593, - "image": "https://prod-images.fashionphile.com/thumb/97ecbe46d66451846ec6f2a724b32cba/e32074b50b488a88c5bf764298279898.jpg", - "price": "5150.00", - "slug": "/p/louis-vuitton-lv-x-tm-monogram-multicolor-nano-speedy-white-1596593", - "title": "LOUIS VUITTON LV X TM Monogram Multicolor Nano Speedy White", - "titleWithoutBrand": "LV X TM Monogram Multicolor Nano Speedy White" - }, - { - "brand": "Louis Vuitton", - "conditionValue": "new", - "condition": "New", - "discountedPrice": "2920.00", - "id": 1536704, - "image": "https://prod-images.fashionphile.com/thumb/537da1400bbecdafcf850b98fafe9fd8/85f6f3e16835fe04fbe86f458051880f.jpg", - "price": "3895.00", - "slug": "/p/louis-vuitton-calfskin-onthego-east-west-pearl-pink-1536704", - "title": "LOUIS VUITTON Calfskin OnTheGo East West Pearl Pink", - "titleWithoutBrand": "Calfskin OnTheGo East West Pearl Pink" - }, - { - "brand": "Louis Vuitton", - "conditionValue": "giftable", - "condition": "Giftable", - "discountedPrice": "5995.00", - "id": 1601207, - "image": "https://prod-images.fashionphile.com/thumb/4556d203d3629d2b05a8d19e1b047342/4b21cbc2c8c3d27aca87fde8d620f1de.jpg", - "price": "5995.00", - "slug": "/p/louis-vuitton-monogram-flight-mode-side-trunk-1601207", - "title": "LOUIS VUITTON Monogram Flight Mode Side Trunk", - "titleWithoutBrand": "Monogram Flight Mode Side Trunk" - }, - { - "brand": "Louis Vuitton", - "conditionValue": "giftable", - "condition": "Giftable", - "discountedPrice": "1895.00", - "id": 1595564, - "image": "https://prod-images.fashionphile.com/thumb/464316826c53a5c97acf03e0962bdabe/aa258c2192a11b9c0daec645fbb8b5ef.jpg", - "price": "1895.00", - "slug": "/p/louis-vuitton-empreinte-monogram-giant-double-zip-pochette-caramel-1595564", - "title": "LOUIS VUITTON Empreinte Monogram Giant Double Zip Pochette Caramel", - "titleWithoutBrand": "Empreinte Monogram Giant Double Zip Pochette Caramel" - }, - { - "brand": "Louis Vuitton", - "conditionValue": "giftable", - "condition": "Giftable", - "discountedPrice": "2395.00", - "id": 1578124, - "image": "https://prod-images.fashionphile.com/thumb/fb0c1a3511cd6aa055a36968f70bcc96/a821253c7b2c0230854f3b52c392c0b9.jpg", - "price": "2395.00", - "slug": "/p/louis-vuitton-monogram-neonoe-bb-1578124", - "title": "LOUIS VUITTON Monogram Neonoe BB", - "titleWithoutBrand": "Monogram Neonoe BB" - }, - { - "brand": "Louis Vuitton", - "conditionValue": "new", - "condition": "New", - "discountedPrice": "5150.00", - "id": 1597920, - "image": "https://prod-images.fashionphile.com/thumb/669f823b54189b33a0d22445fef97c65/b110921c43da443f5ef3a76665425081.jpg", - "price": "5150.00", - "slug": "/p/louis-vuitton-lv-x-tm-monogram-multicolor-nano-speedy-white-1597920", - "title": "LOUIS VUITTON LV X TM Monogram Multicolor Nano Speedy White", - "titleWithoutBrand": "LV X TM Monogram Multicolor Nano Speedy White" - }, - { - "brand": "Louis Vuitton", - "conditionValue": "new", - "condition": "New", - "discountedPrice": "2495.00", - "id": 1558290, - "image": "https://prod-images.fashionphile.com/thumb/7b3f7be581025cf0fee39141f632e72d/6ddd92d160586c30f7bdd3aa89fffb1d.jpg", - "price": "2495.00", - "slug": "/p/louis-vuitton-damoflage-lv-trail-wearable-wallet-green-1558290", - "title": "LOUIS VUITTON Damoflage LV Trail Wearable Wallet Green", - "titleWithoutBrand": "Damoflage LV Trail Wearable Wallet Green" - }, - { - "brand": "Louis Vuitton", - "conditionValue": "new", - "condition": "New", - "discountedPrice": "4510.00", - "id": 1515545, - "image": "https://prod-images.fashionphile.com/thumb/2e64d40dbf490b461eb374b7d8dc0753/786441f7f5edf80fb7c90cf71a23105e.jpg", - "price": "6690.00", - "slug": "/p/louis-vuitton-monogram-falling-in-love-mobile-box-1515545", - "title": "LOUIS VUITTON Monogram Falling in Love Mobile Box", - "titleWithoutBrand": "Monogram Falling in Love Mobile Box" - }, - { - "brand": "Louis Vuitton", - "conditionValue": "giftable", - "condition": "Giftable", - "discountedPrice": "4395.00", - "id": 1593187, - "image": "https://prod-images.fashionphile.com/thumb/17e42022601638a8e279266f71ce07b9/d2becb196be84d6e8072b0698e21a151.jpg", - "price": "4395.00", - "slug": "/p/louis-vuitton-lambskin-embossed-monogram-coussin-pm-navy-1593187", - "title": "LOUIS VUITTON Lambskin Embossed Monogram Coussin PM Navy", - "titleWithoutBrand": "Lambskin Embossed Monogram Coussin PM Navy" - }, - { - "brand": "Louis Vuitton", - "conditionValue": "giftable", - "condition": "Giftable", - "discountedPrice": "4495.00", - "id": 1571656, - "image": "https://prod-images.fashionphile.com/thumb/6aff0a355a5f4708a2daba8da3bbc2ff/080bae69fcc84dc7729cffeb3151bafe.jpg", - "price": "4995.00", - "slug": "/p/louis-vuitton-satin-sequin-embroidered-damier-coussin-bb-black-1571656", - "title": "LOUIS VUITTON Satin Sequin Embroidered Damier Coussin BB Black", - "titleWithoutBrand": "Satin Sequin Embroidered Damier Coussin BB Black" - }, - { - "brand": "Louis Vuitton", - "conditionValue": "new", - "condition": "New", - "discountedPrice": "2850.00", - "id": 1548900, - "image": "https://prod-images.fashionphile.com/thumb/86bf6b8730349a4cc19122fa2febb0b1/5a263ab88b34547aa76d072bdbe0d995.jpg", - "price": "2850.00", - "slug": "/p/louis-vuitton-epi-twist-shoulder-bag-mm-etain-1548900", - "title": "LOUIS VUITTON Epi Twist Shoulder Bag MM Etain", - "titleWithoutBrand": "Epi Twist Shoulder Bag MM Etain" - }, - { - "brand": "Louis Vuitton", - "conditionValue": "giftable", - "condition": "Giftable", - "discountedPrice": "1795.00", - "id": 1596787, - "image": "https://prod-images.fashionphile.com/thumb/97ecbe46d66451846ec6f2a724b32cba/3c3e265031ae53ff1f5e8e742ff756db.jpg", - "price": "1795.00", - "slug": "/p/louis-vuitton-monogram-noe-bb-1596787", - "title": "LOUIS VUITTON Monogram Noe BB", - "titleWithoutBrand": "Monogram Noe BB" - }, - { - "brand": "Louis Vuitton", - "conditionValue": "very_good", - "condition": "Shows Wear", - "discountedPrice": "895.00", - "id": 1476048, - "image": "https://prod-images.fashionphile.com/thumb/bbc6bdaef041c6291e21d8f9f56f1fc1/d1d210eec2aba199050d6f3cdb4555d5.jpg", - "price": "895.00", - "slug": "/p/louis-vuitton-monogram-sac-gibeciere-1476048", - "title": "LOUIS VUITTON Monogram Sac Gibeciere", - "titleWithoutBrand": "LOUIS VUITTON Monogram Sac Gibeciere" - }, - { - "brand": "Louis Vuitton", - "conditionValue": "very_good", - "condition": "Shows Wear", - "discountedPrice": "2075.00", - "id": 1554385, - "image": "https://prod-images.fashionphile.com/thumb/86bf6b8730349a4cc19122fa2febb0b1/3fbe87a81f27489e909fc58a5b1e8533.jpg", - "price": "2595.00", - "slug": "/p/louis-vuitton-monogram-petite-malle-black-1554385", - "title": "LOUIS VUITTON Monogram Petite Malle Black", - "titleWithoutBrand": "Monogram Petite Malle Black" + "id": 52220417245487, + "product_id": 10648379785519, + "position": 1, + "created_at": "2025-07-23T15:59:11-07:00", + "updated_at": "2025-07-23T15:59:15-07:00", + "alt": null, + "width": 1500, + "height": 1500, + "src": "https://cdn.shopify.com/s/files/1/0894/3186/7695/files/de41db0ad0dc939d94f11553aa222f6e.jpg?v=1753311555", + "variant_ids": [] + }, + { + "id": 52220416590127, + "product_id": 10648379785519, + "position": 2, + "created_at": "2025-07-23T15:59:12-07:00", + "updated_at": "2025-07-23T15:59:15-07:00", + "alt": null, + "width": 1500, + "height": 1500, + "src": "https://cdn.shopify.com/s/files/1/0894/3186/7695/files/d303a20a7c7ea3f6ab5520dddcc2eac1.jpg?v=1753311555", + "variant_ids": [] + }, + { + "id": 52220416426287, + "product_id": 10648379785519, + "position": 3, + "created_at": "2025-07-23T15:59:12-07:00", + "updated_at": "2025-07-23T15:59:15-07:00", + "alt": null, + "width": 1500, + "height": 1500, + "src": "https://cdn.shopify.com/s/files/1/0894/3186/7695/files/179c6ec816f6fcf11f1308e0073e5fe9.jpg?v=1753311555", + "variant_ids": [] + }, + { + "id": 52220417376559, + "product_id": 10648379785519, + "position": 4, + "created_at": "2025-07-23T15:59:12-07:00", + "updated_at": "2025-07-23T15:59:15-07:00", + "alt": null, + "width": 1500, + "height": 1500, + "src": "https://cdn.shopify.com/s/files/1/0894/3186/7695/files/b6997a41a9b519d1ca2f7d986de9aca2.jpg?v=1753311555", + "variant_ids": [] + }, + { + "id": 52220419408175, + "product_id": 10648379785519, + "position": 5, + "created_at": "2025-07-23T15:59:12-07:00", + "updated_at": "2025-07-23T15:59:15-07:00", + "alt": null, + "width": 1500, + "height": 1500, + "src": "https://cdn.shopify.com/s/files/1/0894/3186/7695/files/e95fcf20786525f54dde08943a90a972.jpg?v=1753311555", + "variant_ids": [] + }, + { + "id": 52220416655663, + "product_id": 10648379785519, + "position": 6, + "created_at": "2025-07-23T15:59:12-07:00", + "updated_at": "2025-07-23T15:59:15-07:00", + "alt": null, + "width": 1500, + "height": 1500, + "src": "https://cdn.shopify.com/s/files/1/0894/3186/7695/files/814d71e9c27321d4d762ef136611bb92.jpg?v=1753311555", + "variant_ids": [] + }, + { + "id": 52220416688431, + "product_id": 10648379785519, + "position": 7, + "created_at": "2025-07-23T15:59:12-07:00", + "updated_at": "2025-07-23T15:59:15-07:00", + "alt": null, + "width": 1500, + "height": 1500, + "src": "https://cdn.shopify.com/s/files/1/0894/3186/7695/files/3fab6c388106f3258737e730a8469830.jpg?v=1753311555", + "variant_ids": [] + }, + { + "id": 52220416524591, + "product_id": 10648379785519, + "position": 8, + "created_at": "2025-07-23T15:59:12-07:00", + "updated_at": "2025-07-23T15:59:15-07:00", + "alt": null, + "width": 1500, + "height": 1500, + "src": "https://cdn.shopify.com/s/files/1/0894/3186/7695/files/d3f327d679663be60fc69434ef63d062.jpg?v=1753311555", + "variant_ids": [] + }, + { + "id": 52220418654511, + "product_id": 10648379785519, + "position": 9, + "created_at": "2025-07-23T15:59:12-07:00", + "updated_at": "2025-07-23T15:59:15-07:00", + "alt": null, + "width": 1500, + "height": 1500, + "src": "https://cdn.shopify.com/s/files/1/0894/3186/7695/files/7f1f1e8595a3a1001c892894fa0c28fb.jpg?v=1753311555", + "variant_ids": [] + }, + { + "id": 52220417278255, + "product_id": 10648379785519, + "position": 10, + "created_at": "2025-07-23T15:59:12-07:00", + "updated_at": "2025-07-23T15:59:15-07:00", + "alt": null, + "width": 1500, + "height": 1500, + "src": "https://cdn.shopify.com/s/files/1/0894/3186/7695/files/861b1e1dc6bc3c2e52456a01f4d8077a.jpg?v=1753311555", + "variant_ids": [] + }, + { + "id": 52220417999151, + "product_id": 10648379785519, + "position": 11, + "created_at": "2025-07-23T15:59:12-07:00", + "updated_at": "2025-07-23T15:59:15-07:00", + "alt": null, + "width": 1500, + "height": 1500, + "src": "https://cdn.shopify.com/s/files/1/0894/3186/7695/files/307801e9538bde6e4c2c6ce317841b62.jpg?v=1753311555", + "variant_ids": [] } ], - "brandUrl": "/shop/brands/louis-vuitton", - "isSizeRef": true, - "conditionsText": "residue marks, corner wear, creases, scuffs, patina of vachetta, edge wear, surface wear, wear at resin glazing, liquid marks, sizing marks, perfume or cologne odor, scratch(es), plating wear, marks, pocket(s) stretched, stain(s), frayed stitch(es)", - "discount": "40% off", - "dos": 40, - "shipsWithList": null, - "titleWithoutBrand": " Monogram Multicolor Lodge GM Black", - "oldSlug": "louis-vuitton-monogram-multicolor-lodge-gm-black-1242632", - "layawayDownpaymentAmount": "$88", - "url": "https://apigateway.fashionphile.com/product/1242632", - "carouselData": { - "title": "", - "header": "You may also like", - "productIDs": "", - "productCount": 0, - "productData": [ - { - "brand": "Louis Vuitton", - "conditionValue": "new", - "condition": "New", - "discountedPrice": "5755.00", - "id": 1523343, - "image": { - "thumb": "https://prod-images.fashionphile.com/thumb/baebf5f375325c0fc1f67132df75c617/0e1d8cb0074924a2fc6a1d09affaabe6.jpg" - }, - "price": "6395.00", - "slug": "/p/louis-vuitton-ostrich-side-trunk-pm-candy-blue-1523343", - "title": "LOUIS VUITTON Ostrich Side Trunk PM Candy Blue", - "titleWithoutBrand": "Ostrich Side Trunk PM Candy Blue", - "productId": 1523343 - }, - { - "brand": "Louis Vuitton", - "conditionValue": "giftable", - "condition": "Giftable", - "discountedPrice": "5150.00", - "id": 1596593, - "image": { - "thumb": "https://prod-images.fashionphile.com/thumb/97ecbe46d66451846ec6f2a724b32cba/e32074b50b488a88c5bf764298279898.jpg" - }, - "price": "5150.00", - "slug": "/p/louis-vuitton-lv-x-tm-monogram-multicolor-nano-speedy-white-1596593", - "title": "LOUIS VUITTON LV X TM Monogram Multicolor Nano Speedy White", - "titleWithoutBrand": "LV X TM Monogram Multicolor Nano Speedy White", - "productId": 1596593 - }, - { - "brand": "Louis Vuitton", - "conditionValue": "new", - "condition": "New", - "discountedPrice": "2920.00", - "id": 1536704, - "image": { - "thumb": "https://prod-images.fashionphile.com/thumb/537da1400bbecdafcf850b98fafe9fd8/85f6f3e16835fe04fbe86f458051880f.jpg" - }, - "price": "3895.00", - "slug": "/p/louis-vuitton-calfskin-onthego-east-west-pearl-pink-1536704", - "title": "LOUIS VUITTON Calfskin OnTheGo East West Pearl Pink", - "titleWithoutBrand": "Calfskin OnTheGo East West Pearl Pink", - "productId": 1536704 - }, - { - "brand": "Louis Vuitton", - "conditionValue": "giftable", - "condition": "Giftable", - "discountedPrice": "5995.00", - "id": 1601207, - "image": { - "thumb": "https://prod-images.fashionphile.com/thumb/4556d203d3629d2b05a8d19e1b047342/4b21cbc2c8c3d27aca87fde8d620f1de.jpg" - }, - "price": "5995.00", - "slug": "/p/louis-vuitton-monogram-flight-mode-side-trunk-1601207", - "title": "LOUIS VUITTON Monogram Flight Mode Side Trunk", - "titleWithoutBrand": "Monogram Flight Mode Side Trunk", - "productId": 1601207 - }, - { - "brand": "Louis Vuitton", - "conditionValue": "giftable", - "condition": "Giftable", - "discountedPrice": "1895.00", - "id": 1595564, - "image": { - "thumb": "https://prod-images.fashionphile.com/thumb/464316826c53a5c97acf03e0962bdabe/aa258c2192a11b9c0daec645fbb8b5ef.jpg" - }, - "price": "1895.00", - "slug": "/p/louis-vuitton-empreinte-monogram-giant-double-zip-pochette-caramel-1595564", - "title": "LOUIS VUITTON Empreinte Monogram Giant Double Zip Pochette Caramel", - "titleWithoutBrand": "Empreinte Monogram Giant Double Zip Pochette Caramel", - "productId": 1595564 - }, - { - "brand": "Louis Vuitton", - "conditionValue": "giftable", - "condition": "Giftable", - "discountedPrice": "2395.00", - "id": 1578124, - "image": { - "thumb": "https://prod-images.fashionphile.com/thumb/fb0c1a3511cd6aa055a36968f70bcc96/a821253c7b2c0230854f3b52c392c0b9.jpg" - }, - "price": "2395.00", - "slug": "/p/louis-vuitton-monogram-neonoe-bb-1578124", - "title": "LOUIS VUITTON Monogram Neonoe BB", - "titleWithoutBrand": "Monogram Neonoe BB", - "productId": 1578124 - }, - { - "brand": "Louis Vuitton", - "conditionValue": "new", - "condition": "New", - "discountedPrice": "5150.00", - "id": 1597920, - "image": { - "thumb": "https://prod-images.fashionphile.com/thumb/669f823b54189b33a0d22445fef97c65/b110921c43da443f5ef3a76665425081.jpg" - }, - "price": "5150.00", - "slug": "/p/louis-vuitton-lv-x-tm-monogram-multicolor-nano-speedy-white-1597920", - "title": "LOUIS VUITTON LV X TM Monogram Multicolor Nano Speedy White", - "titleWithoutBrand": "LV X TM Monogram Multicolor Nano Speedy White", - "productId": 1597920 - }, - { - "brand": "Louis Vuitton", - "conditionValue": "new", - "condition": "New", - "discountedPrice": "2495.00", - "id": 1558290, - "image": { - "thumb": "https://prod-images.fashionphile.com/thumb/7b3f7be581025cf0fee39141f632e72d/6ddd92d160586c30f7bdd3aa89fffb1d.jpg" - }, - "price": "2495.00", - "slug": "/p/louis-vuitton-damoflage-lv-trail-wearable-wallet-green-1558290", - "title": "LOUIS VUITTON Damoflage LV Trail Wearable Wallet Green", - "titleWithoutBrand": "Damoflage LV Trail Wearable Wallet Green", - "productId": 1558290 - }, - { - "brand": "Louis Vuitton", - "conditionValue": "new", - "condition": "New", - "discountedPrice": "4510.00", - "id": 1515545, - "image": { - "thumb": "https://prod-images.fashionphile.com/thumb/2e64d40dbf490b461eb374b7d8dc0753/786441f7f5edf80fb7c90cf71a23105e.jpg" - }, - "price": "6690.00", - "slug": "/p/louis-vuitton-monogram-falling-in-love-mobile-box-1515545", - "title": "LOUIS VUITTON Monogram Falling in Love Mobile Box", - "titleWithoutBrand": "Monogram Falling in Love Mobile Box", - "productId": 1515545 - }, - { - "brand": "Louis Vuitton", - "conditionValue": "giftable", - "condition": "Giftable", - "discountedPrice": "4395.00", - "id": 1593187, - "image": { - "thumb": "https://prod-images.fashionphile.com/thumb/17e42022601638a8e279266f71ce07b9/d2becb196be84d6e8072b0698e21a151.jpg" - }, - "price": "4395.00", - "slug": "/p/louis-vuitton-lambskin-embossed-monogram-coussin-pm-navy-1593187", - "title": "LOUIS VUITTON Lambskin Embossed Monogram Coussin PM Navy", - "titleWithoutBrand": "Lambskin Embossed Monogram Coussin PM Navy", - "productId": 1593187 - }, - { - "brand": "Louis Vuitton", - "conditionValue": "giftable", - "condition": "Giftable", - "discountedPrice": "4495.00", - "id": 1571656, - "image": { - "thumb": "https://prod-images.fashionphile.com/thumb/6aff0a355a5f4708a2daba8da3bbc2ff/080bae69fcc84dc7729cffeb3151bafe.jpg" - }, - "price": "4995.00", - "slug": "/p/louis-vuitton-satin-sequin-embroidered-damier-coussin-bb-black-1571656", - "title": "LOUIS VUITTON Satin Sequin Embroidered Damier Coussin BB Black", - "titleWithoutBrand": "Satin Sequin Embroidered Damier Coussin BB Black", - "productId": 1571656 - }, - { - "brand": "Louis Vuitton", - "conditionValue": "new", - "condition": "New", - "discountedPrice": "2850.00", - "id": 1548900, - "image": { - "thumb": "https://prod-images.fashionphile.com/thumb/86bf6b8730349a4cc19122fa2febb0b1/5a263ab88b34547aa76d072bdbe0d995.jpg" - }, - "price": "2850.00", - "slug": "/p/louis-vuitton-epi-twist-shoulder-bag-mm-etain-1548900", - "title": "LOUIS VUITTON Epi Twist Shoulder Bag MM Etain", - "titleWithoutBrand": "Epi Twist Shoulder Bag MM Etain", - "productId": 1548900 - }, - { - "brand": "Louis Vuitton", - "conditionValue": "giftable", - "condition": "Giftable", - "discountedPrice": "1795.00", - "id": 1596787, - "image": { - "thumb": "https://prod-images.fashionphile.com/thumb/97ecbe46d66451846ec6f2a724b32cba/3c3e265031ae53ff1f5e8e742ff756db.jpg" - }, - "price": "1795.00", - "slug": "/p/louis-vuitton-monogram-noe-bb-1596787", - "title": "LOUIS VUITTON Monogram Noe BB", - "titleWithoutBrand": "Monogram Noe BB", - "productId": 1596787 - }, - { - "brand": "Louis Vuitton", - "conditionValue": "very_good", - "condition": "Shows Wear", - "discountedPrice": "895.00", - "id": 1476048, - "image": { - "thumb": "https://prod-images.fashionphile.com/thumb/bbc6bdaef041c6291e21d8f9f56f1fc1/d1d210eec2aba199050d6f3cdb4555d5.jpg" - }, - "price": "895.00", - "slug": "/p/louis-vuitton-monogram-sac-gibeciere-1476048", - "title": "LOUIS VUITTON Monogram Sac Gibeciere", - "titleWithoutBrand": "LOUIS VUITTON Monogram Sac Gibeciere", - "productId": 1476048 - }, - { - "brand": "Louis Vuitton", - "conditionValue": "very_good", - "condition": "Shows Wear", - "discountedPrice": "2075.00", - "id": 1554385, - "image": { - "thumb": "https://prod-images.fashionphile.com/thumb/86bf6b8730349a4cc19122fa2febb0b1/3fbe87a81f27489e909fc58a5b1e8533.jpg" - }, - "price": "2595.00", - "slug": "/p/louis-vuitton-monogram-petite-malle-black-1554385", - "title": "LOUIS VUITTON Monogram Petite Malle Black", - "titleWithoutBrand": "Monogram Petite Malle Black", - "productId": 1554385 - } - ] - }, - "recommendedProductIds": [ - "1242632", - "1523343", - "1596593", - "1536704", - "1601207", - "1595564", - "1578124", - "1597920", - "1558290", - "1515545", - "1593187", - "1571656", - "1548900", - "1596787", - "1476048", - "1554385" - ], - "productType": "SOLD_OUT", - "authenticCta": "We guarantee this is an authentic Louis Vuitton item or 100% of your money back. ", - "disclaimer": "Louis Vuitton\n is a registered trademark of\n Louis Vuitton. FASHIONPHILE is not affiliated with\n Louis Vuitton." + "image": { + "id": 52220417245487, + "product_id": 10648379785519, + "position": 1, + "created_at": "2025-07-23T15:59:11-07:00", + "updated_at": "2025-07-23T15:59:15-07:00", + "alt": null, + "width": 1500, + "height": 1500, + "src": "https://cdn.shopify.com/s/files/1/0894/3186/7695/files/de41db0ad0dc939d94f11553aa222f6e.jpg?v=1753311555", + "variant_ids": [] + } }, { - "id": 1247825, - "sku": "BW", - "title": "LOUIS VUITTON Ostrich Lizard Majestueux Tote MM Navy", - "slug": "/p/louis-vuitton-ostrich-lizard-majestueux-tote-mm-navy-1247825", - "price": 2095, - "salePrice": 2095, - "retailPrice": 0, - "discountedPrice": 2095, - "discountEnabled": 1, - "discountedTier": 0, - "isSuperSale": false, - "madeAvailableAt": "2023-11-29T07:49:49.000Z", - "madeAvailableAtUTC": "2023-11-29 07:49:49", - "length": null, - "width": null, - "height": null, - "drop": null, - "weight": null, - "season": null, - "year": 2013, - "yearIsDecade": 0, - "location": "New York, NY", - "searchTermList": [ - { - "searchTerms": "Louis Vuitton Bags", - "slug": "louis-vuitton-bags", - "sortOrder": "1" - }, - { - "searchTerms": "Louis Vuitton Monogram Bags", - "slug": "louis-vuitton-monogram-bags", - "sortOrder": "1" + "id": 10641393582383, + "title": "Nappa Twisted Padded Intrecciato Curve Slide Sandals 36 Black", + "body_html": "This is an authentic pair of BOTTEGA VENETA Nappa Intrecciato Padded BV Curve Sandals size 36 in Black. These stylish strappy sandals are crafted of padded and twisted Intrecciato leather in black. These heels feature interwoven strap detailing and a 4-inch heel.", + "vendor": "Bottega Veneta", + "product_type": "Accessories", + "created_at": "2025-06-13T16:37:53-07:00", + "handle": "bottega-veneta-nappa-twisted-padded-intrecciato-curve-slide-sandals-36-black-1048096", + "updated_at": "2025-10-16T14:53:12-07:00", + "published_at": "2025-06-13T16:37:55-07:00", + "template_suffix": null, + "published_scope": "global", + "tags": "", + "variants": [ + { + "id": 51473136943407, + "product_id": 10641393582383, + "title": "Default Title", + "price": "450.00", + "sku": "253613", + "position": 1, + "compare_at_price": "450.00", + "fulfillment_service": "manual", + "inventory_management": "shopify", + "option1": "Default Title", + "option2": null, + "option3": null, + "created_at": "2025-06-13T16:37:54-07:00", + "updated_at": "2025-10-16T14:53:12-07:00", + "taxable": true, + "barcode": "000010480960", + "grams": 0, + "image_id": null, + "weight": 0.0, + "weight_unit": "lb", + "requires_shipping": true, + "quantity_rule": { + "min": 1, + "max": null, + "increment": 1 + }, + "price_currency": "USD", + "compare_at_price_currency": "USD", + "quantity_price_breaks": [] } ], - "condition": "Shows Wear", - "conditionValue": "very_good", - "conditions": [ - "creases", - "structure wear", - "edge wear", - "scuffs", - "scratch(es)", - "tarnished", - "plating wear", - "marks", - "surface wear", - "cosmetics scent" - ], - "prettyConditions": null, - "productColors": null, - "productColorsAndQuantitiesMap": null, - "isFashionphileMerchandise": false, - "isSwagItem": false, - "isGiftCard": false, - "isQualifiedForLayaway": false, - "isTooNewForLayaway": false, - "isEligibleForBuyBack": true, - "isJewelry": false, - "locationDetails": { - "id": 54, - "title": "FASHIONPHILE Flagship NYC (Chelsea)", - "customerTitle": "NYC Flagship", - "marketingTitle": "NYC Flagship", - "phoneNumber": "1 (332) 330-6133", - "street": "601 West 26TH Street STE 400B", - "street2": "4th Floor", - "city": "New York", - "stateShortCode": "NY", - "zipcode": "10001", - "googleCid": "5909204957846412440", - "address": { - "lon": -74.0071, - "lat": 40.75165 - }, - "hoursOfOperation": "Monday: 10AM - 6PM\nTuesday: 10AM - 6PM\nWednesday: 10AM - 6PM\nThursday: 10AM - 6PM\nFriday: 10AM - 6PM\nSaturday: 10AM - 6PM\nSunday: Closed", - "servicesOffered": [ - { - "title": "Location Service - Shop", - "serviceHeadline": "Shop", - "serviceDescription": "From your following list to your fingertips. Browse a select inventory of authenticated pre-owned handbags, jewelry, watches and accessories in-person, from brands like Louis Vuitton, Chanel and Saint Laurent.", - "tileImage": { - "title": "Shop", - "description": "Woman holding Chanel and Hermes handbags", - "file": { - "url": "//images.ctfassets.net/nh92jw72tw1h/MRhkLAKJgXfSMWmjuklra/52736248e2365c9fcb1e14cec313d47c/location_Shop.jpg", - "details": { - "size": 121613, - "image": { - "width": 804, - "height": 603 - } - }, - "fileName": "location_Shop.jpg", - "contentType": "image/jpeg" - } - } - }, - { - "title": "Location Service - Sell", - "serviceHeadline": "Sell", - "serviceDescription": "Some of the best brands to sell are Chanel, Cartier and Hermes. Make an appointment at one of our locations to turn your ultra-luxury accessories into money in your pocket.", - "tileImage": { - "title": "Sell Tile image", - "description": "A woman holding a silver YSL handbag.", - "file": { - "url": "//images.ctfassets.net/nh92jw72tw1h/2aOYZVMzxfVXEfNT5EN0zm/57d38a5309004f589d5c56829aaa664b/location_Sell.jpg", - "details": { - "size": 64982, - "image": { - "width": 804, - "height": 603 - } - }, - "fileName": "location_Sell.jpg", - "contentType": "image/jpeg" - } - } - }, - { - "title": "FASHIONPHILE Certified", - "serviceHeadline": "FASHIONPHILE Certified", - "serviceDescription": "Flagship appointment service. Certify your ultra-luxury investments with a FASHIONPHILE Certificate of Authenticity.", - "tileImage": { - "title": "FASHIONPHILE Certified Location Page Tile", - "description": "Green Hermes Bag", - "file": { - "url": "//images.ctfassets.net/nh92jw72tw1h/47QPp7HR8AT4OdCW4ZzqXd/05baeb9d61b2d96082eb07f9f43793f7/LocationPage_CertifiedTile.jpg", - "details": { - "size": 60475, - "image": { - "width": 804, - "height": 603 - } - }, - "fileName": "LocationPage_CertifiedTile.jpg", - "contentType": "image/jpeg" - } - } - }, - { - "title": "Location Services - Dropoff", - "serviceHeadline": "Drop off", - "serviceDescription": "Save yourself a trip to the Post Office and drop off your quoted items at your nearest location.", - "tileImage": { - "title": "Drop off image", - "description": "Hand holding Louis Vuitton and Gucci handbags", - "file": { - "url": "//images.ctfassets.net/nh92jw72tw1h/1atlQKZdYh9bioLLLe8Wpf/64c3058347a3df02830af66d7120d75a/location_DropOff.jpg", - "details": { - "size": 139105, - "image": { - "width": 804, - "height": 603 - } - }, - "fileName": "location_DropOff.jpg", - "contentType": "image/jpeg" - } - } - }, - { - "title": "Location Service - Pick up", - "serviceHeadline": "Pick up", - "serviceDescription": "Got your eye on something but won’t be home to sign for it? No problem! We’ll ship it to a location near you for you to pick up! Simply choose the “Pick up” option at checkout and we’ll let you know as soon as it arrives.", - "tileImage": { - "title": "Pickup", - "description": "Image of person holding Fashionphile SWAG tote", - "file": { - "url": "//images.ctfassets.net/nh92jw72tw1h/XJIzkCHMLLKasfgSeXvVI/0366ae6a637c34d74ed2c49fad9e19c3/location_PickUp.jpg", - "details": { - "size": 76745, - "image": { - "width": 804, - "height": 603 - } - }, - "fileName": "location_PickUp.jpg", - "contentType": "image/jpeg" - } - } - }, - { - "title": "Location Service - Returns", - "serviceHeadline": "Returns", - "serviceDescription": "We want you to love what you buy, which is why we make returns easy. Bring any qualifying returns to this location so you can get back to finding your next Holy Grail accessory.", - "tileImage": { - "title": "Returns image", - "description": "An image of a white Christian Dior Saddle bag in a box.", - "file": { - "url": "//images.ctfassets.net/nh92jw72tw1h/BT6vOUkGxhtaBWj4A2fkm/1556da36def4ba910770e1e29e282c31/location_Returns.jpg", - "details": { - "size": 90446, - "image": { - "width": 804, - "height": 603 - } - }, - "fileName": "location_Returns.jpg", - "contentType": "image/jpeg" - } - } - } - ], - "walkInDescription": "Shopping walk-ins welcome, selling appointments recommended, FASHIONPHILE Certified by appointment only. Call to book your appointment. ", - "citySlug": "new-york", - "zipCodeSlug": "10001", - "slug": "chelsea-flagship", - "heroImage": { - "metadata": { - "tags": [], - "concepts": [] - }, - "sys": { - "space": { - "sys": { - "type": "Link", - "linkType": "Space", - "id": "nh92jw72tw1h" - } - }, - "id": "1qDjuxjVjYIx8zDw3Xj4eq", - "type": "Asset", - "createdAt": "2023-10-27T20:19:49.973Z", - "updatedAt": "2023-12-05T23:03:10.617Z", - "environment": { - "sys": { - "id": "master", - "type": "Link", - "linkType": "Environment" - } - }, - "publishedVersion": 14, - "revision": 3, - "locale": "en-US" - }, - "fields": { - "title": "Flagship NYC Desktop", - "description": "", - "file": { - "url": "//images.ctfassets.net/nh92jw72tw1h/1qDjuxjVjYIx8zDw3Xj4eq/99f486d8417f542d32bac6e4ad20735e/chelsea_hero_desktop.jpg", - "details": { - "size": 300221, - "image": { - "width": 2432, - "height": 754 - } - }, - "fileName": "chelsea_hero_desktop.jpg", - "contentType": "image/jpeg" - } - } - }, - "heroMobileImage": { - "metadata": { - "tags": [], - "concepts": [] - }, - "sys": { - "space": { - "sys": { - "type": "Link", - "linkType": "Space", - "id": "nh92jw72tw1h" - } - }, - "id": "7cqAtQMVNyhIriGYafxPtu", - "type": "Asset", - "createdAt": "2023-10-27T20:20:23.589Z", - "updatedAt": "2023-12-05T23:03:47.590Z", - "environment": { - "sys": { - "id": "master", - "type": "Link", - "linkType": "Environment" - } - }, - "publishedVersion": 12, - "revision": 3, - "locale": "en-US" - }, - "fields": { - "title": "Flagship NYC Mobile", - "description": "", - "file": { - "url": "//images.ctfassets.net/nh92jw72tw1h/7cqAtQMVNyhIriGYafxPtu/8bbd4c5902506460ca3319f524e37f62/chelsea_tile_desktop_.jpg", - "details": { - "size": 172840, - "image": { - "width": 1174, - "height": 554 - } - }, - "fileName": "chelsea_tile_desktop_.jpg", - "contentType": "image/jpeg" - } - } - }, - "type": "flagship", - "metaTitle": "NYC Flagship | FASHIONPHILE", - "metaDescription": "Visit FASHIONPHILE’s NYC Flagship Location and sell us your pre-owned designer handbag or ultra-luxury accessory. You can also experience all of the services only available at a FASHIONPHILE Flagship location!", - "metaOgImage": { - "metadata": { - "tags": [], - "concepts": [] - }, - "sys": { - "space": { - "sys": { - "type": "Link", - "linkType": "Space", - "id": "nh92jw72tw1h" - } - }, - "id": "69uyxmrYTkGlq5MuYJ7k97", - "type": "Asset", - "createdAt": "2023-12-05T21:41:33.996Z", - "updatedAt": "2023-12-05T21:41:33.996Z", - "environment": { - "sys": { - "id": "master", - "type": "Link", - "linkType": "Environment" - } - }, - "publishedVersion": 6, - "revision": 1, - "locale": "en-US" - }, - "fields": { - "title": "NYC (Chelsea) Flagship OG Image", - "description": "", - "file": { - "url": "//images.ctfassets.net/nh92jw72tw1h/69uyxmrYTkGlq5MuYJ7k97/b204221652757be721ca8132bcdb649f/chelsea_OG.jpg", - "details": { - "size": 194217, - "image": { - "width": 1200, - "height": 630 - } - }, - "fileName": "chelsea_OG.jpg", - "contentType": "image/jpeg" - } - } - } - }, - "description": "This is an authentic LOUIS VUITTON Ostrich Lizard Majestueux Tote MM in Navy. This stylish tote has a body of Louis Vuitton monogram-coated canvas. The bag features rolled lizard top handles with grained burgundy calfskin leather sides. There is a rear zipper pocket and an ostrich front flap with a brass press lock. The top zipper opens to a spacious burgundy leather interior with zipper and patch pockets.", - "exteriorDescription": null, - "handleDescription": null, - "interiorDescription": null, - "hardwareDescription": null, - "conditionDescription": null, - "brand": [ - { - "id": 107, - "shopify_id": null, - "name": "Louis Vuitton", - "slug": "louis-vuitton", - "type": "brand", - "description": "Shop authentic used Louis Vuitton handbags & accessories at a discounted price. FASHIONPHILE has the largest selection of used Louis Vuitton Speedy, Neverfull, Keepall, & more on sale online.", - "title": "Shop Louis Vuitton | Speedy, Alma, Neverfull & Keepall Handbags | FASHIONPHILE", - "parent_id": null, - "classification": "0", - "bio": "Known for its impeccable style and quality, the Louis Vuitton brand is one highly admired by the fashion world. The company got its start way back in 1854 when the young French designer Louis Vuitton began making his own brand of trunks and luggage, and subsequently expanded the brand’s offering to include various seasonal purses and bags.\r\n\r\nExplore our collection of pre-owned Louis Vuitton and used Louis Vuitton bags, including popular models like the Neverfull, Speedy, Alma, Artsy, Keepall, Mahina, and limited edition lines. You can also shop by textile types, which includes Monogram, Mini Monogram, Damier, Denim, Empreinte, Epi, Multicolore, Suhali, Vernis, and more. You’re sure to find a Louis Vuitton shoulder bag that will fit your style perfectly. Or check out some other accessories, like an authentic Louis Vuitton belt, and add it to your own collection.", - "is_feature": 0, - "is_enabled_for_quotes": 1, - "quote_image_angles": "", - "is_outlet_brand": 0, - "is_eligible_for_buyback": 1, - "created_at": "2016-03-29T11:25:43.000Z", - "updated_at": "2023-11-28T14:20:33.000Z", - "deleted_at": null, - "is_enabled_for_authentication_prediction": 0, - "productId": 1247825 - }, - { - "id": 107, - "shopify_id": null, - "name": "Louis Vuitton", - "slug": "louis-vuitton", - "type": "brand", - "description": "Shop authentic used Louis Vuitton handbags & accessories at a discounted price. FASHIONPHILE has the largest selection of used Louis Vuitton Speedy, Neverfull, Keepall, & more on sale online.", - "title": "Shop Louis Vuitton | Speedy, Alma, Neverfull & Keepall Handbags | FASHIONPHILE", - "parent_id": null, - "classification": "0", - "bio": "Known for its impeccable style and quality, the Louis Vuitton brand is one highly admired by the fashion world. The company got its start way back in 1854 when the young French designer Louis Vuitton began making his own brand of trunks and luggage, and subsequently expanded the brand’s offering to include various seasonal purses and bags.\r\n\r\nExplore our collection of pre-owned Louis Vuitton and used Louis Vuitton bags, including popular models like the Neverfull, Speedy, Alma, Artsy, Keepall, Mahina, and limited edition lines. You can also shop by textile types, which includes Monogram, Mini Monogram, Damier, Denim, Empreinte, Epi, Multicolore, Suhali, Vernis, and more. You’re sure to find a Louis Vuitton shoulder bag that will fit your style perfectly. Or check out some other accessories, like an authentic Louis Vuitton belt, and add it to your own collection.", - "is_feature": 0, - "is_enabled_for_quotes": 1, - "quote_image_angles": "", - "is_outlet_brand": 0, - "is_eligible_for_buyback": 1, - "created_at": "2016-03-29T11:25:43.000Z", - "updated_at": "2023-11-28T14:20:33.000Z", - "deleted_at": null, - "is_enabled_for_authentication_prediction": 0, - "productId": 1247825 - }, - { - "id": 107, - "shopify_id": null, - "name": "Louis Vuitton", - "slug": "louis-vuitton", - "type": "brand", - "description": "Shop authentic used Louis Vuitton handbags & accessories at a discounted price. FASHIONPHILE has the largest selection of used Louis Vuitton Speedy, Neverfull, Keepall, & more on sale online.", - "title": "Shop Louis Vuitton | Speedy, Alma, Neverfull & Keepall Handbags | FASHIONPHILE", - "parent_id": null, - "classification": "0", - "bio": "Known for its impeccable style and quality, the Louis Vuitton brand is one highly admired by the fashion world. The company got its start way back in 1854 when the young French designer Louis Vuitton began making his own brand of trunks and luggage, and subsequently expanded the brand’s offering to include various seasonal purses and bags.\r\n\r\nExplore our collection of pre-owned Louis Vuitton and used Louis Vuitton bags, including popular models like the Neverfull, Speedy, Alma, Artsy, Keepall, Mahina, and limited edition lines. You can also shop by textile types, which includes Monogram, Mini Monogram, Damier, Denim, Empreinte, Epi, Multicolore, Suhali, Vernis, and more. You’re sure to find a Louis Vuitton shoulder bag that will fit your style perfectly. Or check out some other accessories, like an authentic Louis Vuitton belt, and add it to your own collection.", - "is_feature": 0, - "is_enabled_for_quotes": 1, - "quote_image_angles": "", - "is_outlet_brand": 0, - "is_eligible_for_buyback": 1, - "created_at": "2016-03-29T11:25:43.000Z", - "updated_at": "2023-11-28T14:20:33.000Z", - "deleted_at": null, - "is_enabled_for_authentication_prediction": 0, - "productId": 1247825 + "options": [ + { + "id": 13148457861423, + "product_id": 10641393582383, + "name": "Title", + "position": 1, + "values": [ + "Default Title" + ] } ], - "measurements": [ - { - "id": 6060078, - "product_id": 1247825, - "type": "base length", - "unit": "in", - "value": "10.75", - "adjustment_value": null - }, - { - "id": 6060079, - "product_id": 1247825, - "type": "width", - "unit": "in", - "value": "6.00", - "adjustment_value": null - }, - { - "id": 6060080, - "product_id": 1247825, - "type": "height", - "unit": "in", - "value": "11.50", - "adjustment_value": null - }, - { - "id": 6060081, - "product_id": 1247825, - "type": "drop", - "unit": "in", - "value": "5.00", - "adjustment_value": null - } - ], - "shipsWith": "luggage loop, dust bag", - "designerId": "AR1123", - "color": "Blues", - "brandName": "Louis Vuitton", - "categories": [ - { - "id": 195, - "name": "Browns", - "slug": "browns", - "type": "category", - "parent_id": 191 - }, - { - "id": 215, - "name": "Multicolor", - "slug": "multicolor", - "type": "category", - "parent_id": 191 - }, - { - "id": 188, - "name": "Structured", - "slug": "structured", - "type": "category", - "parent_id": 182 - }, - { - "id": 125, - "name": "Top Handles", - "slug": "top-handles", - "type": "category", - "parent_id": 182 - }, - { - "id": 184, - "name": "Zip Top", - "slug": "zip-top", - "type": "category", - "parent_id": 182 - }, - { - "id": 210, - "name": "Coated Canvas", - "slug": "coated-canvas", - "type": "category", - "parent_id": 204 - }, - { - "id": 208, - "name": "Exotic Skins & Fur", - "slug": "exotics", - "type": "category", - "parent_id": 204 - }, - { - "id": 205, - "name": "Leather", - "slug": "leather", - "type": "category", - "parent_id": 204 - }, - { - "id": 233, - "name": "Handbags", - "slug": "handbags", - "type": "category", - "parent_id": 122 - }, - { - "id": 140, - "name": "Limited Edition", - "slug": "le", - "type": "brand", - "parent_id": 107 - }, - { - "id": 132, - "name": "Monogram", - "slug": "louis-vuitton-monogram", - "type": "brand", - "parent_id": 107 - }, - { - "id": 122, - "name": "Styles", - "slug": "handbag-styles", - "type": "category", - "parent_id": null - }, - { - "id": 107, - "name": "Louis Vuitton", - "slug": "louis-vuitton", - "type": "brand", - "parent_id": null - }, - { - "id": 140, - "name": "Limited Edition", - "slug": "le", - "type": "brand", - "parent_id": 107 - }, - { - "id": 132, - "name": "Monogram", - "slug": "louis-vuitton-monogram", - "type": "brand", - "parent_id": 107 - }, - { - "id": 107, - "name": "Louis Vuitton", - "slug": "louis-vuitton", - "type": "brand", - "parent_id": null - }, - { - "id": 107, - "name": "Louis Vuitton", - "slug": "louis-vuitton", - "type": "brand", - "parent_id": null - }, - { - "id": 200, - "name": "Blues", - "slug": "blues", - "type": "category", - "parent_id": 191 - }, - { - "id": 557, - "name": "General", - "slug": "general", - "type": "category", - "parent_id": null - }, - { - "id": 558, - "name": "Womens", - "slug": "womens", - "type": "category", - "parent_id": 557 - }, - { - "id": 560, - "name": "Rare Finds", - "slug": "rare", - "type": "category", - "parent_id": 388 - }, - { - "id": 768, - "name": "OLD - Little Luxuries Sale", - "slug": "little-luxuries-sale", - "type": "category", - "parent_id": 388 - } - ], - "isExcludedFromPromo": true, - "subCategories": [ - "Browns", - "Multicolor", - "Structured", - "Top Handles", - "Zip Top", - "Coated Canvas", - "Exotic Skins & Fur", - "Leather", - "Handbags", - "Limited Edition", - "Monogram", - "Limited Edition", - "Monogram", - "Blues", - "Womens", - "Rare Finds", - "OLD - Little Luxuries Sale" - ], - "giftable": false, - "lastCall": false, - "featuredImage": { - "large": "https://prod-images.fashionphile.com/large/255ea18c5ad2ba7c0e910371c7be7a48/de41db0ad0dc939d94f11553aa222f6e.jpg", - "main": "https://prod-images.fashionphile.com/main/255ea18c5ad2ba7c0e910371c7be7a48/de41db0ad0dc939d94f11553aa222f6e.jpg", - "thumb": "https://prod-images.fashionphile.com/thumb/255ea18c5ad2ba7c0e910371c7be7a48/de41db0ad0dc939d94f11553aa222f6e.jpg" - }, "images": [ { - "thumb": "https://prod-images.fashionphile.com/thumb/255ea18c5ad2ba7c0e910371c7be7a48/de41db0ad0dc939d94f11553aa222f6e.jpg", - "main": "https://prod-images.fashionphile.com/main/255ea18c5ad2ba7c0e910371c7be7a48/de41db0ad0dc939d94f11553aa222f6e.jpg", - "large": "https://prod-images.fashionphile.com/large/255ea18c5ad2ba7c0e910371c7be7a48/de41db0ad0dc939d94f11553aa222f6e.jpg", - "altText": "Louis Vuitton undefined image 1 of 11" - }, - { - "thumb": "https://prod-images.fashionphile.com/thumb/255ea18c5ad2ba7c0e910371c7be7a48/d303a20a7c7ea3f6ab5520dddcc2eac1.jpg", - "main": "https://prod-images.fashionphile.com/main/255ea18c5ad2ba7c0e910371c7be7a48/d303a20a7c7ea3f6ab5520dddcc2eac1.jpg", - "large": "https://prod-images.fashionphile.com/large/255ea18c5ad2ba7c0e910371c7be7a48/d303a20a7c7ea3f6ab5520dddcc2eac1.jpg", - "altText": "Louis Vuitton undefined image 2 of 11" - }, - { - "thumb": "https://prod-images.fashionphile.com/thumb/255ea18c5ad2ba7c0e910371c7be7a48/179c6ec816f6fcf11f1308e0073e5fe9.jpg", - "main": "https://prod-images.fashionphile.com/main/255ea18c5ad2ba7c0e910371c7be7a48/179c6ec816f6fcf11f1308e0073e5fe9.jpg", - "large": "https://prod-images.fashionphile.com/large/255ea18c5ad2ba7c0e910371c7be7a48/179c6ec816f6fcf11f1308e0073e5fe9.jpg", - "altText": "Louis Vuitton undefined image 3 of 11" - }, - { - "thumb": "https://prod-images.fashionphile.com/thumb/255ea18c5ad2ba7c0e910371c7be7a48/b6997a41a9b519d1ca2f7d986de9aca2.jpg", - "main": "https://prod-images.fashionphile.com/main/255ea18c5ad2ba7c0e910371c7be7a48/b6997a41a9b519d1ca2f7d986de9aca2.jpg", - "large": "https://prod-images.fashionphile.com/large/255ea18c5ad2ba7c0e910371c7be7a48/b6997a41a9b519d1ca2f7d986de9aca2.jpg", - "altText": "Louis Vuitton undefined image 4 of 11" - }, - { - "thumb": "https://prod-images.fashionphile.com/thumb/255ea18c5ad2ba7c0e910371c7be7a48/e95fcf20786525f54dde08943a90a972.jpg", - "main": "https://prod-images.fashionphile.com/main/255ea18c5ad2ba7c0e910371c7be7a48/e95fcf20786525f54dde08943a90a972.jpg", - "large": "https://prod-images.fashionphile.com/large/255ea18c5ad2ba7c0e910371c7be7a48/e95fcf20786525f54dde08943a90a972.jpg", - "altText": "Louis Vuitton undefined image 5 of 11" - }, - { - "thumb": "https://prod-images.fashionphile.com/thumb/255ea18c5ad2ba7c0e910371c7be7a48/814d71e9c27321d4d762ef136611bb92.jpg", - "main": "https://prod-images.fashionphile.com/main/255ea18c5ad2ba7c0e910371c7be7a48/814d71e9c27321d4d762ef136611bb92.jpg", - "large": "https://prod-images.fashionphile.com/large/255ea18c5ad2ba7c0e910371c7be7a48/814d71e9c27321d4d762ef136611bb92.jpg", - "altText": "Louis Vuitton undefined image 6 of 11" - }, - { - "thumb": "https://prod-images.fashionphile.com/thumb/255ea18c5ad2ba7c0e910371c7be7a48/3fab6c388106f3258737e730a8469830.jpg", - "main": "https://prod-images.fashionphile.com/main/255ea18c5ad2ba7c0e910371c7be7a48/3fab6c388106f3258737e730a8469830.jpg", - "large": "https://prod-images.fashionphile.com/large/255ea18c5ad2ba7c0e910371c7be7a48/3fab6c388106f3258737e730a8469830.jpg", - "altText": "Louis Vuitton undefined image 7 of 11" - }, - { - "thumb": "https://prod-images.fashionphile.com/thumb/255ea18c5ad2ba7c0e910371c7be7a48/d3f327d679663be60fc69434ef63d062.jpg", - "main": "https://prod-images.fashionphile.com/main/255ea18c5ad2ba7c0e910371c7be7a48/d3f327d679663be60fc69434ef63d062.jpg", - "large": "https://prod-images.fashionphile.com/large/255ea18c5ad2ba7c0e910371c7be7a48/d3f327d679663be60fc69434ef63d062.jpg", - "altText": "Louis Vuitton undefined image 8 of 11" - }, - { - "thumb": "https://prod-images.fashionphile.com/thumb/255ea18c5ad2ba7c0e910371c7be7a48/7f1f1e8595a3a1001c892894fa0c28fb.jpg", - "main": "https://prod-images.fashionphile.com/main/255ea18c5ad2ba7c0e910371c7be7a48/7f1f1e8595a3a1001c892894fa0c28fb.jpg", - "large": "https://prod-images.fashionphile.com/large/255ea18c5ad2ba7c0e910371c7be7a48/7f1f1e8595a3a1001c892894fa0c28fb.jpg", - "altText": "Louis Vuitton undefined image 9 of 11" - }, - { - "thumb": "https://prod-images.fashionphile.com/thumb/255ea18c5ad2ba7c0e910371c7be7a48/861b1e1dc6bc3c2e52456a01f4d8077a.jpg", - "main": "https://prod-images.fashionphile.com/main/255ea18c5ad2ba7c0e910371c7be7a48/861b1e1dc6bc3c2e52456a01f4d8077a.jpg", - "large": "https://prod-images.fashionphile.com/large/255ea18c5ad2ba7c0e910371c7be7a48/861b1e1dc6bc3c2e52456a01f4d8077a.jpg", - "altText": "Louis Vuitton undefined image 10 of 11" - }, - { - "thumb": "https://prod-images.fashionphile.com/thumb/255ea18c5ad2ba7c0e910371c7be7a48/307801e9538bde6e4c2c6ce317841b62.jpg", - "main": "https://prod-images.fashionphile.com/main/255ea18c5ad2ba7c0e910371c7be7a48/307801e9538bde6e4c2c6ce317841b62.jpg", - "large": "https://prod-images.fashionphile.com/large/255ea18c5ad2ba7c0e910371c7be7a48/307801e9538bde6e4c2c6ce317841b62.jpg", - "altText": "Louis Vuitton undefined image 11 of 11" - } - ], - "breadcrumbs": [ - { - "label": "Louis Vuitton: All", - "href": "/shop/brands/louis-vuitton" - }, - { - "label": "Bags", - "href": "/shop/categories/handbag-styles?brands=louis-vuitton" - }, - { - "label": "LOUIS VUITTON Ostrich Lizard Majestueux Tote MM Navy" + "id": 51003888337199, + "product_id": 10641393582383, + "position": 1, + "created_at": "2025-06-13T16:37:54-07:00", + "updated_at": "2025-06-13T16:37:57-07:00", + "alt": null, + "width": 1500, + "height": 1500, + "src": "https://cdn.shopify.com/s/files/1/0894/3186/7695/files/eaa3a63349a686dadb8198c8cdabc386.jpg?v=1749857877", + "variant_ids": [] + }, + { + "id": 51003889320239, + "product_id": 10641393582383, + "position": 2, + "created_at": "2025-06-13T16:37:54-07:00", + "updated_at": "2025-06-13T16:37:57-07:00", + "alt": null, + "width": 1500, + "height": 1500, + "src": "https://cdn.shopify.com/s/files/1/0894/3186/7695/files/609f080b0b90e1d9a8e6d2b4b164ac91.jpg?v=1749857877", + "variant_ids": [] + }, + { + "id": 51003885814063, + "product_id": 10641393582383, + "position": 3, + "created_at": "2025-06-13T16:37:54-07:00", + "updated_at": "2025-06-13T16:37:56-07:00", + "alt": null, + "width": 1500, + "height": 1500, + "src": "https://cdn.shopify.com/s/files/1/0894/3186/7695/files/7babd761c2efc32c7949579820f7e732.jpg?v=1749857876", + "variant_ids": [] + }, + { + "id": 51003888402735, + "product_id": 10641393582383, + "position": 4, + "created_at": "2025-06-13T16:37:54-07:00", + "updated_at": "2025-06-13T16:37:57-07:00", + "alt": null, + "width": 1500, + "height": 1500, + "src": "https://cdn.shopify.com/s/files/1/0894/3186/7695/files/8e3bf43e3fcc1202db72c3693eace5d0.jpg?v=1749857877", + "variant_ids": [] + }, + { + "id": 51003889058095, + "product_id": 10641393582383, + "position": 5, + "created_at": "2025-06-13T16:37:54-07:00", + "updated_at": "2025-06-13T16:37:57-07:00", + "alt": null, + "width": 1500, + "height": 1500, + "src": "https://cdn.shopify.com/s/files/1/0894/3186/7695/files/e144283f721ab625d5d10980d2782f8d.jpg?v=1749857877", + "variant_ids": [] + }, + { + "id": 51003887976751, + "product_id": 10641393582383, + "position": 6, + "created_at": "2025-06-13T16:37:54-07:00", + "updated_at": "2025-06-13T16:37:57-07:00", + "alt": null, + "width": 1500, + "height": 1500, + "src": "https://cdn.shopify.com/s/files/1/0894/3186/7695/files/902794b1806144a205924db1f4f74bd3.jpg?v=1749857877", + "variant_ids": [] + }, + { + "id": 51003888271663, + "product_id": 10641393582383, + "position": 7, + "created_at": "2025-06-13T16:37:54-07:00", + "updated_at": "2025-06-13T16:37:57-07:00", + "alt": null, + "width": 1500, + "height": 1500, + "src": "https://cdn.shopify.com/s/files/1/0894/3186/7695/files/768cda285b970f0f1e1e997698bb8bfa.jpg?v=1749857877", + "variant_ids": [] + }, + { + "id": 51003890663727, + "product_id": 10641393582383, + "position": 8, + "created_at": "2025-06-13T16:37:54-07:00", + "updated_at": "2025-06-13T16:37:57-07:00", + "alt": null, + "width": 1500, + "height": 1500, + "src": "https://cdn.shopify.com/s/files/1/0894/3186/7695/files/dd1dca41b0823810c484c91535b7ca4c.jpg?v=1749857877", + "variant_ids": [] + }, + { + "id": 51003886600495, + "product_id": 10641393582383, + "position": 9, + "created_at": "2025-06-13T16:37:54-07:00", + "updated_at": "2025-06-13T16:37:56-07:00", + "alt": null, + "width": 1500, + "height": 1500, + "src": "https://cdn.shopify.com/s/files/1/0894/3186/7695/files/b9d9625bfdde85cdd0f679a62d507971.jpg?v=1749857876", + "variant_ids": [] + }, + { + "id": 51003890270511, + "product_id": 10641393582383, + "position": 10, + "created_at": "2025-06-13T16:37:54-07:00", + "updated_at": "2025-06-13T16:37:57-07:00", + "alt": null, + "width": 1500, + "height": 1500, + "src": "https://cdn.shopify.com/s/files/1/0894/3186/7695/files/718d97bb4e4f6c3d68b74856430378de.jpg?v=1749857877", + "variant_ids": [] } ], - "primaryCategory": "Womens", - "conditionsMap": { - "exterior": [ - "creases", - "structure wear", - "edge wear", - "marks" - ], - "interior": [ - "scuffs", - "surface wear", - "marks", - "cosmetics scent" - ], - "hardware": [ - "scratch(es)", - "tarnished", - "plating wear" - ] - }, - "findAnotherLink": "/shop/louis-vuitton/le?categories=browns+multicolor+structured+top-handles+zip-top+coated-canvas+exotics+leather+handbags+blues+womens+rare+little-luxuries-sale", - "isWatch": false, - "isPurchasable": false, - "retailActive": false, - "parentCategory": "Styles", - "daysOnSale": 4, - "comingSoon": false, - "recommendedProducts": [ - { - "brand": "Louis Vuitton", - "conditionValue": "new", - "condition": "New", - "discountedPrice": "14245.00", - "id": 1563157, - "image": "https://prod-images.fashionphile.com/thumb/8ef03c8cbe7081ec21caefbda89dfbcc/a158f5c0bac2133c629d2c8dc112cc5f.jpg", - "price": "14995.00", - "slug": "/p/louis-vuitton-calfskin-monogram-speedy-p9-bandouliere-50-green-1563157", - "title": "LOUIS VUITTON Calfskin Monogram Speedy P9 Bandouliere 50 Green", - "titleWithoutBrand": "Calfskin Monogram Speedy P9 Bandouliere 50 Green" - }, - { - "brand": "Louis Vuitton", - "conditionValue": "giftable", - "condition": "Giftable", - "discountedPrice": "1525.00", - "id": 1571977, - "image": "https://prod-images.fashionphile.com/thumb/67b46e6e4cfa756eca7991b9b25f2f11/f95bb446a56cab2451cfd5f815312770.jpg", - "price": "1695.00", - "slug": "/p/louis-vuitton-monogram-fold-me-pouch-1571977", - "title": "LOUIS VUITTON Monogram Fold Me Pouch", - "titleWithoutBrand": "Monogram Fold Me Pouch" - }, - { - "brand": "Louis Vuitton", - "conditionValue": "giftable", - "condition": "Giftable", - "discountedPrice": "5150.00", - "id": 1600850, - "image": "https://prod-images.fashionphile.com/thumb/aa38a1e9048a4476fa836d04b3e0a934/ff12338e80c2d27295863fad4ed680e1.jpg", - "price": "5150.00", - "slug": "/p/louis-vuitton-lv-x-tm-monogram-multicolor-nano-speedy-white-1600850", - "title": "LOUIS VUITTON LV X TM Monogram Multicolor Nano Speedy White", - "titleWithoutBrand": "LV X TM Monogram Multicolor Nano Speedy White" - }, - { - "brand": "Louis Vuitton", - "conditionValue": "new", - "condition": "New", - "discountedPrice": "4250.00", - "id": 1596792, - "image": "https://prod-images.fashionphile.com/thumb/2bac9f489b2a09a3b8958b4495424475/b55bad15e259d27289f1331487983f8e.jpg", - "price": "4250.00", - "slug": "/p/louis-vuitton-lv-x-tm-monogram-multicolor-high-rise-bumbag-white-1596792", - "title": "LOUIS VUITTON LV X TM Monogram Multicolor High Rise Bumbag White", - "titleWithoutBrand": "LV X TM Monogram Multicolor High Rise Bumbag White" - }, - { - "brand": "Louis Vuitton", - "conditionValue": "giftable", - "condition": "Giftable", - "discountedPrice": "4250.00", - "id": 1592143, - "image": "https://prod-images.fashionphile.com/thumb/17e42022601638a8e279266f71ce07b9/95a085e26cca9967912c1a7490777af1.jpg", - "price": "4250.00", - "slug": "/p/louis-vuitton-lv-x-tm-monogram-multicolor-high-rise-bumbag-white-1592143", - "title": "LOUIS VUITTON LV X TM Monogram Multicolor High Rise Bumbag White", - "titleWithoutBrand": "LV X TM Monogram Multicolor High Rise Bumbag White" - }, - { - "brand": "Louis Vuitton", - "conditionValue": "new", - "condition": "New", - "discountedPrice": "2450.00", - "id": 1559839, - "image": "https://prod-images.fashionphile.com/thumb/996e33b57f6493c61889c6fdb695811e/762a9be85993ac33e28fa7c892aba36f.jpg", - "price": "2450.00", - "slug": "/p/louis-vuitton-monogram-escale-okinawa-onthego-gm-pastel-1559839", - "title": "LOUIS VUITTON Monogram Escale Okinawa Onthego GM Pastel", - "titleWithoutBrand": "Monogram Escale Okinawa Onthego GM Pastel" - }, - { - "brand": "Louis Vuitton", - "conditionValue": "new", - "condition": "New", - "discountedPrice": "5755.00", - "id": 1523343, - "image": "https://prod-images.fashionphile.com/thumb/baebf5f375325c0fc1f67132df75c617/0e1d8cb0074924a2fc6a1d09affaabe6.jpg", - "price": "6395.00", - "slug": "/p/louis-vuitton-ostrich-side-trunk-pm-candy-blue-1523343", - "title": "LOUIS VUITTON Ostrich Side Trunk PM Candy Blue", - "titleWithoutBrand": "Ostrich Side Trunk PM Candy Blue" - }, - { - "brand": "Louis Vuitton", - "conditionValue": "new", - "condition": "New", - "discountedPrice": "3595.00", - "id": 1591996, - "image": "https://prod-images.fashionphile.com/thumb/669f823b54189b33a0d22445fef97c65/ea98aa8d17e0621c570a93154d30dd14.jpg", - "price": "3595.00", - "slug": "/p/louis-vuitton-monogram-canvas-by-the-pool-hawaii-20-neverfull-gm-blue-1591996", - "title": "LOUIS VUITTON Monogram Canvas By The Pool Hawaii 2.0 Neverfull GM Blue", - "titleWithoutBrand": "Monogram Canvas By The Pool Hawaii 2.0 Neverfull GM Blue" - }, - { - "brand": "Louis Vuitton", - "conditionValue": "giftable", - "condition": "Giftable", - "discountedPrice": "5150.00", - "id": 1596898, - "image": "https://prod-images.fashionphile.com/thumb/fe0eff0d0e968cfff2dc839c019ed01b/91f22f2ad4508d033e90cf6a23ce005f.jpg", - "price": "5150.00", - "slug": "/p/louis-vuitton-lv-x-tm-monogram-multicolor-nano-speedy-white-1596898", - "title": "LOUIS VUITTON LV X TM Monogram Multicolor Nano Speedy White", - "titleWithoutBrand": "LV X TM Monogram Multicolor Nano Speedy White" - }, - { - "brand": "Louis Vuitton", - "conditionValue": "giftable", - "condition": "Giftable", - "discountedPrice": "4250.00", - "id": 1601469, - "image": "https://prod-images.fashionphile.com/thumb/623521924fd6162417c10767c4a430f1/93132b4de56c5f123591943f9f335a15.jpg", - "price": "4250.00", - "slug": "/p/louis-vuitton-lv-x-tm-monogram-multicolor-pochette-accessories-black-1601469", - "title": "LOUIS VUITTON LV X TM Monogram Multicolor Pochette Accessories Black", - "titleWithoutBrand": "LV X TM Monogram Multicolor Pochette Accessories Black" - }, - { - "brand": "Louis Vuitton", - "conditionValue": "new", - "condition": "New", - "discountedPrice": "4250.00", - "id": 1600836, - "image": "https://prod-images.fashionphile.com/thumb/4285e6ae8b96409381f0ebd726427b65/5a064e4a6f8448043e27145cc48a3ff8.jpg", - "price": "4250.00", - "slug": "/p/louis-vuitton-lv-x-tm-monogram-multicolor-high-rise-bumbag-white-1600836", - "title": "LOUIS VUITTON LV X TM Monogram Multicolor High Rise Bumbag White", - "titleWithoutBrand": "LV X TM Monogram Multicolor High Rise Bumbag White" - }, - { - "brand": "Louis Vuitton", - "conditionValue": "giftable", - "condition": "Giftable", - "discountedPrice": "5150.00", - "id": 1598955, - "image": "https://prod-images.fashionphile.com/thumb/97ecbe46d66451846ec6f2a724b32cba/012c2e1bc6fbd41b2f709b45d2cb3516.jpg", - "price": "5150.00", - "slug": "/p/louis-vuitton-lv-x-tm-monogram-multicolor-nano-speedy-black-1598955", - "title": "LOUIS VUITTON LV x TM Monogram Multicolor Nano Speedy Black", - "titleWithoutBrand": "LV x TM Monogram Multicolor Nano Speedy Black" - }, - { - "brand": "Louis Vuitton", - "conditionValue": "giftable", - "condition": "Giftable", - "discountedPrice": "5150.00", - "id": 1596593, - "image": "https://prod-images.fashionphile.com/thumb/97ecbe46d66451846ec6f2a724b32cba/e32074b50b488a88c5bf764298279898.jpg", - "price": "5150.00", - "slug": "/p/louis-vuitton-lv-x-tm-monogram-multicolor-nano-speedy-white-1596593", - "title": "LOUIS VUITTON LV X TM Monogram Multicolor Nano Speedy White", - "titleWithoutBrand": "LV X TM Monogram Multicolor Nano Speedy White" - }, - { - "brand": "Louis Vuitton", - "conditionValue": "giftable", - "condition": "Giftable", - "discountedPrice": "4450.00", - "id": 1600840, - "image": "https://prod-images.fashionphile.com/thumb/97ecbe46d66451846ec6f2a724b32cba/5cd40125199a5ab198d645f89dbb5c56.jpg", - "price": "4450.00", - "slug": "/p/louis-vuitton-lv-x-tm-monogram-multicolor-pochette-accessories-black-1600840", - "title": "LOUIS VUITTON LV X TM Monogram Multicolor Pochette Accessories Black", - "titleWithoutBrand": "LV X TM Monogram Multicolor Pochette Accessories Black" - }, - { - "brand": "Louis Vuitton", - "conditionValue": "giftable", - "condition": "Giftable", - "discountedPrice": "5150.00", - "id": 1586746, - "image": "https://prod-images.fashionphile.com/thumb/2bac9f489b2a09a3b8958b4495424475/474d7a1a95c4df401a4fb313d029f26e.jpg", - "price": "5150.00", - "slug": "/p/louis-vuitton-lv-x-tm-monogram-multicolor-nano-speedy-black-1586746", - "title": "LOUIS VUITTON LV x TM Monogram Multicolor Nano Speedy Black", - "titleWithoutBrand": "LV x TM Monogram Multicolor Nano Speedy Black" - } - ], - "brandUrl": "/shop/brands/louis-vuitton", - "isSizeRef": false, - "conditionsText": "creases, structure wear, edge wear, scuffs, scratch(es), tarnished, plating wear, marks, surface wear, cosmetics scent", - "discount": null, - "dos": 0, - "shipsWithList": [ - "luggage loop", - " dust bag" - ], - "titleWithoutBrand": " Ostrich Lizard Majestueux Tote MM Navy", - "oldSlug": "louis-vuitton-ostrich-lizard-majestueux-tote-mm-navy-1247825", - "layawayDownpaymentAmount": "$210", - "url": "https://apigateway.fashionphile.com/product/1247825", - "carouselData": { - "title": "", - "header": "You may also like", - "productIDs": "", - "productCount": 0, - "productData": [ - { - "brand": "Louis Vuitton", - "conditionValue": "new", - "condition": "New", - "discountedPrice": "14245.00", - "id": 1563157, - "image": { - "thumb": "https://prod-images.fashionphile.com/thumb/8ef03c8cbe7081ec21caefbda89dfbcc/a158f5c0bac2133c629d2c8dc112cc5f.jpg" - }, - "price": "14995.00", - "slug": "/p/louis-vuitton-calfskin-monogram-speedy-p9-bandouliere-50-green-1563157", - "title": "LOUIS VUITTON Calfskin Monogram Speedy P9 Bandouliere 50 Green", - "titleWithoutBrand": "Calfskin Monogram Speedy P9 Bandouliere 50 Green", - "productId": 1563157 - }, - { - "brand": "Louis Vuitton", - "conditionValue": "giftable", - "condition": "Giftable", - "discountedPrice": "1525.00", - "id": 1571977, - "image": { - "thumb": "https://prod-images.fashionphile.com/thumb/67b46e6e4cfa756eca7991b9b25f2f11/f95bb446a56cab2451cfd5f815312770.jpg" - }, - "price": "1695.00", - "slug": "/p/louis-vuitton-monogram-fold-me-pouch-1571977", - "title": "LOUIS VUITTON Monogram Fold Me Pouch", - "titleWithoutBrand": "Monogram Fold Me Pouch", - "productId": 1571977 - }, - { - "brand": "Louis Vuitton", - "conditionValue": "giftable", - "condition": "Giftable", - "discountedPrice": "5150.00", - "id": 1600850, - "image": { - "thumb": "https://prod-images.fashionphile.com/thumb/aa38a1e9048a4476fa836d04b3e0a934/ff12338e80c2d27295863fad4ed680e1.jpg" - }, - "price": "5150.00", - "slug": "/p/louis-vuitton-lv-x-tm-monogram-multicolor-nano-speedy-white-1600850", - "title": "LOUIS VUITTON LV X TM Monogram Multicolor Nano Speedy White", - "titleWithoutBrand": "LV X TM Monogram Multicolor Nano Speedy White", - "productId": 1600850 - }, - { - "brand": "Louis Vuitton", - "conditionValue": "new", - "condition": "New", - "discountedPrice": "4250.00", - "id": 1596792, - "image": { - "thumb": "https://prod-images.fashionphile.com/thumb/2bac9f489b2a09a3b8958b4495424475/b55bad15e259d27289f1331487983f8e.jpg" - }, - "price": "4250.00", - "slug": "/p/louis-vuitton-lv-x-tm-monogram-multicolor-high-rise-bumbag-white-1596792", - "title": "LOUIS VUITTON LV X TM Monogram Multicolor High Rise Bumbag White", - "titleWithoutBrand": "LV X TM Monogram Multicolor High Rise Bumbag White", - "productId": 1596792 - }, - { - "brand": "Louis Vuitton", - "conditionValue": "giftable", - "condition": "Giftable", - "discountedPrice": "4250.00", - "id": 1592143, - "image": { - "thumb": "https://prod-images.fashionphile.com/thumb/17e42022601638a8e279266f71ce07b9/95a085e26cca9967912c1a7490777af1.jpg" - }, - "price": "4250.00", - "slug": "/p/louis-vuitton-lv-x-tm-monogram-multicolor-high-rise-bumbag-white-1592143", - "title": "LOUIS VUITTON LV X TM Monogram Multicolor High Rise Bumbag White", - "titleWithoutBrand": "LV X TM Monogram Multicolor High Rise Bumbag White", - "productId": 1592143 - }, - { - "brand": "Louis Vuitton", - "conditionValue": "new", - "condition": "New", - "discountedPrice": "2450.00", - "id": 1559839, - "image": { - "thumb": "https://prod-images.fashionphile.com/thumb/996e33b57f6493c61889c6fdb695811e/762a9be85993ac33e28fa7c892aba36f.jpg" - }, - "price": "2450.00", - "slug": "/p/louis-vuitton-monogram-escale-okinawa-onthego-gm-pastel-1559839", - "title": "LOUIS VUITTON Monogram Escale Okinawa Onthego GM Pastel", - "titleWithoutBrand": "Monogram Escale Okinawa Onthego GM Pastel", - "productId": 1559839 - }, - { - "brand": "Louis Vuitton", - "conditionValue": "new", - "condition": "New", - "discountedPrice": "5755.00", - "id": 1523343, - "image": { - "thumb": "https://prod-images.fashionphile.com/thumb/baebf5f375325c0fc1f67132df75c617/0e1d8cb0074924a2fc6a1d09affaabe6.jpg" - }, - "price": "6395.00", - "slug": "/p/louis-vuitton-ostrich-side-trunk-pm-candy-blue-1523343", - "title": "LOUIS VUITTON Ostrich Side Trunk PM Candy Blue", - "titleWithoutBrand": "Ostrich Side Trunk PM Candy Blue", - "productId": 1523343 - }, - { - "brand": "Louis Vuitton", - "conditionValue": "new", - "condition": "New", - "discountedPrice": "3595.00", - "id": 1591996, - "image": { - "thumb": "https://prod-images.fashionphile.com/thumb/669f823b54189b33a0d22445fef97c65/ea98aa8d17e0621c570a93154d30dd14.jpg" - }, - "price": "3595.00", - "slug": "/p/louis-vuitton-monogram-canvas-by-the-pool-hawaii-20-neverfull-gm-blue-1591996", - "title": "LOUIS VUITTON Monogram Canvas By The Pool Hawaii 2.0 Neverfull GM Blue", - "titleWithoutBrand": "Monogram Canvas By The Pool Hawaii 2.0 Neverfull GM Blue", - "productId": 1591996 - }, - { - "brand": "Louis Vuitton", - "conditionValue": "giftable", - "condition": "Giftable", - "discountedPrice": "5150.00", - "id": 1596898, - "image": { - "thumb": "https://prod-images.fashionphile.com/thumb/fe0eff0d0e968cfff2dc839c019ed01b/91f22f2ad4508d033e90cf6a23ce005f.jpg" - }, - "price": "5150.00", - "slug": "/p/louis-vuitton-lv-x-tm-monogram-multicolor-nano-speedy-white-1596898", - "title": "LOUIS VUITTON LV X TM Monogram Multicolor Nano Speedy White", - "titleWithoutBrand": "LV X TM Monogram Multicolor Nano Speedy White", - "productId": 1596898 - }, - { - "brand": "Louis Vuitton", - "conditionValue": "giftable", - "condition": "Giftable", - "discountedPrice": "4250.00", - "id": 1601469, - "image": { - "thumb": "https://prod-images.fashionphile.com/thumb/623521924fd6162417c10767c4a430f1/93132b4de56c5f123591943f9f335a15.jpg" - }, - "price": "4250.00", - "slug": "/p/louis-vuitton-lv-x-tm-monogram-multicolor-pochette-accessories-black-1601469", - "title": "LOUIS VUITTON LV X TM Monogram Multicolor Pochette Accessories Black", - "titleWithoutBrand": "LV X TM Monogram Multicolor Pochette Accessories Black", - "productId": 1601469 - }, - { - "brand": "Louis Vuitton", - "conditionValue": "new", - "condition": "New", - "discountedPrice": "4250.00", - "id": 1600836, - "image": { - "thumb": "https://prod-images.fashionphile.com/thumb/4285e6ae8b96409381f0ebd726427b65/5a064e4a6f8448043e27145cc48a3ff8.jpg" - }, - "price": "4250.00", - "slug": "/p/louis-vuitton-lv-x-tm-monogram-multicolor-high-rise-bumbag-white-1600836", - "title": "LOUIS VUITTON LV X TM Monogram Multicolor High Rise Bumbag White", - "titleWithoutBrand": "LV X TM Monogram Multicolor High Rise Bumbag White", - "productId": 1600836 - }, - { - "brand": "Louis Vuitton", - "conditionValue": "giftable", - "condition": "Giftable", - "discountedPrice": "5150.00", - "id": 1598955, - "image": { - "thumb": "https://prod-images.fashionphile.com/thumb/97ecbe46d66451846ec6f2a724b32cba/012c2e1bc6fbd41b2f709b45d2cb3516.jpg" - }, - "price": "5150.00", - "slug": "/p/louis-vuitton-lv-x-tm-monogram-multicolor-nano-speedy-black-1598955", - "title": "LOUIS VUITTON LV x TM Monogram Multicolor Nano Speedy Black", - "titleWithoutBrand": "LV x TM Monogram Multicolor Nano Speedy Black", - "productId": 1598955 - }, - { - "brand": "Louis Vuitton", - "conditionValue": "giftable", - "condition": "Giftable", - "discountedPrice": "5150.00", - "id": 1596593, - "image": { - "thumb": "https://prod-images.fashionphile.com/thumb/97ecbe46d66451846ec6f2a724b32cba/e32074b50b488a88c5bf764298279898.jpg" - }, - "price": "5150.00", - "slug": "/p/louis-vuitton-lv-x-tm-monogram-multicolor-nano-speedy-white-1596593", - "title": "LOUIS VUITTON LV X TM Monogram Multicolor Nano Speedy White", - "titleWithoutBrand": "LV X TM Monogram Multicolor Nano Speedy White", - "productId": 1596593 - }, - { - "brand": "Louis Vuitton", - "conditionValue": "giftable", - "condition": "Giftable", - "discountedPrice": "4450.00", - "id": 1600840, - "image": { - "thumb": "https://prod-images.fashionphile.com/thumb/97ecbe46d66451846ec6f2a724b32cba/5cd40125199a5ab198d645f89dbb5c56.jpg" - }, - "price": "4450.00", - "slug": "/p/louis-vuitton-lv-x-tm-monogram-multicolor-pochette-accessories-black-1600840", - "title": "LOUIS VUITTON LV X TM Monogram Multicolor Pochette Accessories Black", - "titleWithoutBrand": "LV X TM Monogram Multicolor Pochette Accessories Black", - "productId": 1600840 - }, - { - "brand": "Louis Vuitton", - "conditionValue": "giftable", - "condition": "Giftable", - "discountedPrice": "5150.00", - "id": 1586746, - "image": { - "thumb": "https://prod-images.fashionphile.com/thumb/2bac9f489b2a09a3b8958b4495424475/474d7a1a95c4df401a4fb313d029f26e.jpg" - }, - "price": "5150.00", - "slug": "/p/louis-vuitton-lv-x-tm-monogram-multicolor-nano-speedy-black-1586746", - "title": "LOUIS VUITTON LV x TM Monogram Multicolor Nano Speedy Black", - "titleWithoutBrand": "LV x TM Monogram Multicolor Nano Speedy Black", - "productId": 1586746 - } - ] - }, - "recommendedProductIds": [ - "1247825", - "1563157", - "1571977", - "1600850", - "1596792", - "1592143", - "1559839", - "1523343", - "1591996", - "1596898", - "1601469", - "1600836", - "1598955", - "1596593", - "1600840", - "1586746" - ], - "productType": "SOLD_OUT", - "authenticCta": "We guarantee this is an authentic Louis Vuitton item or 100% of your money back. ", - "disclaimer": "Louis Vuitton\n is a registered trademark of\n Louis Vuitton. FASHIONPHILE is not affiliated with\n Louis Vuitton." + "image": { + "id": 51003888337199, + "product_id": 10641393582383, + "position": 1, + "created_at": "2025-06-13T16:37:54-07:00", + "updated_at": "2025-06-13T16:37:57-07:00", + "alt": null, + "width": 1500, + "height": 1500, + "src": "https://cdn.shopify.com/s/files/1/0894/3186/7695/files/eaa3a63349a686dadb8198c8cdabc386.jpg?v=1749857877", + "variant_ids": [] + } } ] \ No newline at end of file diff --git a/fashionphile-scraper/results/search.json b/fashionphile-scraper/results/search.json index f31746d..b0cfd20 100644 --- a/fashionphile-scraper/results/search.json +++ b/fashionphile-scraper/results/search.json @@ -1,80786 +1,2882 @@ [ { - "best_value": 925, - "categories": [ - "Handbags", - "Open Top", - "Top Handles", - "Leather", - "Grays", - "Styles", - "Garden Party", - "Totes", - "Shoulder Bags", - "Solid Color", - "Hermes" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoulder-bags-on-sale", - "bags-under-1000", - "bags-on-sale", - "garden-party", - "hermes-totes", - "totes-on-sale", - "top-handles", - "totes", - "hermes", - "handbag-styles", - "hermes-garden-party-bags", - "shoulder-bags", - "handbags", - "hermes-on-sale", - "hermes-bags" - ], - "description": "This is an authentic HERMES Fjord Garden Party Tote 36 MM in Gris Perle. This sophisticated tote is finely crafted of luxurious deeply grained leather in light gray. The bag features expandable sides, facing trim that transitions into rolled leather top handles and a top snap in silver that opens to a spacious fabric interior with pockets. ", - "discounted_price": 2750, - "discounted_tier": 1, - "filters": { - "bags": [ - "Handbags", - "Totes", - "Shoulder Bags" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Hermes" - ], - "color": [ - "Grays" - ], - "material": [ - "Leather", - "Solid Color" - ], - "bag_feature": [ - "Open Top", - "Top Handles" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "Over $2000", - "condition": [ - "Shows Wear" - ], - "locations": [ - "New York" - ] - }, - "following_count": 39, - "id": 1542105, - "made_available_at": 1740433417, - "price": 2895, - "priced_at": 1743023889, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/5f4613ca2c8020bee92c5f19bf959e5c/d0f4482b04ca4333eed08a96b86eac95.jpg", - "thumb": "/thumb/5f4613ca2c8020bee92c5f19bf959e5c/d0f4482b04ca4333eed08a96b86eac95.jpg", - "tiny": "/tiny/5f4613ca2c8020bee92c5f19bf959e5c/d0f4482b04ca4333eed08a96b86eac95.jpg" - }, - { - "order": 2, - "path": "/thumb/5f4613ca2c8020bee92c5f19bf959e5c/4abf1ba910489309a6acdc5e45e8fc22.jpg", - "thumb": "/thumb/5f4613ca2c8020bee92c5f19bf959e5c/4abf1ba910489309a6acdc5e45e8fc22.jpg", - "tiny": "/tiny/5f4613ca2c8020bee92c5f19bf959e5c/4abf1ba910489309a6acdc5e45e8fc22.jpg" - } - ], - "title": "HERMES Fjord Garden Party Tote 36 MM Gris Perle", - "title_without_brand": "Fjord Garden Party Tote 36 MM Gris Perle", - "_tags": [ - "1542105" - ], - "objectID": "1542105", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "garden-party", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-totes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "totes-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "top-handles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "totes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-garden-party-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-bags", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic HERMES Fjord Garden Party Tote 36 MM in Gris Perle. This sophisticated tote is finely crafted of luxurious deeply grained leather in light gray. The bag features expandable sides, facing trim that transitions into rolled leather top handles and a top snap in silver that opens to a spacious fabric interior with pockets. ", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Hermes", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Grays", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1542105", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "HERMES Fjord Garden Party Tote 36 MM Gris Perle", - "matchLevel": "none", - "matchedWords": [] - } - } - }, - { - "best_value": 925, - "categories": [ - "Handbags", - "Open Top", - "Top Handles", - "Leather", - "Grays", - "Styles", - "Garden Party", - "Totes", - "Shoulder Bags", - "Solid Color", - "Hermes" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoulder-bags-on-sale", - "bags-under-1000", - "bags-on-sale", - "garden-party", - "hermes-totes", - "totes-on-sale", - "top-handles", - "totes", - "hermes", - "handbag-styles", - "hermes-garden-party-bags", - "shoulder-bags", - "handbags", - "hermes-on-sale", - "hermes-bags" - ], - "description": "This is an authentic HERMES Fjord Garden Party Tote 36 MM in Gris Perle. This sophisticated tote is finely crafted of luxurious deeply grained leather in light gray. The bag features expandable sides, facing trim that transitions into rolled leather top handles and a top snap in silver that opens to a spacious fabric interior with pockets. ", - "discounted_price": 2750, - "discounted_tier": 1, - "filters": { - "bags": [ - "Handbags", - "Totes", - "Shoulder Bags" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Hermes" - ], - "color": [ - "Grays" - ], - "material": [ - "Leather", - "Solid Color" - ], - "bag_feature": [ - "Open Top", - "Top Handles" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "Over $2000", - "condition": [ - "Shows Wear" - ], - "locations": [ - "New York" - ] - }, - "following_count": 39, - "id": 1542105, - "made_available_at": 1740433417, - "price": 2895, - "priced_at": 1743023889, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/5f4613ca2c8020bee92c5f19bf959e5c/d0f4482b04ca4333eed08a96b86eac95.jpg", - "thumb": "/thumb/5f4613ca2c8020bee92c5f19bf959e5c/d0f4482b04ca4333eed08a96b86eac95.jpg", - "tiny": "/tiny/5f4613ca2c8020bee92c5f19bf959e5c/d0f4482b04ca4333eed08a96b86eac95.jpg" - }, - { - "order": 2, - "path": "/thumb/5f4613ca2c8020bee92c5f19bf959e5c/4abf1ba910489309a6acdc5e45e8fc22.jpg", - "thumb": "/thumb/5f4613ca2c8020bee92c5f19bf959e5c/4abf1ba910489309a6acdc5e45e8fc22.jpg", - "tiny": "/tiny/5f4613ca2c8020bee92c5f19bf959e5c/4abf1ba910489309a6acdc5e45e8fc22.jpg" - } - ], - "title": "HERMES Fjord Garden Party Tote 36 MM Gris Perle", - "title_without_brand": "Fjord Garden Party Tote 36 MM Gris Perle", - "_tags": [ - "1542105" - ], - "objectID": "1542105", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "garden-party", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-totes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "totes-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "top-handles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "totes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-garden-party-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-bags", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic HERMES Fjord Garden Party Tote 36 MM in Gris Perle. This sophisticated tote is finely crafted of luxurious deeply grained leather in light gray. The bag features expandable sides, facing trim that transitions into rolled leather top handles and a top snap in silver that opens to a spacious fabric interior with pockets. ", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Hermes", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Grays", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1542105", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "HERMES Fjord Garden Party Tote 36 MM Gris Perle", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Chanel", + "product_name": "Fabric Camellia CC Espadrilles 39 Khaki", + "condition": "Shows Wear", + "discounted_price": 0, + "price": 225, + "id": 10546799870255 + }, + { + "brand_name": "Christian Dior", + "product_name": "Calfskin Cannage Diamond Small My ABCDior Lady Dior Rose Des Vents", + "condition": "Excellent", + "discounted_price": 0, + "price": 5145, + "id": 10689554940207 + }, + { + "brand_name": "Louis Vuitton", + "product_name": "Reverse Monogram Palm Springs Backpack PM", + "condition": "Excellent", + "discounted_price": 0, + "price": 2260, + "id": 10693327257903 + }, + { + "brand_name": "Hermes", + "product_name": "Madame Calfskin Shiny Niloticus Crocodile Kelly Sellier Touch 25 Black", + "condition": "Giftable", + "discounted_price": 0, + "price": 33550, + "id": 10768010608943 + }, + { + "brand_name": "Hermes", + "product_name": "Epsom Verso Kelly Wallet To Go Bleu Frida Rouge H", + "condition": "Excellent", + "discounted_price": 0, + "price": 6830, + "id": 10685277864239 + }, + { + "brand_name": "Chanel", + "product_name": "Tweed Quilted Wallet On Chain WOC Pink", + "condition": "Excellent", + "discounted_price": 0, + "price": 3225, + "id": 10547346080047 + }, + { + "brand_name": "Chanel", + "product_name": "Calfskin Braided Mini My Own Frame Flap Black", + "condition": "Shows Wear", + "discounted_price": 0, + "price": 3350, + "id": 10590206329135 + }, + { + "brand_name": "Valentino Garavani", + "product_name": "Calfskin Rockstud No Limit High-Heel Sandals 39.5 Light Ivory", + "condition": "Shows Wear", + "discounted_price": 0, + "price": 460, + "id": 10654023188783 + }, + { + "brand_name": "Louis Vuitton", + "product_name": "LV X TM Monogram Pochette Accessories Sakura Brown", + "condition": "Excellent", + "discounted_price": 0, + "price": 4890, + "id": 10685182771503 + }, + { + "brand_name": "Chanel", + "product_name": "Acetate Crystal CC Sunglasses 6008-B Black", + "condition": "Shows Wear", + "discounted_price": 0, + "price": 255, + "id": 10583267017007 + }, + { + "brand_name": "Chloe", + "product_name": "Suede Calfskin Mini Faye Backpack Tan", + "condition": "Shows Wear", + "discounted_price": 20, + "price": 395, + "id": 10744969560367 }, { - "best_value": 925, - "categories": [ - "Handbags", - "Open Top", - "Top Handles", - "Leather", - "Grays", - "Styles", - "Garden Party", - "Totes", - "Shoulder Bags", - "Solid Color", - "Hermes" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoulder-bags-on-sale", - "bags-under-1000", - "bags-on-sale", - "garden-party", - "hermes-totes", - "totes-on-sale", - "top-handles", - "totes", - "hermes", - "handbag-styles", - "hermes-garden-party-bags", - "shoulder-bags", - "handbags", - "hermes-on-sale", - "hermes-bags" - ], - "description": "This is an authentic HERMES Fjord Garden Party Tote 36 MM in Gris Perle. This sophisticated tote is finely crafted of luxurious deeply grained leather in light gray. The bag features expandable sides, facing trim that transitions into rolled leather top handles and a top snap in silver that opens to a spacious fabric interior with pockets. ", - "discounted_price": 2750, - "discounted_tier": 1, - "filters": { - "bags": [ - "Handbags", - "Totes", - "Shoulder Bags" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Hermes" - ], - "color": [ - "Grays" - ], - "material": [ - "Leather", - "Solid Color" - ], - "bag_feature": [ - "Open Top", - "Top Handles" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "Over $2000", - "condition": [ - "Shows Wear" - ], - "locations": [ - "New York" - ] - }, - "following_count": 39, - "id": 1542105, - "made_available_at": 1740433417, - "price": 2895, - "priced_at": 1743023889, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/5f4613ca2c8020bee92c5f19bf959e5c/d0f4482b04ca4333eed08a96b86eac95.jpg", - "thumb": "/thumb/5f4613ca2c8020bee92c5f19bf959e5c/d0f4482b04ca4333eed08a96b86eac95.jpg", - "tiny": "/tiny/5f4613ca2c8020bee92c5f19bf959e5c/d0f4482b04ca4333eed08a96b86eac95.jpg" - }, - { - "order": 2, - "path": "/thumb/5f4613ca2c8020bee92c5f19bf959e5c/4abf1ba910489309a6acdc5e45e8fc22.jpg", - "thumb": "/thumb/5f4613ca2c8020bee92c5f19bf959e5c/4abf1ba910489309a6acdc5e45e8fc22.jpg", - "tiny": "/tiny/5f4613ca2c8020bee92c5f19bf959e5c/4abf1ba910489309a6acdc5e45e8fc22.jpg" - } - ], - "title": "HERMES Fjord Garden Party Tote 36 MM Gris Perle", - "title_without_brand": "Fjord Garden Party Tote 36 MM Gris Perle", - "_tags": [ - "1542105" - ], - "objectID": "1542105", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "garden-party", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-totes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "totes-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "top-handles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "totes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-garden-party-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-bags", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic HERMES Fjord Garden Party Tote 36 MM in Gris Perle. This sophisticated tote is finely crafted of luxurious deeply grained leather in light gray. The bag features expandable sides, facing trim that transitions into rolled leather top handles and a top snap in silver that opens to a spacious fabric interior with pockets. ", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Hermes", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Grays", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1542105", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "HERMES Fjord Garden Party Tote 36 MM Gris Perle", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Louis Vuitton", + "product_name": "Empreinte Monogram Giant Neverfull MM Degrade Neutral", + "condition": "Excellent", + "discounted_price": 120, + "price": 2300, + "id": 10723700703535 }, { - "best_value": 1765, - "categories": [ - "Womens", - "Bracelets", - "Yellow Gold", - "Jewelry", - "Tiffany", - "Love Luxury Event" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "tiffany-bracelets", - "tiffany-jewelry-on-sale", - "tiffany-elsa-peretti-collection", - "bracelets", - "yellow-gold", - "bracelets-on-sale", - "chain-bracelets", - "yellow-gold-bracelets", - "tiffany-t-collection", - "giftable-jewelry", - "jewelry-on-sale", - "tiffany", - "jewelry", - "love-luxury-event", - "tiffany-jewelry" - ], - "description": "This is an authentic TIFFANY 18K Yellow Gold Elsa Peretti Five Charm Bracelet. The bracelet is crafted of 18 karat yellow gold and features an oval link chain with five of the iconic Elsa Peretti motif charms.", - "discounted_price": 2135, - "discounted_tier": 1, - "filters": { - "bags": [], - "jewelry": [ - "Bracelets" - ], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Tiffany" - ], - "color": [], - "material": [ - "Yellow Gold" - ], - "bag_feature": [], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "Over $2000", - "condition": [ - "Excellent" - ], - "locations": [ - "Carlsbad" - ] - }, - "following_count": 120, - "id": 1547701, - "made_available_at": 1740436819, - "price": 2250, - "priced_at": 1743026420, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/5c18f5adb4998ec61fc6f8e1264f1523/bf39f4a3373a0a1b83fd323ef75b96d9.jpg", - "thumb": "/thumb/5c18f5adb4998ec61fc6f8e1264f1523/bf39f4a3373a0a1b83fd323ef75b96d9.jpg", - "tiny": "/tiny/5c18f5adb4998ec61fc6f8e1264f1523/bf39f4a3373a0a1b83fd323ef75b96d9.jpg" - }, - { - "order": 3, - "path": "/thumb/5c18f5adb4998ec61fc6f8e1264f1523/e5be22f68e36ab7f30f1edcaa619c29a.jpg", - "thumb": "/thumb/5c18f5adb4998ec61fc6f8e1264f1523/e5be22f68e36ab7f30f1edcaa619c29a.jpg", - "tiny": "/tiny/5c18f5adb4998ec61fc6f8e1264f1523/e5be22f68e36ab7f30f1edcaa619c29a.jpg" - } - ], - "title": "TIFFANY 18K Yellow Gold Elsa Peretti Five Charm Bracelet", - "title_without_brand": "18K Yellow Gold Elsa Peretti Five Charm Bracelet", - "_tags": [ - "1547701" - ], - "objectID": "1547701", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "tiffany-bracelets", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "tiffany-jewelry-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "tiffany-elsa-peretti-collection", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bracelets", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "yellow-gold", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bracelets-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chain-bracelets", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "yellow-gold-bracelets", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "tiffany-t-collection", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "giftable-jewelry", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "jewelry-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "tiffany", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "jewelry", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "love-luxury-event", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "tiffany-jewelry", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic TIFFANY 18K Yellow Gold Elsa Peretti Five Charm Bracelet. The bracelet is crafted of 18 karat yellow gold and features an oval link chain with five of the iconic Elsa Peretti motif charms.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Tiffany", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Yellow Gold", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1547701", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "TIFFANY 18K Yellow Gold Elsa Peretti Five Charm Bracelet", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Chanel", + "product_name": "Lambskin Quilted Medium Chanel 19 Flap Green", + "condition": "Excellent", + "discounted_price": 205, + "price": 3870, + "id": 10547349618991 }, { - "best_value": 1765, - "categories": [ - "Womens", - "Bracelets", - "Yellow Gold", - "Jewelry", - "Tiffany", - "Love Luxury Event" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "tiffany-bracelets", - "tiffany-jewelry-on-sale", - "tiffany-elsa-peretti-collection", - "bracelets", - "yellow-gold", - "bracelets-on-sale", - "chain-bracelets", - "yellow-gold-bracelets", - "tiffany-t-collection", - "giftable-jewelry", - "jewelry-on-sale", - "tiffany", - "jewelry", - "love-luxury-event", - "tiffany-jewelry" - ], - "description": "This is an authentic TIFFANY 18K Yellow Gold Elsa Peretti Five Charm Bracelet. The bracelet is crafted of 18 karat yellow gold and features an oval link chain with five of the iconic Elsa Peretti motif charms.", - "discounted_price": 2135, - "discounted_tier": 1, - "filters": { - "bags": [], - "jewelry": [ - "Bracelets" - ], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Tiffany" - ], - "color": [], - "material": [ - "Yellow Gold" - ], - "bag_feature": [], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "Over $2000", - "condition": [ - "Excellent" - ], - "locations": [ - "Carlsbad" - ] - }, - "following_count": 120, - "id": 1547701, - "made_available_at": 1740436819, - "price": 2250, - "priced_at": 1743026420, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/5c18f5adb4998ec61fc6f8e1264f1523/bf39f4a3373a0a1b83fd323ef75b96d9.jpg", - "thumb": "/thumb/5c18f5adb4998ec61fc6f8e1264f1523/bf39f4a3373a0a1b83fd323ef75b96d9.jpg", - "tiny": "/tiny/5c18f5adb4998ec61fc6f8e1264f1523/bf39f4a3373a0a1b83fd323ef75b96d9.jpg" - }, - { - "order": 3, - "path": "/thumb/5c18f5adb4998ec61fc6f8e1264f1523/e5be22f68e36ab7f30f1edcaa619c29a.jpg", - "thumb": "/thumb/5c18f5adb4998ec61fc6f8e1264f1523/e5be22f68e36ab7f30f1edcaa619c29a.jpg", - "tiny": "/tiny/5c18f5adb4998ec61fc6f8e1264f1523/e5be22f68e36ab7f30f1edcaa619c29a.jpg" - } - ], - "title": "TIFFANY 18K Yellow Gold Elsa Peretti Five Charm Bracelet", - "title_without_brand": "18K Yellow Gold Elsa Peretti Five Charm Bracelet", - "_tags": [ - "1547701" - ], - "objectID": "1547701", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "tiffany-bracelets", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "tiffany-jewelry-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "tiffany-elsa-peretti-collection", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bracelets", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "yellow-gold", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bracelets-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chain-bracelets", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "yellow-gold-bracelets", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "tiffany-t-collection", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "giftable-jewelry", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "jewelry-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "tiffany", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "jewelry", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "love-luxury-event", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "tiffany-jewelry", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic TIFFANY 18K Yellow Gold Elsa Peretti Five Charm Bracelet. The bracelet is crafted of 18 karat yellow gold and features an oval link chain with five of the iconic Elsa Peretti motif charms.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Tiffany", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Yellow Gold", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1547701", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "TIFFANY 18K Yellow Gold Elsa Peretti Five Charm Bracelet", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Valentino Garavani", + "product_name": "Grained Calfskin Turquoise Rockstud Rolling Ankle Wrap Espadrille 20mm Flats 40 Light Ivory Natural", + "condition": "Excellent", + "discounted_price": 15, + "price": 315, + "id": 10681657884975 }, { - "best_value": 1765, - "categories": [ - "Womens", - "Bracelets", - "Yellow Gold", - "Jewelry", - "Tiffany", - "Love Luxury Event" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "tiffany-bracelets", - "tiffany-jewelry-on-sale", - "tiffany-elsa-peretti-collection", - "bracelets", - "yellow-gold", - "bracelets-on-sale", - "chain-bracelets", - "yellow-gold-bracelets", - "tiffany-t-collection", - "giftable-jewelry", - "jewelry-on-sale", - "tiffany", - "jewelry", - "love-luxury-event", - "tiffany-jewelry" - ], - "description": "This is an authentic TIFFANY 18K Yellow Gold Elsa Peretti Five Charm Bracelet. The bracelet is crafted of 18 karat yellow gold and features an oval link chain with five of the iconic Elsa Peretti motif charms.", - "discounted_price": 2135, - "discounted_tier": 1, - "filters": { - "bags": [], - "jewelry": [ - "Bracelets" - ], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Tiffany" - ], - "color": [], - "material": [ - "Yellow Gold" - ], - "bag_feature": [], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "Over $2000", - "condition": [ - "Excellent" - ], - "locations": [ - "Carlsbad" - ] - }, - "following_count": 120, - "id": 1547701, - "made_available_at": 1740436819, - "price": 2250, - "priced_at": 1743026420, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/5c18f5adb4998ec61fc6f8e1264f1523/bf39f4a3373a0a1b83fd323ef75b96d9.jpg", - "thumb": "/thumb/5c18f5adb4998ec61fc6f8e1264f1523/bf39f4a3373a0a1b83fd323ef75b96d9.jpg", - "tiny": "/tiny/5c18f5adb4998ec61fc6f8e1264f1523/bf39f4a3373a0a1b83fd323ef75b96d9.jpg" - }, - { - "order": 3, - "path": "/thumb/5c18f5adb4998ec61fc6f8e1264f1523/e5be22f68e36ab7f30f1edcaa619c29a.jpg", - "thumb": "/thumb/5c18f5adb4998ec61fc6f8e1264f1523/e5be22f68e36ab7f30f1edcaa619c29a.jpg", - "tiny": "/tiny/5c18f5adb4998ec61fc6f8e1264f1523/e5be22f68e36ab7f30f1edcaa619c29a.jpg" - } - ], - "title": "TIFFANY 18K Yellow Gold Elsa Peretti Five Charm Bracelet", - "title_without_brand": "18K Yellow Gold Elsa Peretti Five Charm Bracelet", - "_tags": [ - "1547701" - ], - "objectID": "1547701", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "tiffany-bracelets", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "tiffany-jewelry-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "tiffany-elsa-peretti-collection", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bracelets", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "yellow-gold", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bracelets-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chain-bracelets", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "yellow-gold-bracelets", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "tiffany-t-collection", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "giftable-jewelry", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "jewelry-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "tiffany", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "jewelry", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "love-luxury-event", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "tiffany-jewelry", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic TIFFANY 18K Yellow Gold Elsa Peretti Five Charm Bracelet. The bracelet is crafted of 18 karat yellow gold and features an oval link chain with five of the iconic Elsa Peretti motif charms.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Tiffany", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Yellow Gold", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1547701", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "TIFFANY 18K Yellow Gold Elsa Peretti Five Charm Bracelet", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Louis Vuitton", + "product_name": "Lambskin Embossed Monogram Pochette Coussin Crossbody Black", + "condition": "Excellent", + "discounted_price": 145, + "price": 2705, + "id": 10679009968431 }, { - "best_value": 365, - "categories": [ - "Whites", - "Womens", - "Earrings", - "White Gold", - "Fine Jewelry", - "General", - "Jewelry", - "Gifts for Grads", - "Hot Picks Sale", - "For the Bride", - "Tiffany" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "earrings", - "diamond-earrings", - "tiffany-jewelry-on-sale", - "earrings-on-sale", - "white-gold-earrings", - "fine-jewelry", - "tiffany-earrings", - "tiffany-t-collection", - "giftable-jewelry", - "jewelry-on-sale", - "bridal-accessories", - "graduation-gift-ideas", - "tiffany", - "jewelry", - "tiffany-jewelry" - ], - "description": "This is an authentic pair of TIFFANY 18K White Gold Diamond Akoya Pearl 6.5-7mm Signature Earrings. The earrings are crafted of 18-karat white gold and feature 6.5-7mm white Akoya cultured pearls and round brilliant cut diamonds, approximately .10 total carat weight.", - "discounted_price": 1185, - "discounted_tier": 1, - "filters": { - "bags": [], - "jewelry": [ - "Earrings" - ], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Tiffany" - ], - "color": [ - "Whites" - ], - "material": [ - "White Gold" - ], - "bag_feature": [], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$1000-$2000", - "condition": [ - "Giftable" - ], - "locations": [ - "Carlsbad" - ] - }, - "following_count": 117, - "id": 1555666, - "made_available_at": 1740436830, - "price": 1250, - "priced_at": 1743026421, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/d925c88db4f6231c1dd83a75305c823f/8bb7a0933bf56a355e8b150ff2a1abbd.jpg", - "thumb": "/thumb/d925c88db4f6231c1dd83a75305c823f/8bb7a0933bf56a355e8b150ff2a1abbd.jpg", - "tiny": "/tiny/d925c88db4f6231c1dd83a75305c823f/8bb7a0933bf56a355e8b150ff2a1abbd.jpg" - }, - { - "order": 2, - "path": "/thumb/d925c88db4f6231c1dd83a75305c823f/c228384daa1e8203a2582db8e44183e3.jpg", - "thumb": "/thumb/d925c88db4f6231c1dd83a75305c823f/c228384daa1e8203a2582db8e44183e3.jpg", - "tiny": "/tiny/d925c88db4f6231c1dd83a75305c823f/c228384daa1e8203a2582db8e44183e3.jpg" - } - ], - "title": "TIFFANY 18K White Gold Diamond Akoya Pearl 6.5-7mm Signature Earrings", - "title_without_brand": "18K White Gold Diamond Akoya Pearl 6.5-7mm Signature Earrings", - "_tags": [ - "1555666" - ], - "objectID": "1555666", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "earrings", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "diamond-earrings", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "tiffany-jewelry-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "earrings-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "white-gold-earrings", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "fine-jewelry", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "tiffany-earrings", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "tiffany-t-collection", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "giftable-jewelry", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "jewelry-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bridal-accessories", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "graduation-gift-ideas", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "tiffany", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "jewelry", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "tiffany-jewelry", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic pair of TIFFANY 18K White Gold Diamond Akoya Pearl 6.5-7mm Signature Earrings. The earrings are crafted of 18-karat white gold and feature 6.5-7mm white Akoya cultured pearls and round brilliant cut diamonds, approximately .10 total carat weight.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Tiffany", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Whites", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "White Gold", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1555666", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "TIFFANY 18K White Gold Diamond Akoya Pearl 6.5-7mm Signature Earrings", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Celine", + "product_name": "Soft Grained Calfskin Small Belt Cabas Phantom Taupe", + "condition": "Shows Wear", + "discounted_price": 45, + "price": 895, + "id": 10744965103919 }, { - "best_value": 365, - "categories": [ - "Whites", - "Womens", - "Earrings", - "White Gold", - "Fine Jewelry", - "General", - "Jewelry", - "Gifts for Grads", - "Hot Picks Sale", - "For the Bride", - "Tiffany" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "earrings", - "diamond-earrings", - "tiffany-jewelry-on-sale", - "earrings-on-sale", - "white-gold-earrings", - "fine-jewelry", - "tiffany-earrings", - "tiffany-t-collection", - "giftable-jewelry", - "jewelry-on-sale", - "bridal-accessories", - "graduation-gift-ideas", - "tiffany", - "jewelry", - "tiffany-jewelry" - ], - "description": "This is an authentic pair of TIFFANY 18K White Gold Diamond Akoya Pearl 6.5-7mm Signature Earrings. The earrings are crafted of 18-karat white gold and feature 6.5-7mm white Akoya cultured pearls and round brilliant cut diamonds, approximately .10 total carat weight.", - "discounted_price": 1185, - "discounted_tier": 1, - "filters": { - "bags": [], - "jewelry": [ - "Earrings" - ], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Tiffany" - ], - "color": [ - "Whites" - ], - "material": [ - "White Gold" - ], - "bag_feature": [], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$1000-$2000", - "condition": [ - "Giftable" - ], - "locations": [ - "Carlsbad" - ] - }, - "following_count": 117, - "id": 1555666, - "made_available_at": 1740436830, - "price": 1250, - "priced_at": 1743026421, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/d925c88db4f6231c1dd83a75305c823f/8bb7a0933bf56a355e8b150ff2a1abbd.jpg", - "thumb": "/thumb/d925c88db4f6231c1dd83a75305c823f/8bb7a0933bf56a355e8b150ff2a1abbd.jpg", - "tiny": "/tiny/d925c88db4f6231c1dd83a75305c823f/8bb7a0933bf56a355e8b150ff2a1abbd.jpg" - }, - { - "order": 2, - "path": "/thumb/d925c88db4f6231c1dd83a75305c823f/c228384daa1e8203a2582db8e44183e3.jpg", - "thumb": "/thumb/d925c88db4f6231c1dd83a75305c823f/c228384daa1e8203a2582db8e44183e3.jpg", - "tiny": "/tiny/d925c88db4f6231c1dd83a75305c823f/c228384daa1e8203a2582db8e44183e3.jpg" - } - ], - "title": "TIFFANY 18K White Gold Diamond Akoya Pearl 6.5-7mm Signature Earrings", - "title_without_brand": "18K White Gold Diamond Akoya Pearl 6.5-7mm Signature Earrings", - "_tags": [ - "1555666" - ], - "objectID": "1555666", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "earrings", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "diamond-earrings", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "tiffany-jewelry-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "earrings-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "white-gold-earrings", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "fine-jewelry", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "tiffany-earrings", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "tiffany-t-collection", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "giftable-jewelry", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "jewelry-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bridal-accessories", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "graduation-gift-ideas", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "tiffany", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "jewelry", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "tiffany-jewelry", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic pair of TIFFANY 18K White Gold Diamond Akoya Pearl 6.5-7mm Signature Earrings. The earrings are crafted of 18-karat white gold and feature 6.5-7mm white Akoya cultured pearls and round brilliant cut diamonds, approximately .10 total carat weight.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Tiffany", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Whites", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "White Gold", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1555666", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "TIFFANY 18K White Gold Diamond Akoya Pearl 6.5-7mm Signature Earrings", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Chanel", + "product_name": "Caviar Quilted Small Urban Companion Flap Pink", + "condition": "Excellent", + "discounted_price": 185, + "price": 3535, + "id": 10728772239663 }, { - "best_value": 365, - "categories": [ - "Whites", - "Womens", - "Earrings", - "White Gold", - "Fine Jewelry", - "General", - "Jewelry", - "Gifts for Grads", - "Hot Picks Sale", - "For the Bride", - "Tiffany" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "earrings", - "diamond-earrings", - "tiffany-jewelry-on-sale", - "earrings-on-sale", - "white-gold-earrings", - "fine-jewelry", - "tiffany-earrings", - "tiffany-t-collection", - "giftable-jewelry", - "jewelry-on-sale", - "bridal-accessories", - "graduation-gift-ideas", - "tiffany", - "jewelry", - "tiffany-jewelry" - ], - "description": "This is an authentic pair of TIFFANY 18K White Gold Diamond Akoya Pearl 6.5-7mm Signature Earrings. The earrings are crafted of 18-karat white gold and feature 6.5-7mm white Akoya cultured pearls and round brilliant cut diamonds, approximately .10 total carat weight.", - "discounted_price": 1185, - "discounted_tier": 1, - "filters": { - "bags": [], - "jewelry": [ - "Earrings" - ], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Tiffany" - ], - "color": [ - "Whites" - ], - "material": [ - "White Gold" - ], - "bag_feature": [], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$1000-$2000", - "condition": [ - "Giftable" - ], - "locations": [ - "Carlsbad" - ] - }, - "following_count": 117, - "id": 1555666, - "made_available_at": 1740436830, - "price": 1250, - "priced_at": 1743026421, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/d925c88db4f6231c1dd83a75305c823f/8bb7a0933bf56a355e8b150ff2a1abbd.jpg", - "thumb": "/thumb/d925c88db4f6231c1dd83a75305c823f/8bb7a0933bf56a355e8b150ff2a1abbd.jpg", - "tiny": "/tiny/d925c88db4f6231c1dd83a75305c823f/8bb7a0933bf56a355e8b150ff2a1abbd.jpg" - }, - { - "order": 2, - "path": "/thumb/d925c88db4f6231c1dd83a75305c823f/c228384daa1e8203a2582db8e44183e3.jpg", - "thumb": "/thumb/d925c88db4f6231c1dd83a75305c823f/c228384daa1e8203a2582db8e44183e3.jpg", - "tiny": "/tiny/d925c88db4f6231c1dd83a75305c823f/c228384daa1e8203a2582db8e44183e3.jpg" - } - ], - "title": "TIFFANY 18K White Gold Diamond Akoya Pearl 6.5-7mm Signature Earrings", - "title_without_brand": "18K White Gold Diamond Akoya Pearl 6.5-7mm Signature Earrings", - "_tags": [ - "1555666" - ], - "objectID": "1555666", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "earrings", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "diamond-earrings", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "tiffany-jewelry-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "earrings-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "white-gold-earrings", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "fine-jewelry", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "tiffany-earrings", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "tiffany-t-collection", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "giftable-jewelry", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "jewelry-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bridal-accessories", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "graduation-gift-ideas", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "tiffany", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "jewelry", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "tiffany-jewelry", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic pair of TIFFANY 18K White Gold Diamond Akoya Pearl 6.5-7mm Signature Earrings. The earrings are crafted of 18-karat white gold and feature 6.5-7mm white Akoya cultured pearls and round brilliant cut diamonds, approximately .10 total carat weight.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Tiffany", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Whites", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "White Gold", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1555666", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "TIFFANY 18K White Gold Diamond Akoya Pearl 6.5-7mm Signature Earrings", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Louis Vuitton", + "product_name": "Monogram Macassar Christopher Wearable Wallet", + "condition": "Shows Wear", + "discounted_price": 70, + "price": 1355, + "id": 10620829303087 }, { - "best_value": 0, - "categories": [ - "Shoes", - "Black", - "Womens", - "Plastics", - "Solid Color", - "Boots & Booties", - "Accessories", - "General", - "Winter Accessories", - "39", - "Chanel", - "Rain Boots " - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "chanel-on-sale", - "shoes-on-sale", - "boots-booties", - "chanel", - "chanel-boots", - "winter-accessories", - "accessories-on-sale", - "shoes", - "chanel-shoes", - "accessories" - ], - "description": "This is an authentic pair of CHANEL Rubber CC Print Boots size 39 in Black. These chic boots are crafted of black rubber with a cushioned interior. They feature white CC logos at the top and a sturdy sole.", - "discounted_price": 1800, - "discounted_tier": 1, - "filters": { - "bags": [], - "jewelry": [], - "accessories": [ - "Shoes" - ], - "watches": [], - "shoes": [ - "Boots & Booties" - ], - "brands": [ - "Chanel" - ], - "color": [ - "Black" - ], - "material": [ - "Plastics", - "Solid Color" - ], - "bag_feature": [], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [ - "39" - ], - "on_sale": [ - "5% Off" - ], - "price": "$1000-$2000", - "condition": [ - "Excellent" - ], - "locations": [ - "New York" - ] - }, - "following_count": 74, - "id": 1559691, - "made_available_at": 1740438614, - "price": 1895, - "priced_at": 1743031009, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/b7e078eeec63ef4da6b1069eed4e90f5/cfb8000609543de75725d733db3586e1.jpg", - "thumb": "/thumb/b7e078eeec63ef4da6b1069eed4e90f5/cfb8000609543de75725d733db3586e1.jpg", - "tiny": "/tiny/b7e078eeec63ef4da6b1069eed4e90f5/cfb8000609543de75725d733db3586e1.jpg" - }, - { - "order": 3, - "path": "/thumb/b7e078eeec63ef4da6b1069eed4e90f5/c2859d0f91a1df307454e870058af99a.jpg", - "thumb": "/thumb/b7e078eeec63ef4da6b1069eed4e90f5/c2859d0f91a1df307454e870058af99a.jpg", - "tiny": "/tiny/b7e078eeec63ef4da6b1069eed4e90f5/c2859d0f91a1df307454e870058af99a.jpg" - } - ], - "title": "CHANEL Rubber CC Print Boots 39 Black", - "title_without_brand": "Rubber CC Print Boots 39 Black", - "_tags": [ - "1559691" - ], - "objectID": "1559691", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoes-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "boots-booties", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-boots", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "winter-accessories", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-shoes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic pair of CHANEL Rubber CC Print Boots size 39 in Black. These chic boots are crafted of black rubber with a cushioned interior. They feature white CC logos at the top and a sturdy sole.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Chanel", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Black", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Plastics", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1559691", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "CHANEL Rubber CC Print Boots 39 Black", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Chanel", + "product_name": "Lambskin Quilted Mini Square Flap Bag Black", + "condition": "Shows Wear", + "discounted_price": 160, + "price": 2995, + "id": 10689611497775 }, { - "best_value": 0, - "categories": [ - "Shoes", - "Black", - "Womens", - "Plastics", - "Solid Color", - "Boots & Booties", - "Accessories", - "General", - "Winter Accessories", - "39", - "Chanel", - "Rain Boots " - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "chanel-on-sale", - "shoes-on-sale", - "boots-booties", - "chanel", - "chanel-boots", - "winter-accessories", - "accessories-on-sale", - "shoes", - "chanel-shoes", - "accessories" - ], - "description": "This is an authentic pair of CHANEL Rubber CC Print Boots size 39 in Black. These chic boots are crafted of black rubber with a cushioned interior. They feature white CC logos at the top and a sturdy sole.", - "discounted_price": 1800, - "discounted_tier": 1, - "filters": { - "bags": [], - "jewelry": [], - "accessories": [ - "Shoes" - ], - "watches": [], - "shoes": [ - "Boots & Booties" - ], - "brands": [ - "Chanel" - ], - "color": [ - "Black" - ], - "material": [ - "Plastics", - "Solid Color" - ], - "bag_feature": [], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [ - "39" - ], - "on_sale": [ - "5% Off" - ], - "price": "$1000-$2000", - "condition": [ - "Excellent" - ], - "locations": [ - "New York" - ] - }, - "following_count": 74, - "id": 1559691, - "made_available_at": 1740438614, - "price": 1895, - "priced_at": 1743031009, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/b7e078eeec63ef4da6b1069eed4e90f5/cfb8000609543de75725d733db3586e1.jpg", - "thumb": "/thumb/b7e078eeec63ef4da6b1069eed4e90f5/cfb8000609543de75725d733db3586e1.jpg", - "tiny": "/tiny/b7e078eeec63ef4da6b1069eed4e90f5/cfb8000609543de75725d733db3586e1.jpg" - }, - { - "order": 3, - "path": "/thumb/b7e078eeec63ef4da6b1069eed4e90f5/c2859d0f91a1df307454e870058af99a.jpg", - "thumb": "/thumb/b7e078eeec63ef4da6b1069eed4e90f5/c2859d0f91a1df307454e870058af99a.jpg", - "tiny": "/tiny/b7e078eeec63ef4da6b1069eed4e90f5/c2859d0f91a1df307454e870058af99a.jpg" - } - ], - "title": "CHANEL Rubber CC Print Boots 39 Black", - "title_without_brand": "Rubber CC Print Boots 39 Black", - "_tags": [ - "1559691" - ], - "objectID": "1559691", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoes-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "boots-booties", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-boots", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "winter-accessories", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-shoes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic pair of CHANEL Rubber CC Print Boots size 39 in Black. These chic boots are crafted of black rubber with a cushioned interior. They feature white CC logos at the top and a sturdy sole.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Chanel", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Black", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Plastics", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1559691", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "CHANEL Rubber CC Print Boots 39 Black", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Celine", + "product_name": "Lizard Medium Classic Box Flap Bag Natural", + "condition": "Shows Wear", + "discounted_price": 145, + "price": 2705, + "id": 10585081872687 }, { - "best_value": 0, - "categories": [ - "Shoes", - "Black", - "Womens", - "Plastics", - "Solid Color", - "Boots & Booties", - "Accessories", - "General", - "Winter Accessories", - "39", - "Chanel", - "Rain Boots " - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "chanel-on-sale", - "shoes-on-sale", - "boots-booties", - "chanel", - "chanel-boots", - "winter-accessories", - "accessories-on-sale", - "shoes", - "chanel-shoes", - "accessories" - ], - "description": "This is an authentic pair of CHANEL Rubber CC Print Boots size 39 in Black. These chic boots are crafted of black rubber with a cushioned interior. They feature white CC logos at the top and a sturdy sole.", - "discounted_price": 1800, - "discounted_tier": 1, - "filters": { - "bags": [], - "jewelry": [], - "accessories": [ - "Shoes" - ], - "watches": [], - "shoes": [ - "Boots & Booties" - ], - "brands": [ - "Chanel" - ], - "color": [ - "Black" - ], - "material": [ - "Plastics", - "Solid Color" - ], - "bag_feature": [], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [ - "39" - ], - "on_sale": [ - "5% Off" - ], - "price": "$1000-$2000", - "condition": [ - "Excellent" - ], - "locations": [ - "New York" - ] - }, - "following_count": 74, - "id": 1559691, - "made_available_at": 1740438614, - "price": 1895, - "priced_at": 1743031009, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/b7e078eeec63ef4da6b1069eed4e90f5/cfb8000609543de75725d733db3586e1.jpg", - "thumb": "/thumb/b7e078eeec63ef4da6b1069eed4e90f5/cfb8000609543de75725d733db3586e1.jpg", - "tiny": "/tiny/b7e078eeec63ef4da6b1069eed4e90f5/cfb8000609543de75725d733db3586e1.jpg" - }, - { - "order": 3, - "path": "/thumb/b7e078eeec63ef4da6b1069eed4e90f5/c2859d0f91a1df307454e870058af99a.jpg", - "thumb": "/thumb/b7e078eeec63ef4da6b1069eed4e90f5/c2859d0f91a1df307454e870058af99a.jpg", - "tiny": "/tiny/b7e078eeec63ef4da6b1069eed4e90f5/c2859d0f91a1df307454e870058af99a.jpg" - } - ], - "title": "CHANEL Rubber CC Print Boots 39 Black", - "title_without_brand": "Rubber CC Print Boots 39 Black", - "_tags": [ - "1559691" - ], - "objectID": "1559691", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoes-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "boots-booties", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-boots", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "winter-accessories", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-shoes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic pair of CHANEL Rubber CC Print Boots size 39 in Black. These chic boots are crafted of black rubber with a cushioned interior. They feature white CC logos at the top and a sturdy sole.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Chanel", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Black", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Plastics", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1559691", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "CHANEL Rubber CC Print Boots 39 Black", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Chanel", + "product_name": "Fabric Quilted Patchwork Medium Flap Red Black Multicolor", + "condition": "Excellent", + "discounted_price": 215, + "price": 4035, + "id": 10547041894703 }, { - "best_value": 3625, - "categories": [ - "Browns", - "Structured", - "Womens", - "Coated Canvas", - "Crossbody", - "Handbags", - "Shoulder Bags", - "Monogram", - "General", - "Styles", - "Beige", - "Top Designers", - "Over 50% off Retail", - "Louis Vuitton" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoulder-bags-on-sale", - "bags-under-1000", - "louis-vuitton-shoulder-bags", - "louis-vuitton-monogram-bags", - "bags-on-sale", - "louis-vuitton-crossbody-bags", - "louis-vuitton-on-sale", - "louis-vuitton-monogram", - "louis-vuitton", - "top-designers", - "50-off-retail", - "crossbody-bags-on-sale", - "louis-vuitton-bags", - "handbag-styles", - "shoulder-bags", - "handbags", - "cross-body" - ], - "description": "This is an authentic LOUIS VUITTON Monogram Petite Boite Chapeau. This hat box inspired bag is crafted of a sturdy Louis Vuitton monogram on coated toile canvas. The bag features vachetta cowhide trim, strap handle with lock closure and an optional adjustable shoulder strap. This opens to a beige leather interior with a flat pocket.", - "discounted_price": 2275, - "discounted_tier": 1, - "filters": { - "bags": [ - "Crossbody", - "Handbags", - "Shoulder Bags" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Louis Vuitton" - ], - "color": [ - "Browns", - "Beige" - ], - "material": [ - "Coated Canvas" - ], - "bag_feature": [ - "Structured" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "Over $2000", - "condition": [ - "Shows Wear" - ], - "locations": [ - "New York" - ] - }, - "following_count": 56, - "id": 1566464, - "made_available_at": 1740436438, - "price": 2395, - "priced_at": 1743026417, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/4a5d1ffbeae15ff61e9489d21bf9bcf7/dd8872f0a0bbb904dbfb00e6c32c8213.jpg", - "thumb": "/thumb/4a5d1ffbeae15ff61e9489d21bf9bcf7/dd8872f0a0bbb904dbfb00e6c32c8213.jpg", - "tiny": "/tiny/4a5d1ffbeae15ff61e9489d21bf9bcf7/dd8872f0a0bbb904dbfb00e6c32c8213.jpg" - }, - { - "order": 2, - "path": "/thumb/4a5d1ffbeae15ff61e9489d21bf9bcf7/b7792d6c98a8face89b2aa39395e1ef7.jpg", - "thumb": "/thumb/4a5d1ffbeae15ff61e9489d21bf9bcf7/b7792d6c98a8face89b2aa39395e1ef7.jpg", - "tiny": "/tiny/4a5d1ffbeae15ff61e9489d21bf9bcf7/b7792d6c98a8face89b2aa39395e1ef7.jpg" - } - ], - "title": "LOUIS VUITTON Monogram Petite Boite Chapeau", - "title_without_brand": "Monogram Petite Boite Chapeau", - "_tags": [ - "1566464" - ], - "objectID": "1566464", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-monogram-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-crossbody-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-monogram", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "top-designers", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "50-off-retail", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "crossbody-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "cross-body", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic LOUIS VUITTON Monogram Petite Boite Chapeau. This hat box inspired bag is crafted of a sturdy Louis Vuitton monogram on coated toile canvas. The bag features vachetta cowhide trim, strap handle with lock closure and an optional adjustable shoulder strap. This opens to a beige leather interior with a flat pocket.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Louis Vuitton", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Browns", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Beige", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Coated Canvas", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1566464", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "LOUIS VUITTON Monogram Petite Boite Chapeau", - "matchLevel": "none", - "matchedWords": [] - } - } - }, - { - "best_value": 3625, - "categories": [ - "Browns", - "Structured", - "Womens", - "Coated Canvas", - "Crossbody", - "Handbags", - "Shoulder Bags", - "Monogram", - "General", - "Styles", - "Beige", - "Top Designers", - "Over 50% off Retail", - "Louis Vuitton" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoulder-bags-on-sale", - "bags-under-1000", - "louis-vuitton-shoulder-bags", - "louis-vuitton-monogram-bags", - "bags-on-sale", - "louis-vuitton-crossbody-bags", - "louis-vuitton-on-sale", - "louis-vuitton-monogram", - "louis-vuitton", - "top-designers", - "50-off-retail", - "crossbody-bags-on-sale", - "louis-vuitton-bags", - "handbag-styles", - "shoulder-bags", - "handbags", - "cross-body" - ], - "description": "This is an authentic LOUIS VUITTON Monogram Petite Boite Chapeau. This hat box inspired bag is crafted of a sturdy Louis Vuitton monogram on coated toile canvas. The bag features vachetta cowhide trim, strap handle with lock closure and an optional adjustable shoulder strap. This opens to a beige leather interior with a flat pocket.", - "discounted_price": 2275, - "discounted_tier": 1, - "filters": { - "bags": [ - "Crossbody", - "Handbags", - "Shoulder Bags" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Louis Vuitton" - ], - "color": [ - "Browns", - "Beige" - ], - "material": [ - "Coated Canvas" - ], - "bag_feature": [ - "Structured" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "Over $2000", - "condition": [ - "Shows Wear" - ], - "locations": [ - "New York" - ] - }, - "following_count": 56, - "id": 1566464, - "made_available_at": 1740436438, - "price": 2395, - "priced_at": 1743026417, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/4a5d1ffbeae15ff61e9489d21bf9bcf7/dd8872f0a0bbb904dbfb00e6c32c8213.jpg", - "thumb": "/thumb/4a5d1ffbeae15ff61e9489d21bf9bcf7/dd8872f0a0bbb904dbfb00e6c32c8213.jpg", - "tiny": "/tiny/4a5d1ffbeae15ff61e9489d21bf9bcf7/dd8872f0a0bbb904dbfb00e6c32c8213.jpg" - }, - { - "order": 2, - "path": "/thumb/4a5d1ffbeae15ff61e9489d21bf9bcf7/b7792d6c98a8face89b2aa39395e1ef7.jpg", - "thumb": "/thumb/4a5d1ffbeae15ff61e9489d21bf9bcf7/b7792d6c98a8face89b2aa39395e1ef7.jpg", - "tiny": "/tiny/4a5d1ffbeae15ff61e9489d21bf9bcf7/b7792d6c98a8face89b2aa39395e1ef7.jpg" - } - ], - "title": "LOUIS VUITTON Monogram Petite Boite Chapeau", - "title_without_brand": "Monogram Petite Boite Chapeau", - "_tags": [ - "1566464" - ], - "objectID": "1566464", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-monogram-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-crossbody-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-monogram", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "top-designers", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "50-off-retail", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "crossbody-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "cross-body", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic LOUIS VUITTON Monogram Petite Boite Chapeau. This hat box inspired bag is crafted of a sturdy Louis Vuitton monogram on coated toile canvas. The bag features vachetta cowhide trim, strap handle with lock closure and an optional adjustable shoulder strap. This opens to a beige leather interior with a flat pocket.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Louis Vuitton", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Browns", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Beige", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Coated Canvas", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1566464", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "LOUIS VUITTON Monogram Petite Boite Chapeau", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Louis Vuitton", + "product_name": "Damier Ebene Tribeca Long", + "condition": "Shows Wear", + "discounted_price": 40, + "price": 795, + "id": 10744130634031 }, { - "best_value": 3625, - "categories": [ - "Browns", - "Structured", - "Womens", - "Coated Canvas", - "Crossbody", - "Handbags", - "Shoulder Bags", - "Monogram", - "General", - "Styles", - "Beige", - "Top Designers", - "Over 50% off Retail", - "Louis Vuitton" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoulder-bags-on-sale", - "bags-under-1000", - "louis-vuitton-shoulder-bags", - "louis-vuitton-monogram-bags", - "bags-on-sale", - "louis-vuitton-crossbody-bags", - "louis-vuitton-on-sale", - "louis-vuitton-monogram", - "louis-vuitton", - "top-designers", - "50-off-retail", - "crossbody-bags-on-sale", - "louis-vuitton-bags", - "handbag-styles", - "shoulder-bags", - "handbags", - "cross-body" - ], - "description": "This is an authentic LOUIS VUITTON Monogram Petite Boite Chapeau. This hat box inspired bag is crafted of a sturdy Louis Vuitton monogram on coated toile canvas. The bag features vachetta cowhide trim, strap handle with lock closure and an optional adjustable shoulder strap. This opens to a beige leather interior with a flat pocket.", - "discounted_price": 2275, - "discounted_tier": 1, - "filters": { - "bags": [ - "Crossbody", - "Handbags", - "Shoulder Bags" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Louis Vuitton" - ], - "color": [ - "Browns", - "Beige" - ], - "material": [ - "Coated Canvas" - ], - "bag_feature": [ - "Structured" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "Over $2000", - "condition": [ - "Shows Wear" - ], - "locations": [ - "New York" - ] - }, - "following_count": 56, - "id": 1566464, - "made_available_at": 1740436438, - "price": 2395, - "priced_at": 1743026417, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/4a5d1ffbeae15ff61e9489d21bf9bcf7/dd8872f0a0bbb904dbfb00e6c32c8213.jpg", - "thumb": "/thumb/4a5d1ffbeae15ff61e9489d21bf9bcf7/dd8872f0a0bbb904dbfb00e6c32c8213.jpg", - "tiny": "/tiny/4a5d1ffbeae15ff61e9489d21bf9bcf7/dd8872f0a0bbb904dbfb00e6c32c8213.jpg" - }, - { - "order": 2, - "path": "/thumb/4a5d1ffbeae15ff61e9489d21bf9bcf7/b7792d6c98a8face89b2aa39395e1ef7.jpg", - "thumb": "/thumb/4a5d1ffbeae15ff61e9489d21bf9bcf7/b7792d6c98a8face89b2aa39395e1ef7.jpg", - "tiny": "/tiny/4a5d1ffbeae15ff61e9489d21bf9bcf7/b7792d6c98a8face89b2aa39395e1ef7.jpg" - } - ], - "title": "LOUIS VUITTON Monogram Petite Boite Chapeau", - "title_without_brand": "Monogram Petite Boite Chapeau", - "_tags": [ - "1566464" - ], - "objectID": "1566464", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-monogram-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-crossbody-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-monogram", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "top-designers", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "50-off-retail", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "crossbody-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "cross-body", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic LOUIS VUITTON Monogram Petite Boite Chapeau. This hat box inspired bag is crafted of a sturdy Louis Vuitton monogram on coated toile canvas. The bag features vachetta cowhide trim, strap handle with lock closure and an optional adjustable shoulder strap. This opens to a beige leather interior with a flat pocket.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Louis Vuitton", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Browns", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Beige", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Coated Canvas", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1566464", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "LOUIS VUITTON Monogram Petite Boite Chapeau", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Gucci", + "product_name": "Calfskin Matelasse Monochrome GG Marmont Chain Mini Belt Bag Black", + "condition": "Excellent", + "discounted_price": 60, + "price": 1160, + "id": 10640180379951 }, { - "best_value": 370, - "categories": [ - "Open Top", - "Structured", - "Womens", - "Coated Canvas", - "Shoulder Bags", - "Damier", - "Monogram", - "Noe", - "General", - "Styles", - "Browns", - "Pink", - "Handbags", - "Louis Vuitton", - "Gifts for Her", - "Top Designers", - "Live Shopping with FASHIONPHILE" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoulder-bags-on-sale", - "damier", - "bags-under-1000", - "louis-vuitton-shoulder-bags", - "bucket-bags", - "louis-vuitton-damier-ebene-bags", - "bags-on-sale", - "instagram-live-shopping", - "louis-vuitton-on-sale", - "louis-vuitton-monogram", - "louis-vuitton", - "gifts-for-her", - "top-designers", - "louis-vuitton-noe-bags", - "louis-vuitton-bags", - "handbag-styles", - "noe", - "shoulder-bags", - "handbags" - ], - "description": "This is an authentic LOUIS VUITTON Damier Ebene Neonoe MM Venus in Pink. This classic bucket style shoulder bag is crafted of Louis Vuitton damier checkered coated canvas. The bag features a soft pink shoulder strap and top cinch strap with polished gold hardware. This opens to a soft pink microfiber interior and center zippered pocket.", - "discounted_price": 1660, - "discounted_tier": 1, - "filters": { - "bags": [ - "Shoulder Bags", - "Handbags" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Louis Vuitton" - ], - "color": [ - "Browns", - "Pink" - ], - "material": [ - "Coated Canvas" - ], - "bag_feature": [ - "Open Top", - "Structured" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$1000-$2000", - "condition": [ - "Excellent" - ], - "locations": [ - "New York" - ] - }, - "following_count": 108, - "id": 1567038, - "made_available_at": 1740432654, - "price": 1750, - "priced_at": 1743023869, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/8f609b5d060c82c875f87dedf8eff20d/bdf8b0b8a02684ea7fda32e1dde529d2.jpg", - "thumb": "/thumb/8f609b5d060c82c875f87dedf8eff20d/bdf8b0b8a02684ea7fda32e1dde529d2.jpg", - "tiny": "/tiny/8f609b5d060c82c875f87dedf8eff20d/bdf8b0b8a02684ea7fda32e1dde529d2.jpg" - }, - { - "order": 2, - "path": "/thumb/8f609b5d060c82c875f87dedf8eff20d/2c00286bf25808eca4b8c70418bcca9c.jpg", - "thumb": "/thumb/8f609b5d060c82c875f87dedf8eff20d/2c00286bf25808eca4b8c70418bcca9c.jpg", - "tiny": "/tiny/8f609b5d060c82c875f87dedf8eff20d/2c00286bf25808eca4b8c70418bcca9c.jpg" - } - ], - "title": "LOUIS VUITTON Damier Ebene Neonoe MM Venus Pink", - "title_without_brand": "Damier Ebene Neonoe MM Venus Pink", - "_tags": [ - "1567038" - ], - "objectID": "1567038", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "damier", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bucket-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-damier-ebene-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "instagram-live-shopping", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-monogram", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gifts-for-her", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "top-designers", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-noe-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "noe", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic LOUIS VUITTON Damier Ebene Neonoe MM Venus in Pink. This classic bucket style shoulder bag is crafted of Louis Vuitton damier checkered coated canvas. The bag features a soft pink shoulder strap and top cinch strap with polished gold hardware. This opens to a soft pink microfiber interior and center zippered pocket.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Louis Vuitton", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Browns", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Pink", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Coated Canvas", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1567038", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "LOUIS VUITTON Damier Ebene Neonoe MM Venus Pink", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Gucci", + "product_name": "X SEGA Calfskin GUCCY Stars Zip Wristlet Pouch Mystic White Gold", + "condition": "Excellent", + "discounted_price": 20, + "price": 370, + "id": 10739140395311 }, { - "best_value": 370, - "categories": [ - "Open Top", - "Structured", - "Womens", - "Coated Canvas", - "Shoulder Bags", - "Damier", - "Monogram", - "Noe", - "General", - "Styles", - "Browns", - "Pink", - "Handbags", - "Louis Vuitton", - "Gifts for Her", - "Top Designers", - "Live Shopping with FASHIONPHILE" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoulder-bags-on-sale", - "damier", - "bags-under-1000", - "louis-vuitton-shoulder-bags", - "bucket-bags", - "louis-vuitton-damier-ebene-bags", - "bags-on-sale", - "instagram-live-shopping", - "louis-vuitton-on-sale", - "louis-vuitton-monogram", - "louis-vuitton", - "gifts-for-her", - "top-designers", - "louis-vuitton-noe-bags", - "louis-vuitton-bags", - "handbag-styles", - "noe", - "shoulder-bags", - "handbags" - ], - "description": "This is an authentic LOUIS VUITTON Damier Ebene Neonoe MM Venus in Pink. This classic bucket style shoulder bag is crafted of Louis Vuitton damier checkered coated canvas. The bag features a soft pink shoulder strap and top cinch strap with polished gold hardware. This opens to a soft pink microfiber interior and center zippered pocket.", - "discounted_price": 1660, - "discounted_tier": 1, - "filters": { - "bags": [ - "Shoulder Bags", - "Handbags" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Louis Vuitton" - ], - "color": [ - "Browns", - "Pink" - ], - "material": [ - "Coated Canvas" - ], - "bag_feature": [ - "Open Top", - "Structured" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$1000-$2000", - "condition": [ - "Excellent" - ], - "locations": [ - "New York" - ] - }, - "following_count": 108, - "id": 1567038, - "made_available_at": 1740432654, - "price": 1750, - "priced_at": 1743023869, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/8f609b5d060c82c875f87dedf8eff20d/bdf8b0b8a02684ea7fda32e1dde529d2.jpg", - "thumb": "/thumb/8f609b5d060c82c875f87dedf8eff20d/bdf8b0b8a02684ea7fda32e1dde529d2.jpg", - "tiny": "/tiny/8f609b5d060c82c875f87dedf8eff20d/bdf8b0b8a02684ea7fda32e1dde529d2.jpg" - }, - { - "order": 2, - "path": "/thumb/8f609b5d060c82c875f87dedf8eff20d/2c00286bf25808eca4b8c70418bcca9c.jpg", - "thumb": "/thumb/8f609b5d060c82c875f87dedf8eff20d/2c00286bf25808eca4b8c70418bcca9c.jpg", - "tiny": "/tiny/8f609b5d060c82c875f87dedf8eff20d/2c00286bf25808eca4b8c70418bcca9c.jpg" - } - ], - "title": "LOUIS VUITTON Damier Ebene Neonoe MM Venus Pink", - "title_without_brand": "Damier Ebene Neonoe MM Venus Pink", - "_tags": [ - "1567038" - ], - "objectID": "1567038", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "damier", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bucket-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-damier-ebene-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "instagram-live-shopping", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-monogram", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gifts-for-her", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "top-designers", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-noe-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "noe", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic LOUIS VUITTON Damier Ebene Neonoe MM Venus in Pink. This classic bucket style shoulder bag is crafted of Louis Vuitton damier checkered coated canvas. The bag features a soft pink shoulder strap and top cinch strap with polished gold hardware. This opens to a soft pink microfiber interior and center zippered pocket.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Louis Vuitton", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Browns", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Pink", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Coated Canvas", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1567038", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "LOUIS VUITTON Damier Ebene Neonoe MM Venus Pink", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Chanel", + "product_name": "Metal Enamel CC Dangle Earrings Silver Black", + "condition": "Shows Wear", + "discounted_price": 20, + "price": 335, + "id": 10599597703471 }, { - "best_value": 370, - "categories": [ - "Open Top", - "Structured", - "Womens", - "Coated Canvas", - "Shoulder Bags", - "Damier", - "Monogram", - "Noe", - "General", - "Styles", - "Browns", - "Pink", - "Handbags", - "Louis Vuitton", - "Gifts for Her", - "Top Designers", - "Live Shopping with FASHIONPHILE" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoulder-bags-on-sale", - "damier", - "bags-under-1000", - "louis-vuitton-shoulder-bags", - "bucket-bags", - "louis-vuitton-damier-ebene-bags", - "bags-on-sale", - "instagram-live-shopping", - "louis-vuitton-on-sale", - "louis-vuitton-monogram", - "louis-vuitton", - "gifts-for-her", - "top-designers", - "louis-vuitton-noe-bags", - "louis-vuitton-bags", - "handbag-styles", - "noe", - "shoulder-bags", - "handbags" - ], - "description": "This is an authentic LOUIS VUITTON Damier Ebene Neonoe MM Venus in Pink. This classic bucket style shoulder bag is crafted of Louis Vuitton damier checkered coated canvas. The bag features a soft pink shoulder strap and top cinch strap with polished gold hardware. This opens to a soft pink microfiber interior and center zippered pocket.", - "discounted_price": 1660, - "discounted_tier": 1, - "filters": { - "bags": [ - "Shoulder Bags", - "Handbags" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Louis Vuitton" - ], - "color": [ - "Browns", - "Pink" - ], - "material": [ - "Coated Canvas" - ], - "bag_feature": [ - "Open Top", - "Structured" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$1000-$2000", - "condition": [ - "Excellent" - ], - "locations": [ - "New York" - ] - }, - "following_count": 108, - "id": 1567038, - "made_available_at": 1740432654, - "price": 1750, - "priced_at": 1743023869, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/8f609b5d060c82c875f87dedf8eff20d/bdf8b0b8a02684ea7fda32e1dde529d2.jpg", - "thumb": "/thumb/8f609b5d060c82c875f87dedf8eff20d/bdf8b0b8a02684ea7fda32e1dde529d2.jpg", - "tiny": "/tiny/8f609b5d060c82c875f87dedf8eff20d/bdf8b0b8a02684ea7fda32e1dde529d2.jpg" - }, - { - "order": 2, - "path": "/thumb/8f609b5d060c82c875f87dedf8eff20d/2c00286bf25808eca4b8c70418bcca9c.jpg", - "thumb": "/thumb/8f609b5d060c82c875f87dedf8eff20d/2c00286bf25808eca4b8c70418bcca9c.jpg", - "tiny": "/tiny/8f609b5d060c82c875f87dedf8eff20d/2c00286bf25808eca4b8c70418bcca9c.jpg" - } - ], - "title": "LOUIS VUITTON Damier Ebene Neonoe MM Venus Pink", - "title_without_brand": "Damier Ebene Neonoe MM Venus Pink", - "_tags": [ - "1567038" - ], - "objectID": "1567038", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "damier", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bucket-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-damier-ebene-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "instagram-live-shopping", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-monogram", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gifts-for-her", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "top-designers", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-noe-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "noe", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic LOUIS VUITTON Damier Ebene Neonoe MM Venus in Pink. This classic bucket style shoulder bag is crafted of Louis Vuitton damier checkered coated canvas. The bag features a soft pink shoulder strap and top cinch strap with polished gold hardware. This opens to a soft pink microfiber interior and center zippered pocket.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Louis Vuitton", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Browns", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Pink", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Coated Canvas", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1567038", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "LOUIS VUITTON Damier Ebene Neonoe MM Venus Pink", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Chanel", + "product_name": "Crumpled Calfskin Chevron Quilted 2.55 Reissue 226 Black", + "condition": "Shows Wear", + "discounted_price": 260, + "price": 4915, + "id": 10746847658287 }, { - "best_value": 1690, - "categories": [ - "Open Top", - "Leather", - "Solid Color", - "Handbags", - "Styles", - "Loewe", - "Top Handles", - "Totes", - "Reds", - "Womens", - "Over 50% off Retail" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "bags-under-1000", - "bags-on-sale", - "loewe", - "totes-on-sale", - "top-handles", - "totes", - "50-off-retail", - "handbag-styles", - "handbags" - ], - "description": "This is an authentic LOEWE Calfskin Barcelona Tote in Scarlet Red. This chic and lovely tote is crafted in red from luxuriously soft calfskin leather. This handbag features leather strap handles, gold hardware, and a leather triangular crossover closure. The top opens to a suede interior with a zipper pocket. ", - "discounted_price": 660, - "discounted_tier": 1, - "filters": { - "bags": [ - "Handbags", - "Totes" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Loewe" - ], - "color": [ - "Reds" - ], - "material": [ - "Leather", - "Solid Color" - ], - "bag_feature": [ - "Open Top", - "Top Handles" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$500-$1000", - "condition": [ - "Shows Wear" - ], - "locations": [ - "New York" - ] - }, - "following_count": 88, - "id": 1567294, - "made_available_at": 1740432486, - "price": 695, - "priced_at": 1743023868, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/3999cd2671ae2e794d4ff0fbd5cf9069/2fe28ab046c4882f3d2ce10b3f08e653.jpg", - "thumb": "/thumb/3999cd2671ae2e794d4ff0fbd5cf9069/2fe28ab046c4882f3d2ce10b3f08e653.jpg", - "tiny": "/tiny/3999cd2671ae2e794d4ff0fbd5cf9069/2fe28ab046c4882f3d2ce10b3f08e653.jpg" - }, - { - "order": 2, - "path": "/thumb/8ef03c8cbe7081ec21caefbda89dfbcc/a378b6ee189af245a3c6a1f3173da6e4.jpg", - "thumb": "/thumb/8ef03c8cbe7081ec21caefbda89dfbcc/a378b6ee189af245a3c6a1f3173da6e4.jpg", - "tiny": "/tiny/8ef03c8cbe7081ec21caefbda89dfbcc/a378b6ee189af245a3c6a1f3173da6e4.jpg" - } - ], - "title": "LOEWE Calfskin Barcelona Tote Scarlet Red", - "title_without_brand": "Calfskin Barcelona Tote Scarlet Red", - "_tags": [ - "1567294" - ], - "objectID": "1567294", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "loewe", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "totes-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "top-handles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "totes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "50-off-retail", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic LOEWE Calfskin Barcelona Tote in Scarlet Red. This chic and lovely tote is crafted in red from luxuriously soft calfskin leather. This handbag features leather strap handles, gold hardware, and a leather triangular crossover closure. The top opens to a suede interior with a zipper pocket. ", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Loewe", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Reds", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1567294", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "LOEWE Calfskin Barcelona Tote Scarlet Red", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Hermes", + "product_name": "18K White Gold Diamond PM H D'Ancre Bracelet ST", + "condition": "Shows Wear", + "discounted_price": 215, + "price": 4080, + "id": 10733095223599 }, { - "best_value": 1690, - "categories": [ - "Open Top", - "Leather", - "Solid Color", - "Handbags", - "Styles", - "Loewe", - "Top Handles", - "Totes", - "Reds", - "Womens", - "Over 50% off Retail" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "bags-under-1000", - "bags-on-sale", - "loewe", - "totes-on-sale", - "top-handles", - "totes", - "50-off-retail", - "handbag-styles", - "handbags" - ], - "description": "This is an authentic LOEWE Calfskin Barcelona Tote in Scarlet Red. This chic and lovely tote is crafted in red from luxuriously soft calfskin leather. This handbag features leather strap handles, gold hardware, and a leather triangular crossover closure. The top opens to a suede interior with a zipper pocket. ", - "discounted_price": 660, - "discounted_tier": 1, - "filters": { - "bags": [ - "Handbags", - "Totes" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Loewe" - ], - "color": [ - "Reds" - ], - "material": [ - "Leather", - "Solid Color" - ], - "bag_feature": [ - "Open Top", - "Top Handles" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$500-$1000", - "condition": [ - "Shows Wear" - ], - "locations": [ - "New York" - ] - }, - "following_count": 88, - "id": 1567294, - "made_available_at": 1740432486, - "price": 695, - "priced_at": 1743023868, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/3999cd2671ae2e794d4ff0fbd5cf9069/2fe28ab046c4882f3d2ce10b3f08e653.jpg", - "thumb": "/thumb/3999cd2671ae2e794d4ff0fbd5cf9069/2fe28ab046c4882f3d2ce10b3f08e653.jpg", - "tiny": "/tiny/3999cd2671ae2e794d4ff0fbd5cf9069/2fe28ab046c4882f3d2ce10b3f08e653.jpg" - }, - { - "order": 2, - "path": "/thumb/8ef03c8cbe7081ec21caefbda89dfbcc/a378b6ee189af245a3c6a1f3173da6e4.jpg", - "thumb": "/thumb/8ef03c8cbe7081ec21caefbda89dfbcc/a378b6ee189af245a3c6a1f3173da6e4.jpg", - "tiny": "/tiny/8ef03c8cbe7081ec21caefbda89dfbcc/a378b6ee189af245a3c6a1f3173da6e4.jpg" - } - ], - "title": "LOEWE Calfskin Barcelona Tote Scarlet Red", - "title_without_brand": "Calfskin Barcelona Tote Scarlet Red", - "_tags": [ - "1567294" - ], - "objectID": "1567294", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "loewe", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "totes-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "top-handles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "totes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "50-off-retail", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic LOEWE Calfskin Barcelona Tote in Scarlet Red. This chic and lovely tote is crafted in red from luxuriously soft calfskin leather. This handbag features leather strap handles, gold hardware, and a leather triangular crossover closure. The top opens to a suede interior with a zipper pocket. ", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Loewe", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Reds", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1567294", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "LOEWE Calfskin Barcelona Tote Scarlet Red", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Chanel", + "product_name": "Aged Calfskin Lucky Charms 2.55 Reissue 225 Flap Black", + "condition": "Excellent", + "discounted_price": 410, + "price": 7745, + "id": 10653478781231 }, { - "best_value": 1690, - "categories": [ - "Open Top", - "Leather", - "Solid Color", - "Handbags", - "Styles", - "Loewe", - "Top Handles", - "Totes", - "Reds", - "Womens", - "Over 50% off Retail" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "bags-under-1000", - "bags-on-sale", - "loewe", - "totes-on-sale", - "top-handles", - "totes", - "50-off-retail", - "handbag-styles", - "handbags" - ], - "description": "This is an authentic LOEWE Calfskin Barcelona Tote in Scarlet Red. This chic and lovely tote is crafted in red from luxuriously soft calfskin leather. This handbag features leather strap handles, gold hardware, and a leather triangular crossover closure. The top opens to a suede interior with a zipper pocket. ", - "discounted_price": 660, - "discounted_tier": 1, - "filters": { - "bags": [ - "Handbags", - "Totes" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Loewe" - ], - "color": [ - "Reds" - ], - "material": [ - "Leather", - "Solid Color" - ], - "bag_feature": [ - "Open Top", - "Top Handles" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$500-$1000", - "condition": [ - "Shows Wear" - ], - "locations": [ - "New York" - ] - }, - "following_count": 88, - "id": 1567294, - "made_available_at": 1740432486, - "price": 695, - "priced_at": 1743023868, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/3999cd2671ae2e794d4ff0fbd5cf9069/2fe28ab046c4882f3d2ce10b3f08e653.jpg", - "thumb": "/thumb/3999cd2671ae2e794d4ff0fbd5cf9069/2fe28ab046c4882f3d2ce10b3f08e653.jpg", - "tiny": "/tiny/3999cd2671ae2e794d4ff0fbd5cf9069/2fe28ab046c4882f3d2ce10b3f08e653.jpg" - }, - { - "order": 2, - "path": "/thumb/8ef03c8cbe7081ec21caefbda89dfbcc/a378b6ee189af245a3c6a1f3173da6e4.jpg", - "thumb": "/thumb/8ef03c8cbe7081ec21caefbda89dfbcc/a378b6ee189af245a3c6a1f3173da6e4.jpg", - "tiny": "/tiny/8ef03c8cbe7081ec21caefbda89dfbcc/a378b6ee189af245a3c6a1f3173da6e4.jpg" - } - ], - "title": "LOEWE Calfskin Barcelona Tote Scarlet Red", - "title_without_brand": "Calfskin Barcelona Tote Scarlet Red", - "_tags": [ - "1567294" - ], - "objectID": "1567294", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "loewe", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "totes-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "top-handles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "totes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "50-off-retail", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic LOEWE Calfskin Barcelona Tote in Scarlet Red. This chic and lovely tote is crafted in red from luxuriously soft calfskin leather. This handbag features leather strap handles, gold hardware, and a leather triangular crossover closure. The top opens to a suede interior with a zipper pocket. ", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Loewe", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Reds", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1567294", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "LOEWE Calfskin Barcelona Tote Scarlet Red", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Chanel", + "product_name": "Lambskin Quilted Metal Small Top Handle Vanity Case With Chain Black", + "condition": "Shows Wear", + "discounted_price": 180, + "price": 3385, + "id": 10689395884335 }, { - "best_value": 0, - "categories": [ - "Extra Straps", - "Fabrics", - "Solid Color", - "Accessories", - "Reds", - "Hermes" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "hermes", - "extra-straps", - "hermes-accessories", - "accessories", - "hermes-on-sale" - ], - "description": "This is the authentic HERMES Toile Epsom Shoulder Strap in Rouge Casaque. This stylish shoulder strap is crafted of canvas and leather in red and features polished palladium clasps.", - "discounted_price": 755, - "discounted_tier": 1, - "filters": { - "bags": [], - "jewelry": [], - "accessories": [ - "Extra Straps" - ], - "watches": [], - "shoes": [], - "brands": [ - "Hermes" - ], - "color": [ - "Reds" - ], - "material": [ - "Fabrics", - "Solid Color" - ], - "bag_feature": [], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$500-$1000", - "condition": [ - "Excellent" - ], - "locations": [ - "New York" - ] - }, - "following_count": 15, - "id": 1567425, - "made_available_at": 1740436093, - "price": 795, - "priced_at": 1743026415, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/277142b2b395dd13b21d66eb87e782f6/4722ec10859ddb70a7f8452fc70880ee.jpg", - "thumb": "/thumb/277142b2b395dd13b21d66eb87e782f6/4722ec10859ddb70a7f8452fc70880ee.jpg", - "tiny": "/tiny/277142b2b395dd13b21d66eb87e782f6/4722ec10859ddb70a7f8452fc70880ee.jpg" - }, - { - "order": 2, - "path": "/thumb/277142b2b395dd13b21d66eb87e782f6/626e67c36eb16e1bcdcdf68ed196b63b.jpg", - "thumb": "/thumb/277142b2b395dd13b21d66eb87e782f6/626e67c36eb16e1bcdcdf68ed196b63b.jpg", - "tiny": "/tiny/277142b2b395dd13b21d66eb87e782f6/626e67c36eb16e1bcdcdf68ed196b63b.jpg" - } - ], - "title": "HERMES Toile Epsom Shoulder Strap Rouge Casaque", - "title_without_brand": "Toile Epsom Shoulder Strap Rouge Casaque", - "_tags": [ - "1567425" - ], - "objectID": "1567425", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "extra-straps", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-accessories", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-on-sale", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is the authentic HERMES Toile Epsom Shoulder Strap in Rouge Casaque. This stylish shoulder strap is crafted of canvas and leather in red and features polished palladium clasps.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Hermes", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Reds", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Fabrics", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1567425", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "HERMES Toile Epsom Shoulder Strap Rouge Casaque", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Salvatore Ferragamo", + "product_name": "Raffia Effect Calfskin XS Hug Bag Natural Black", + "condition": "Excellent", + "discounted_price": 100, + "price": 1895, + "id": 10746637353263 }, { - "best_value": 0, - "categories": [ - "Extra Straps", - "Fabrics", - "Solid Color", - "Accessories", - "Reds", - "Hermes" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "hermes", - "extra-straps", - "hermes-accessories", - "accessories", - "hermes-on-sale" - ], - "description": "This is the authentic HERMES Toile Epsom Shoulder Strap in Rouge Casaque. This stylish shoulder strap is crafted of canvas and leather in red and features polished palladium clasps.", - "discounted_price": 755, - "discounted_tier": 1, - "filters": { - "bags": [], - "jewelry": [], - "accessories": [ - "Extra Straps" - ], - "watches": [], - "shoes": [], - "brands": [ - "Hermes" - ], - "color": [ - "Reds" - ], - "material": [ - "Fabrics", - "Solid Color" - ], - "bag_feature": [], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$500-$1000", - "condition": [ - "Excellent" - ], - "locations": [ - "New York" - ] - }, - "following_count": 15, - "id": 1567425, - "made_available_at": 1740436093, - "price": 795, - "priced_at": 1743026415, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/277142b2b395dd13b21d66eb87e782f6/4722ec10859ddb70a7f8452fc70880ee.jpg", - "thumb": "/thumb/277142b2b395dd13b21d66eb87e782f6/4722ec10859ddb70a7f8452fc70880ee.jpg", - "tiny": "/tiny/277142b2b395dd13b21d66eb87e782f6/4722ec10859ddb70a7f8452fc70880ee.jpg" - }, - { - "order": 2, - "path": "/thumb/277142b2b395dd13b21d66eb87e782f6/626e67c36eb16e1bcdcdf68ed196b63b.jpg", - "thumb": "/thumb/277142b2b395dd13b21d66eb87e782f6/626e67c36eb16e1bcdcdf68ed196b63b.jpg", - "tiny": "/tiny/277142b2b395dd13b21d66eb87e782f6/626e67c36eb16e1bcdcdf68ed196b63b.jpg" - } - ], - "title": "HERMES Toile Epsom Shoulder Strap Rouge Casaque", - "title_without_brand": "Toile Epsom Shoulder Strap Rouge Casaque", - "_tags": [ - "1567425" - ], - "objectID": "1567425", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "extra-straps", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-accessories", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-on-sale", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is the authentic HERMES Toile Epsom Shoulder Strap in Rouge Casaque. This stylish shoulder strap is crafted of canvas and leather in red and features polished palladium clasps.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Hermes", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Reds", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Fabrics", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1567425", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "HERMES Toile Epsom Shoulder Strap Rouge Casaque", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Jacquemus", + "product_name": "Suede Calfskin Le Bambino Dark Khaki", + "condition": "Shows Wear", + "discounted_price": 25, + "price": 495, + "id": 10746113098031 }, { - "best_value": 0, - "categories": [ - "Extra Straps", - "Fabrics", - "Solid Color", - "Accessories", - "Reds", - "Hermes" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "hermes", - "extra-straps", - "hermes-accessories", - "accessories", - "hermes-on-sale" - ], - "description": "This is the authentic HERMES Toile Epsom Shoulder Strap in Rouge Casaque. This stylish shoulder strap is crafted of canvas and leather in red and features polished palladium clasps.", - "discounted_price": 755, - "discounted_tier": 1, - "filters": { - "bags": [], - "jewelry": [], - "accessories": [ - "Extra Straps" - ], - "watches": [], - "shoes": [], - "brands": [ - "Hermes" - ], - "color": [ - "Reds" - ], - "material": [ - "Fabrics", - "Solid Color" - ], - "bag_feature": [], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$500-$1000", - "condition": [ - "Excellent" - ], - "locations": [ - "New York" - ] - }, - "following_count": 15, - "id": 1567425, - "made_available_at": 1740436093, - "price": 795, - "priced_at": 1743026415, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/277142b2b395dd13b21d66eb87e782f6/4722ec10859ddb70a7f8452fc70880ee.jpg", - "thumb": "/thumb/277142b2b395dd13b21d66eb87e782f6/4722ec10859ddb70a7f8452fc70880ee.jpg", - "tiny": "/tiny/277142b2b395dd13b21d66eb87e782f6/4722ec10859ddb70a7f8452fc70880ee.jpg" - }, - { - "order": 2, - "path": "/thumb/277142b2b395dd13b21d66eb87e782f6/626e67c36eb16e1bcdcdf68ed196b63b.jpg", - "thumb": "/thumb/277142b2b395dd13b21d66eb87e782f6/626e67c36eb16e1bcdcdf68ed196b63b.jpg", - "tiny": "/tiny/277142b2b395dd13b21d66eb87e782f6/626e67c36eb16e1bcdcdf68ed196b63b.jpg" - } - ], - "title": "HERMES Toile Epsom Shoulder Strap Rouge Casaque", - "title_without_brand": "Toile Epsom Shoulder Strap Rouge Casaque", - "_tags": [ - "1567425" - ], - "objectID": "1567425", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "extra-straps", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-accessories", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-on-sale", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is the authentic HERMES Toile Epsom Shoulder Strap in Rouge Casaque. This stylish shoulder strap is crafted of canvas and leather in red and features polished palladium clasps.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Hermes", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Reds", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Fabrics", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1567425", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "HERMES Toile Epsom Shoulder Strap Rouge Casaque", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Louis Vuitton", + "product_name": "Epi Saint Jacques PM Long Straps Tassil", + "condition": "Shows Wear", + "discounted_price": 25, + "price": 510, + "id": 10689652719919 }, { - "best_value": 1200, - "categories": [ - "Black", - "Open Top", - "Womens", - "Leather", - "Solid Color", - "Handbags", - "Shoulder Bags", - "Totes", - "General", - "Styles", - "Travel Essentials", - "Loud Luxury", - "Oversized Bags", - "Friends & Family Event", - "Iconic Leathers", - "Saint Laurent" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoulder-bags-on-sale", - "ysl", - "saint-laurent-shoulder-bags", - "oversized-bags", - "bags-under-1000", - "saint-laurent-sale", - "travel-essentials", - "bags-on-sale", - "totes-on-sale", - "saint-laurent-totes", - "totes", - "saint-laurent-bags", - "handbag-styles", - "friends-and-family-event", - "loud-luxury", - "shoulder-bags", - "saint-laurent-bags-under-1000", - "iconic-leathers", - "handbags" - ], - "description": "This is an authentic SAINT LAURENT Lambskin Quilted Maxi Icare Shopping Tote in Black. This chic tote is crafted of supple diamond-stitched calfskin leather in black. The bag features leather handles, and a large aged gold YSL emblem on the front. The top opens to a black fabric interior with an aged gold chain link strap to cinch the sides and a matching removable pouch.", - "discounted_price": 3700, - "discounted_tier": 1, - "filters": { - "bags": [ - "Handbags", - "Shoulder Bags", - "Totes" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Saint Laurent" - ], - "color": [ - "Black" - ], - "material": [ - "Leather", - "Solid Color" - ], - "bag_feature": [ - "Open Top" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "Over $2000", - "condition": [ - "Shows Wear" - ], - "locations": [ - "New York" - ] - }, - "following_count": 69, - "id": 1569947, - "made_available_at": 1740431644, - "price": 3895, - "priced_at": 1743023866, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/67b46e6e4cfa756eca7991b9b25f2f11/d53d55176681a5bab69998a8a2a77051.jpg", - "thumb": "/thumb/67b46e6e4cfa756eca7991b9b25f2f11/d53d55176681a5bab69998a8a2a77051.jpg", - "tiny": "/tiny/67b46e6e4cfa756eca7991b9b25f2f11/d53d55176681a5bab69998a8a2a77051.jpg" - }, - { - "order": 2, - "path": "/thumb/67b46e6e4cfa756eca7991b9b25f2f11/2e62bcea1ae336be6142522c80b9849b.jpg", - "thumb": "/thumb/67b46e6e4cfa756eca7991b9b25f2f11/2e62bcea1ae336be6142522c80b9849b.jpg", - "tiny": "/tiny/67b46e6e4cfa756eca7991b9b25f2f11/2e62bcea1ae336be6142522c80b9849b.jpg" - } - ], - "title": "SAINT LAURENT Lambskin Quilted Maxi Icare Shopping Tote Black", - "title_without_brand": "Lambskin Quilted Maxi Icare Shopping Tote Black", - "_tags": [ - "1569947" - ], - "objectID": "1569947", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "ysl", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "saint-laurent-shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "oversized-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "saint-laurent-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "travel-essentials", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "totes-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "saint-laurent-totes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "totes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "saint-laurent-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "friends-and-family-event", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "loud-luxury", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "saint-laurent-bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "iconic-leathers", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic SAINT LAURENT Lambskin Quilted Maxi Icare Shopping Tote in Black. This chic tote is crafted of supple diamond-stitched calfskin leather in black. The bag features leather handles, and a large aged gold YSL emblem on the front. The top opens to a black fabric interior with an aged gold chain link strap to cinch the sides and a matching removable pouch.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Saint Laurent", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Black", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1569947", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "SAINT LAURENT Lambskin Quilted Maxi Icare Shopping Tote Black", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Christian Dior", + "product_name": "Cashmere Oblique Fringed Scarf Blue", + "condition": "Excellent", + "discounted_price": 40, + "price": 770, + "id": 10656685130031 }, { - "best_value": 1200, - "categories": [ - "Black", - "Open Top", - "Womens", - "Leather", - "Solid Color", - "Handbags", - "Shoulder Bags", - "Totes", - "General", - "Styles", - "Travel Essentials", - "Loud Luxury", - "Oversized Bags", - "Friends & Family Event", - "Iconic Leathers", - "Saint Laurent" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoulder-bags-on-sale", - "ysl", - "saint-laurent-shoulder-bags", - "oversized-bags", - "bags-under-1000", - "saint-laurent-sale", - "travel-essentials", - "bags-on-sale", - "totes-on-sale", - "saint-laurent-totes", - "totes", - "saint-laurent-bags", - "handbag-styles", - "friends-and-family-event", - "loud-luxury", - "shoulder-bags", - "saint-laurent-bags-under-1000", - "iconic-leathers", - "handbags" - ], - "description": "This is an authentic SAINT LAURENT Lambskin Quilted Maxi Icare Shopping Tote in Black. This chic tote is crafted of supple diamond-stitched calfskin leather in black. The bag features leather handles, and a large aged gold YSL emblem on the front. The top opens to a black fabric interior with an aged gold chain link strap to cinch the sides and a matching removable pouch.", - "discounted_price": 3700, - "discounted_tier": 1, - "filters": { - "bags": [ - "Handbags", - "Shoulder Bags", - "Totes" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Saint Laurent" - ], - "color": [ - "Black" - ], - "material": [ - "Leather", - "Solid Color" - ], - "bag_feature": [ - "Open Top" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "Over $2000", - "condition": [ - "Shows Wear" - ], - "locations": [ - "New York" - ] - }, - "following_count": 69, - "id": 1569947, - "made_available_at": 1740431644, - "price": 3895, - "priced_at": 1743023866, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/67b46e6e4cfa756eca7991b9b25f2f11/d53d55176681a5bab69998a8a2a77051.jpg", - "thumb": "/thumb/67b46e6e4cfa756eca7991b9b25f2f11/d53d55176681a5bab69998a8a2a77051.jpg", - "tiny": "/tiny/67b46e6e4cfa756eca7991b9b25f2f11/d53d55176681a5bab69998a8a2a77051.jpg" - }, - { - "order": 2, - "path": "/thumb/67b46e6e4cfa756eca7991b9b25f2f11/2e62bcea1ae336be6142522c80b9849b.jpg", - "thumb": "/thumb/67b46e6e4cfa756eca7991b9b25f2f11/2e62bcea1ae336be6142522c80b9849b.jpg", - "tiny": "/tiny/67b46e6e4cfa756eca7991b9b25f2f11/2e62bcea1ae336be6142522c80b9849b.jpg" - } - ], - "title": "SAINT LAURENT Lambskin Quilted Maxi Icare Shopping Tote Black", - "title_without_brand": "Lambskin Quilted Maxi Icare Shopping Tote Black", - "_tags": [ - "1569947" - ], - "objectID": "1569947", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "ysl", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "saint-laurent-shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "oversized-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "saint-laurent-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "travel-essentials", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "totes-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "saint-laurent-totes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "totes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "saint-laurent-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "friends-and-family-event", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "loud-luxury", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "saint-laurent-bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "iconic-leathers", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic SAINT LAURENT Lambskin Quilted Maxi Icare Shopping Tote in Black. This chic tote is crafted of supple diamond-stitched calfskin leather in black. The bag features leather handles, and a large aged gold YSL emblem on the front. The top opens to a black fabric interior with an aged gold chain link strap to cinch the sides and a matching removable pouch.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Saint Laurent", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Black", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1569947", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "SAINT LAURENT Lambskin Quilted Maxi Icare Shopping Tote Black", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Chanel", + "product_name": "Crystal Chain Link CC Necklace Gold", + "condition": "Giftable", + "discounted_price": 60, + "price": 1130, + "id": 10733502365999 }, { - "best_value": 1200, - "categories": [ - "Black", - "Open Top", - "Womens", - "Leather", - "Solid Color", - "Handbags", - "Shoulder Bags", - "Totes", - "General", - "Styles", - "Travel Essentials", - "Loud Luxury", - "Oversized Bags", - "Friends & Family Event", - "Iconic Leathers", - "Saint Laurent" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoulder-bags-on-sale", - "ysl", - "saint-laurent-shoulder-bags", - "oversized-bags", - "bags-under-1000", - "saint-laurent-sale", - "travel-essentials", - "bags-on-sale", - "totes-on-sale", - "saint-laurent-totes", - "totes", - "saint-laurent-bags", - "handbag-styles", - "friends-and-family-event", - "loud-luxury", - "shoulder-bags", - "saint-laurent-bags-under-1000", - "iconic-leathers", - "handbags" - ], - "description": "This is an authentic SAINT LAURENT Lambskin Quilted Maxi Icare Shopping Tote in Black. This chic tote is crafted of supple diamond-stitched calfskin leather in black. The bag features leather handles, and a large aged gold YSL emblem on the front. The top opens to a black fabric interior with an aged gold chain link strap to cinch the sides and a matching removable pouch.", - "discounted_price": 3700, - "discounted_tier": 1, - "filters": { - "bags": [ - "Handbags", - "Shoulder Bags", - "Totes" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Saint Laurent" - ], - "color": [ - "Black" - ], - "material": [ - "Leather", - "Solid Color" - ], - "bag_feature": [ - "Open Top" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "Over $2000", - "condition": [ - "Shows Wear" - ], - "locations": [ - "New York" - ] - }, - "following_count": 69, - "id": 1569947, - "made_available_at": 1740431644, - "price": 3895, - "priced_at": 1743023866, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/67b46e6e4cfa756eca7991b9b25f2f11/d53d55176681a5bab69998a8a2a77051.jpg", - "thumb": "/thumb/67b46e6e4cfa756eca7991b9b25f2f11/d53d55176681a5bab69998a8a2a77051.jpg", - "tiny": "/tiny/67b46e6e4cfa756eca7991b9b25f2f11/d53d55176681a5bab69998a8a2a77051.jpg" - }, - { - "order": 2, - "path": "/thumb/67b46e6e4cfa756eca7991b9b25f2f11/2e62bcea1ae336be6142522c80b9849b.jpg", - "thumb": "/thumb/67b46e6e4cfa756eca7991b9b25f2f11/2e62bcea1ae336be6142522c80b9849b.jpg", - "tiny": "/tiny/67b46e6e4cfa756eca7991b9b25f2f11/2e62bcea1ae336be6142522c80b9849b.jpg" - } - ], - "title": "SAINT LAURENT Lambskin Quilted Maxi Icare Shopping Tote Black", - "title_without_brand": "Lambskin Quilted Maxi Icare Shopping Tote Black", - "_tags": [ - "1569947" - ], - "objectID": "1569947", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "ysl", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "saint-laurent-shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "oversized-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "saint-laurent-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "travel-essentials", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "totes-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "saint-laurent-totes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "totes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "saint-laurent-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "friends-and-family-event", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "loud-luxury", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "saint-laurent-bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "iconic-leathers", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic SAINT LAURENT Lambskin Quilted Maxi Icare Shopping Tote in Black. This chic tote is crafted of supple diamond-stitched calfskin leather in black. The bag features leather handles, and a large aged gold YSL emblem on the front. The top opens to a black fabric interior with an aged gold chain link strap to cinch the sides and a matching removable pouch.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Saint Laurent", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Black", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1569947", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "SAINT LAURENT Lambskin Quilted Maxi Icare Shopping Tote Black", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Saint Laurent", + "product_name": "Linen Canvas Teddy Shopping Bag Black", + "condition": "Shows Wear", + "discounted_price": 25, + "price": 480, + "id": 10551644619055 }, { - "best_value": 890, - "categories": [ - "End of Summer Sale", - "Black", - "Open Top", - "Leather", - "Solid Color", - "Handbags", - "Shoulder Bags", - "Totes", - "Caviar", - "Shopping Totes", - "Styles", - "Chanel" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoulder-bags-on-sale", - "chanel-on-sale", - "black-chanel-bags", - "bags-under-1000", - "chanel-tote-bags", - "caviar", - "chanel-shoulder-bags", - "bags-on-sale", - "chanel", - "totes-on-sale", - "chanel-totes", - "totes", - "end-of-summer-sale", - "shopping-totes", - "handbag-styles", - "chanel-bags", - "shoulder-bags", - "handbags" - ], - "description": "This is an authentic CHANEL Caviar Quilted City Shopping Tote in Black. This structured handbag is crafted of luxurious diamond quilted black caviar leather in black. The straps are leather threaded ruthenium chains with a Chanel CC charm and leather shoulder pads. The top has small flaps that open to a partitioned black fabric interior with a center zipper compartment.", - "discounted_price": 2610, - "discounted_tier": 1, - "filters": { - "bags": [ - "Handbags", - "Shoulder Bags", - "Totes" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Chanel" - ], - "color": [ - "Black" - ], - "material": [ - "Leather", - "Solid Color" - ], - "bag_feature": [ - "Open Top" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "Over $2000", - "condition": [ - "Shows Wear" - ], - "locations": [ - "New York" - ] - }, - "following_count": 46, - "id": 1572184, - "made_available_at": 1740432972, - "price": 2750, - "priced_at": 1743023872, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/9eb8c28a8156d397ec6f80d02f0a72a1/1a84c4fba1467b031ac5c78e980f9fae.jpg", - "thumb": "/thumb/9eb8c28a8156d397ec6f80d02f0a72a1/1a84c4fba1467b031ac5c78e980f9fae.jpg", - "tiny": "/tiny/9eb8c28a8156d397ec6f80d02f0a72a1/1a84c4fba1467b031ac5c78e980f9fae.jpg" - }, - { - "order": 2, - "path": "/thumb/9eb8c28a8156d397ec6f80d02f0a72a1/8e7f1bb76fbd95cdafa3223d64d3ec82.jpg", - "thumb": "/thumb/9eb8c28a8156d397ec6f80d02f0a72a1/8e7f1bb76fbd95cdafa3223d64d3ec82.jpg", - "tiny": "/tiny/9eb8c28a8156d397ec6f80d02f0a72a1/8e7f1bb76fbd95cdafa3223d64d3ec82.jpg" - } - ], - "title": "CHANEL Caviar Quilted City Shopping Tote Black", - "title_without_brand": "Caviar Quilted City Shopping Tote Black", - "_tags": [ - "1572184" - ], - "objectID": "1572184", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "black-chanel-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-tote-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "caviar", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "totes-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-totes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "totes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "end-of-summer-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shopping-totes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic CHANEL Caviar Quilted City Shopping Tote in Black. This structured handbag is crafted of luxurious diamond quilted black caviar leather in black. The straps are leather threaded ruthenium chains with a Chanel CC charm and leather shoulder pads. The top has small flaps that open to a partitioned black fabric interior with a center zipper compartment.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Chanel", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Black", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1572184", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "CHANEL Caviar Quilted City Shopping Tote Black", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Chanel", + "product_name": "Calfskin Quilted Chevron In The City Bag Black", + "condition": "Shows Wear", + "discounted_price": 235, + "price": 4450, + "id": 10544913678639 }, { - "best_value": 890, - "categories": [ - "End of Summer Sale", - "Black", - "Open Top", - "Leather", - "Solid Color", - "Handbags", - "Shoulder Bags", - "Totes", - "Caviar", - "Shopping Totes", - "Styles", - "Chanel" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoulder-bags-on-sale", - "chanel-on-sale", - "black-chanel-bags", - "bags-under-1000", - "chanel-tote-bags", - "caviar", - "chanel-shoulder-bags", - "bags-on-sale", - "chanel", - "totes-on-sale", - "chanel-totes", - "totes", - "end-of-summer-sale", - "shopping-totes", - "handbag-styles", - "chanel-bags", - "shoulder-bags", - "handbags" - ], - "description": "This is an authentic CHANEL Caviar Quilted City Shopping Tote in Black. This structured handbag is crafted of luxurious diamond quilted black caviar leather in black. The straps are leather threaded ruthenium chains with a Chanel CC charm and leather shoulder pads. The top has small flaps that open to a partitioned black fabric interior with a center zipper compartment.", - "discounted_price": 2610, - "discounted_tier": 1, - "filters": { - "bags": [ - "Handbags", - "Shoulder Bags", - "Totes" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Chanel" - ], - "color": [ - "Black" - ], - "material": [ - "Leather", - "Solid Color" - ], - "bag_feature": [ - "Open Top" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "Over $2000", - "condition": [ - "Shows Wear" - ], - "locations": [ - "New York" - ] - }, - "following_count": 46, - "id": 1572184, - "made_available_at": 1740432972, - "price": 2750, - "priced_at": 1743023872, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/9eb8c28a8156d397ec6f80d02f0a72a1/1a84c4fba1467b031ac5c78e980f9fae.jpg", - "thumb": "/thumb/9eb8c28a8156d397ec6f80d02f0a72a1/1a84c4fba1467b031ac5c78e980f9fae.jpg", - "tiny": "/tiny/9eb8c28a8156d397ec6f80d02f0a72a1/1a84c4fba1467b031ac5c78e980f9fae.jpg" - }, - { - "order": 2, - "path": "/thumb/9eb8c28a8156d397ec6f80d02f0a72a1/8e7f1bb76fbd95cdafa3223d64d3ec82.jpg", - "thumb": "/thumb/9eb8c28a8156d397ec6f80d02f0a72a1/8e7f1bb76fbd95cdafa3223d64d3ec82.jpg", - "tiny": "/tiny/9eb8c28a8156d397ec6f80d02f0a72a1/8e7f1bb76fbd95cdafa3223d64d3ec82.jpg" - } - ], - "title": "CHANEL Caviar Quilted City Shopping Tote Black", - "title_without_brand": "Caviar Quilted City Shopping Tote Black", - "_tags": [ - "1572184" - ], - "objectID": "1572184", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "black-chanel-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-tote-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "caviar", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "totes-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-totes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "totes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "end-of-summer-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shopping-totes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic CHANEL Caviar Quilted City Shopping Tote in Black. This structured handbag is crafted of luxurious diamond quilted black caviar leather in black. The straps are leather threaded ruthenium chains with a Chanel CC charm and leather shoulder pads. The top has small flaps that open to a partitioned black fabric interior with a center zipper compartment.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Chanel", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Black", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1572184", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "CHANEL Caviar Quilted City Shopping Tote Black", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Chanel", + "product_name": "Lambskin Quilted Large Duma Drawstring Backpack Grey", + "condition": "Excellent", + "discounted_price": 240, + "price": 4585, + "id": 10746571292975 }, { - "best_value": 890, - "categories": [ - "End of Summer Sale", - "Black", - "Open Top", - "Leather", - "Solid Color", - "Handbags", - "Shoulder Bags", - "Totes", - "Caviar", - "Shopping Totes", - "Styles", - "Chanel" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoulder-bags-on-sale", - "chanel-on-sale", - "black-chanel-bags", - "bags-under-1000", - "chanel-tote-bags", - "caviar", - "chanel-shoulder-bags", - "bags-on-sale", - "chanel", - "totes-on-sale", - "chanel-totes", - "totes", - "end-of-summer-sale", - "shopping-totes", - "handbag-styles", - "chanel-bags", - "shoulder-bags", - "handbags" - ], - "description": "This is an authentic CHANEL Caviar Quilted City Shopping Tote in Black. This structured handbag is crafted of luxurious diamond quilted black caviar leather in black. The straps are leather threaded ruthenium chains with a Chanel CC charm and leather shoulder pads. The top has small flaps that open to a partitioned black fabric interior with a center zipper compartment.", - "discounted_price": 2610, - "discounted_tier": 1, - "filters": { - "bags": [ - "Handbags", - "Shoulder Bags", - "Totes" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Chanel" - ], - "color": [ - "Black" - ], - "material": [ - "Leather", - "Solid Color" - ], - "bag_feature": [ - "Open Top" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "Over $2000", - "condition": [ - "Shows Wear" - ], - "locations": [ - "New York" - ] - }, - "following_count": 46, - "id": 1572184, - "made_available_at": 1740432972, - "price": 2750, - "priced_at": 1743023872, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/9eb8c28a8156d397ec6f80d02f0a72a1/1a84c4fba1467b031ac5c78e980f9fae.jpg", - "thumb": "/thumb/9eb8c28a8156d397ec6f80d02f0a72a1/1a84c4fba1467b031ac5c78e980f9fae.jpg", - "tiny": "/tiny/9eb8c28a8156d397ec6f80d02f0a72a1/1a84c4fba1467b031ac5c78e980f9fae.jpg" - }, - { - "order": 2, - "path": "/thumb/9eb8c28a8156d397ec6f80d02f0a72a1/8e7f1bb76fbd95cdafa3223d64d3ec82.jpg", - "thumb": "/thumb/9eb8c28a8156d397ec6f80d02f0a72a1/8e7f1bb76fbd95cdafa3223d64d3ec82.jpg", - "tiny": "/tiny/9eb8c28a8156d397ec6f80d02f0a72a1/8e7f1bb76fbd95cdafa3223d64d3ec82.jpg" - } - ], - "title": "CHANEL Caviar Quilted City Shopping Tote Black", - "title_without_brand": "Caviar Quilted City Shopping Tote Black", - "_tags": [ - "1572184" - ], - "objectID": "1572184", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "black-chanel-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-tote-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "caviar", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "totes-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-totes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "totes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "end-of-summer-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shopping-totes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic CHANEL Caviar Quilted City Shopping Tote in Black. This structured handbag is crafted of luxurious diamond quilted black caviar leather in black. The straps are leather threaded ruthenium chains with a Chanel CC charm and leather shoulder pads. The top has small flaps that open to a partitioned black fabric interior with a center zipper compartment.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Chanel", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Black", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1572184", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "CHANEL Caviar Quilted City Shopping Tote Black", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Chanel", + "product_name": "Patent Calfskin Quilted Medium Double Flap Red", + "condition": "Shows Wear", + "discounted_price": 235, + "price": 4450, + "id": 10681949126959 }, { - "best_value": 0, - "categories": [ - "Black", - "Structured", - "Top Handles", - "Leather", - "Solid Color", - "Handbags", - "Shoulder Bags", - "Epsom", - "Kelly", - "Styles", - "Invest In The Best", - "Womens", - "Hermes" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoulder-bags-on-sale", - "yearly-investments", - "bags-under-1000", - "hermes-kelly", - "hermes-kelly-handbags", - "bags-on-sale", - "kelly", - "top-handles", - "hermes", - "epsom", - "handbag-styles", - "shoulder-bags", - "handbags", - "hermes-on-sale", - "hermes-bags" - ], - "description": "This is an authentic HERMES Epsom Kelly Sellier 28 in Black. This Hermes classic handbag is crafted of stamped Epsom calfskin leather in black. It features a single leather top handle, an optional leather shoulder strap, and gold plated hardware. The traditional Kelly turn-lock secures the small flap with a padlock and a hanging leather key clochette accessorizes this handbag. The interior features two patch pockets as well as a zipped wide pocket, both in black chèvre goatskin leather.", - "discounted_price": 19945, - "discounted_tier": 1, - "filters": { - "bags": [ - "Handbags", - "Shoulder Bags" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Hermes" - ], - "color": [ - "Black" - ], - "material": [ - "Leather", - "Solid Color" - ], - "bag_feature": [ - "Structured", - "Top Handles" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "Over $2000", - "condition": [ - "Shows Wear" - ], - "locations": [ - "Carlsbad" - ] - }, - "following_count": 20, - "id": 1572324, - "made_available_at": 1740447152, - "price": 20995, - "priced_at": 1743038207, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/7d75a6c608156db5c833df32789cafea.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/7d75a6c608156db5c833df32789cafea.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/7d75a6c608156db5c833df32789cafea.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/bd2cf51b108eaa810efa7fc235218b50.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/bd2cf51b108eaa810efa7fc235218b50.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/bd2cf51b108eaa810efa7fc235218b50.jpg" - } - ], - "title": "HERMES Epsom Kelly Sellier 28 Black", - "title_without_brand": "Epsom Kelly Sellier 28 Black", - "_tags": [ - "1572324" - ], - "objectID": "1572324", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "yearly-investments", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-kelly", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-kelly-handbags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "kelly", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "top-handles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "epsom", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-bags", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic HERMES Epsom Kelly Sellier 28 in Black. This Hermes classic handbag is crafted of stamped Epsom calfskin leather in black. It features a single leather top handle, an optional leather shoulder strap, and gold plated hardware. The traditional Kelly turn-lock secures the small flap with a padlock and a hanging leather key clochette accessorizes this handbag. The interior features two patch pockets as well as a zipped wide pocket, both in black chèvre goatskin leather.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Hermes", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Black", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1572324", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "HERMES Epsom Kelly Sellier 28 Black", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Louis Vuitton", + "product_name": "Satin Sparkle Slingback Pumps 39 Black", + "condition": "Excellent", + "discounted_price": 40, + "price": 785, + "id": 10736795877679 }, { - "best_value": 0, - "categories": [ - "Black", - "Structured", - "Top Handles", - "Leather", - "Solid Color", - "Handbags", - "Shoulder Bags", - "Epsom", - "Kelly", - "Styles", - "Invest In The Best", - "Womens", - "Hermes" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoulder-bags-on-sale", - "yearly-investments", - "bags-under-1000", - "hermes-kelly", - "hermes-kelly-handbags", - "bags-on-sale", - "kelly", - "top-handles", - "hermes", - "epsom", - "handbag-styles", - "shoulder-bags", - "handbags", - "hermes-on-sale", - "hermes-bags" - ], - "description": "This is an authentic HERMES Epsom Kelly Sellier 28 in Black. This Hermes classic handbag is crafted of stamped Epsom calfskin leather in black. It features a single leather top handle, an optional leather shoulder strap, and gold plated hardware. The traditional Kelly turn-lock secures the small flap with a padlock and a hanging leather key clochette accessorizes this handbag. The interior features two patch pockets as well as a zipped wide pocket, both in black chèvre goatskin leather.", - "discounted_price": 19945, - "discounted_tier": 1, - "filters": { - "bags": [ - "Handbags", - "Shoulder Bags" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Hermes" - ], - "color": [ - "Black" - ], - "material": [ - "Leather", - "Solid Color" - ], - "bag_feature": [ - "Structured", - "Top Handles" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "Over $2000", - "condition": [ - "Shows Wear" - ], - "locations": [ - "Carlsbad" - ] - }, - "following_count": 20, - "id": 1572324, - "made_available_at": 1740447152, - "price": 20995, - "priced_at": 1743038207, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/7d75a6c608156db5c833df32789cafea.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/7d75a6c608156db5c833df32789cafea.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/7d75a6c608156db5c833df32789cafea.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/bd2cf51b108eaa810efa7fc235218b50.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/bd2cf51b108eaa810efa7fc235218b50.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/bd2cf51b108eaa810efa7fc235218b50.jpg" - } - ], - "title": "HERMES Epsom Kelly Sellier 28 Black", - "title_without_brand": "Epsom Kelly Sellier 28 Black", - "_tags": [ - "1572324" - ], - "objectID": "1572324", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "yearly-investments", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-kelly", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-kelly-handbags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "kelly", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "top-handles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "epsom", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-bags", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic HERMES Epsom Kelly Sellier 28 in Black. This Hermes classic handbag is crafted of stamped Epsom calfskin leather in black. It features a single leather top handle, an optional leather shoulder strap, and gold plated hardware. The traditional Kelly turn-lock secures the small flap with a padlock and a hanging leather key clochette accessorizes this handbag. The interior features two patch pockets as well as a zipped wide pocket, both in black chèvre goatskin leather.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Hermes", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Black", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1572324", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "HERMES Epsom Kelly Sellier 28 Black", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Louis Vuitton", + "product_name": "Monogram Reporter GM", + "condition": "Shows Wear", + "discounted_price": 45, + "price": 870, + "id": 10656467681583 }, { - "best_value": 0, - "categories": [ - "Black", - "Structured", - "Top Handles", - "Leather", - "Solid Color", - "Handbags", - "Shoulder Bags", - "Epsom", - "Kelly", - "Styles", - "Invest In The Best", - "Womens", - "Hermes" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoulder-bags-on-sale", - "yearly-investments", - "bags-under-1000", - "hermes-kelly", - "hermes-kelly-handbags", - "bags-on-sale", - "kelly", - "top-handles", - "hermes", - "epsom", - "handbag-styles", - "shoulder-bags", - "handbags", - "hermes-on-sale", - "hermes-bags" - ], - "description": "This is an authentic HERMES Epsom Kelly Sellier 28 in Black. This Hermes classic handbag is crafted of stamped Epsom calfskin leather in black. It features a single leather top handle, an optional leather shoulder strap, and gold plated hardware. The traditional Kelly turn-lock secures the small flap with a padlock and a hanging leather key clochette accessorizes this handbag. The interior features two patch pockets as well as a zipped wide pocket, both in black chèvre goatskin leather.", - "discounted_price": 19945, - "discounted_tier": 1, - "filters": { - "bags": [ - "Handbags", - "Shoulder Bags" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Hermes" - ], - "color": [ - "Black" - ], - "material": [ - "Leather", - "Solid Color" - ], - "bag_feature": [ - "Structured", - "Top Handles" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "Over $2000", - "condition": [ - "Shows Wear" - ], - "locations": [ - "Carlsbad" - ] - }, - "following_count": 20, - "id": 1572324, - "made_available_at": 1740447152, - "price": 20995, - "priced_at": 1743038207, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/7d75a6c608156db5c833df32789cafea.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/7d75a6c608156db5c833df32789cafea.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/7d75a6c608156db5c833df32789cafea.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/bd2cf51b108eaa810efa7fc235218b50.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/bd2cf51b108eaa810efa7fc235218b50.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/bd2cf51b108eaa810efa7fc235218b50.jpg" - } - ], - "title": "HERMES Epsom Kelly Sellier 28 Black", - "title_without_brand": "Epsom Kelly Sellier 28 Black", - "_tags": [ - "1572324" - ], - "objectID": "1572324", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "yearly-investments", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-kelly", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-kelly-handbags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "kelly", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "top-handles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "epsom", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-bags", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic HERMES Epsom Kelly Sellier 28 in Black. This Hermes classic handbag is crafted of stamped Epsom calfskin leather in black. It features a single leather top handle, an optional leather shoulder strap, and gold plated hardware. The traditional Kelly turn-lock secures the small flap with a padlock and a hanging leather key clochette accessorizes this handbag. The interior features two patch pockets as well as a zipped wide pocket, both in black chèvre goatskin leather.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Hermes", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Black", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1572324", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "HERMES Epsom Kelly Sellier 28 Black", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Gucci", + "product_name": "Calfskin Web Mens Screener Sneakers 9 Black White", + "condition": "Giftable", + "discounted_price": 30, + "price": 575, + "id": 10582189670703 }, { - "best_value": 0, - "categories": [ - "20 to 30mm", - "Blues", - "Womens", - "Stainless Steel", - "White Gold", - "Luxury Watches", - "General", - "Watches", - "Jewelry Box Icons", - "Vintage Finds", - "Rolex" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "investment-jewelry-watches", - "luxury-watches", - "vintage", - "watches-on-sale", - "rolex", - "watches" - ], - "description": "This is an authentic ROLEX Stainless Steel 18K White Gold 26mm Oyster Perpetual Datejust Watch Blue Roman 79174. The watch is crafted of stainless steel and 18 karat white gold, and features a blue dial, silver hands and Roman numeral hour markers, date display, fluted bezel, jubilee bracelet, sapphire crystal, and an automatic movement.", - "discounted_price": 4700, - "discounted_tier": 1, - "filters": { - "bags": [], - "jewelry": [], - "accessories": [], - "watches": [ - "Luxury Watches" - ], - "shoes": [], - "brands": [ - "Rolex" - ], - "color": [ - "Blues" - ], - "material": [ - "Stainless Steel", - "White Gold" - ], - "bag_feature": [], - "ring_size": [], - "watch_size": [ - "20 to 30mm" - ], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "Over $2000", - "condition": [ - "Shows Wear" - ], - "locations": [ - "New York" - ] - }, - "following_count": 99, - "id": 1573021, - "made_available_at": 1740453753, - "price": 4950, - "priced_at": 1743045415, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/2940e56a9d9d69a059351ff88e452ad7.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/2940e56a9d9d69a059351ff88e452ad7.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/2940e56a9d9d69a059351ff88e452ad7.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/e05ed5c4cb4ac49785a17590b9296c65.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/e05ed5c4cb4ac49785a17590b9296c65.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/e05ed5c4cb4ac49785a17590b9296c65.jpg" - } - ], - "title": "ROLEX Stainless Steel 18K White Gold 26mm Oyster Perpetual Datejust Watch Blue Roman 79174", - "title_without_brand": "Stainless Steel 18K White Gold 26mm Oyster Perpetual Datejust Watch Blue Roman 79174", - "_tags": [ - "1573021" - ], - "objectID": "1573021", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "investment-jewelry-watches", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "luxury-watches", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "vintage", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "watches-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "rolex", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "watches", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic ROLEX Stainless Steel 18K White Gold 26mm Oyster Perpetual Datejust Watch Blue Roman 79174. The watch is crafted of stainless steel and 18 karat white gold, and features a blue dial, silver hands and Roman numeral hour markers, date display, fluted bezel, jubilee bracelet, sapphire crystal, and an automatic movement.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Rolex", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Blues", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Stainless Steel", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "White Gold", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1573021", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "ROLEX Stainless Steel 18K White Gold 26mm Oyster Perpetual Datejust Watch Blue Roman 79174", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Chanel", + "product_name": "Lambskin Quilted Zip Coin Purse Black", + "condition": "Shows Wear", + "discounted_price": 30, + "price": 575, + "id": 10650454229295 }, { - "best_value": 0, - "categories": [ - "20 to 30mm", - "Blues", - "Womens", - "Stainless Steel", - "White Gold", - "Luxury Watches", - "General", - "Watches", - "Jewelry Box Icons", - "Vintage Finds", - "Rolex" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "investment-jewelry-watches", - "luxury-watches", - "vintage", - "watches-on-sale", - "rolex", - "watches" - ], - "description": "This is an authentic ROLEX Stainless Steel 18K White Gold 26mm Oyster Perpetual Datejust Watch Blue Roman 79174. The watch is crafted of stainless steel and 18 karat white gold, and features a blue dial, silver hands and Roman numeral hour markers, date display, fluted bezel, jubilee bracelet, sapphire crystal, and an automatic movement.", - "discounted_price": 4700, - "discounted_tier": 1, - "filters": { - "bags": [], - "jewelry": [], - "accessories": [], - "watches": [ - "Luxury Watches" - ], - "shoes": [], - "brands": [ - "Rolex" - ], - "color": [ - "Blues" - ], - "material": [ - "Stainless Steel", - "White Gold" - ], - "bag_feature": [], - "ring_size": [], - "watch_size": [ - "20 to 30mm" - ], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "Over $2000", - "condition": [ - "Shows Wear" - ], - "locations": [ - "New York" - ] - }, - "following_count": 99, - "id": 1573021, - "made_available_at": 1740453753, - "price": 4950, - "priced_at": 1743045415, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/2940e56a9d9d69a059351ff88e452ad7.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/2940e56a9d9d69a059351ff88e452ad7.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/2940e56a9d9d69a059351ff88e452ad7.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/e05ed5c4cb4ac49785a17590b9296c65.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/e05ed5c4cb4ac49785a17590b9296c65.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/e05ed5c4cb4ac49785a17590b9296c65.jpg" - } - ], - "title": "ROLEX Stainless Steel 18K White Gold 26mm Oyster Perpetual Datejust Watch Blue Roman 79174", - "title_without_brand": "Stainless Steel 18K White Gold 26mm Oyster Perpetual Datejust Watch Blue Roman 79174", - "_tags": [ - "1573021" - ], - "objectID": "1573021", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "investment-jewelry-watches", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "luxury-watches", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "vintage", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "watches-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "rolex", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "watches", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic ROLEX Stainless Steel 18K White Gold 26mm Oyster Perpetual Datejust Watch Blue Roman 79174. The watch is crafted of stainless steel and 18 karat white gold, and features a blue dial, silver hands and Roman numeral hour markers, date display, fluted bezel, jubilee bracelet, sapphire crystal, and an automatic movement.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Rolex", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Blues", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Stainless Steel", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "White Gold", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1573021", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "ROLEX Stainless Steel 18K White Gold 26mm Oyster Perpetual Datejust Watch Blue Roman 79174", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Prada", + "product_name": "Saffiano Lux Monochrome Chain Wallet Fuoco", + "condition": "Excellent", + "discounted_price": 60, + "price": 1090, + "id": 10746603995439 }, { - "best_value": 0, - "categories": [ - "20 to 30mm", - "Blues", - "Womens", - "Stainless Steel", - "White Gold", - "Luxury Watches", - "General", - "Watches", - "Jewelry Box Icons", - "Vintage Finds", - "Rolex" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "investment-jewelry-watches", - "luxury-watches", - "vintage", - "watches-on-sale", - "rolex", - "watches" - ], - "description": "This is an authentic ROLEX Stainless Steel 18K White Gold 26mm Oyster Perpetual Datejust Watch Blue Roman 79174. The watch is crafted of stainless steel and 18 karat white gold, and features a blue dial, silver hands and Roman numeral hour markers, date display, fluted bezel, jubilee bracelet, sapphire crystal, and an automatic movement.", - "discounted_price": 4700, - "discounted_tier": 1, - "filters": { - "bags": [], - "jewelry": [], - "accessories": [], - "watches": [ - "Luxury Watches" - ], - "shoes": [], - "brands": [ - "Rolex" - ], - "color": [ - "Blues" - ], - "material": [ - "Stainless Steel", - "White Gold" - ], - "bag_feature": [], - "ring_size": [], - "watch_size": [ - "20 to 30mm" - ], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "Over $2000", - "condition": [ - "Shows Wear" - ], - "locations": [ - "New York" - ] - }, - "following_count": 99, - "id": 1573021, - "made_available_at": 1740453753, - "price": 4950, - "priced_at": 1743045415, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/2940e56a9d9d69a059351ff88e452ad7.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/2940e56a9d9d69a059351ff88e452ad7.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/2940e56a9d9d69a059351ff88e452ad7.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/e05ed5c4cb4ac49785a17590b9296c65.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/e05ed5c4cb4ac49785a17590b9296c65.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/e05ed5c4cb4ac49785a17590b9296c65.jpg" - } - ], - "title": "ROLEX Stainless Steel 18K White Gold 26mm Oyster Perpetual Datejust Watch Blue Roman 79174", - "title_without_brand": "Stainless Steel 18K White Gold 26mm Oyster Perpetual Datejust Watch Blue Roman 79174", - "_tags": [ - "1573021" - ], - "objectID": "1573021", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "investment-jewelry-watches", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "luxury-watches", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "vintage", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "watches-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "rolex", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "watches", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic ROLEX Stainless Steel 18K White Gold 26mm Oyster Perpetual Datejust Watch Blue Roman 79174. The watch is crafted of stainless steel and 18 karat white gold, and features a blue dial, silver hands and Roman numeral hour markers, date display, fluted bezel, jubilee bracelet, sapphire crystal, and an automatic movement.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Rolex", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Blues", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Stainless Steel", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "White Gold", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1573021", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "ROLEX Stainless Steel 18K White Gold 26mm Oyster Perpetual Datejust Watch Blue Roman 79174", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Jimmy Choo", + "product_name": "Lace Crystal Bing 65 Pumps 40.5 Black", + "condition": "Shows Wear", + "discounted_price": 25, + "price": 495, + "id": 10746603929903 }, { - "best_value": 0, - "categories": [ - "Black", - "Structured", - "Top Handles", - "Leather", - "Solid Color", - "Handbags", - "Birkin", - "Epsom", - "Styles", - "Quiet Luxury", - "Investment Bags", - "Classic & Timeless", - "Womens", - "Hermes" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "investment-bags", - "bags-under-1000", - "hermes-birkin-handbags", - "classic-accessories", - "bags-on-sale", - "modern-minimalist", - "top-handles", - "hermes-birkin", - "hermes", - "epsom", - "handbag-styles", - "birkin", - "handbags", - "hermes-on-sale", - "hermes-bags" - ], - "description": "This is an authentic HERMES Epsom Birkin 30 in Black. This stylish tote is beautifully crafted of epsom calfskin leather in black. This bag features rolled leather top handles, a front flap and strap closure and polished gold plated hardware including a gold plated turn lock, a padlock and a clochette for keys. This opens to a matching chevre goatskin leather interior with zipper and patch pockets.", - "discounted_price": 23745, - "discounted_tier": 1, - "filters": { - "bags": [ - "Handbags" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Hermes" - ], - "color": [ - "Black" - ], - "material": [ - "Leather", - "Solid Color" - ], - "bag_feature": [ - "Structured", - "Top Handles" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "Over $2000", - "condition": [ - "Excellent" - ], - "locations": [ - "Carlsbad" - ] - }, - "following_count": 55, - "id": 1576244, - "made_available_at": 1740448056, - "price": 24995, - "priced_at": 1743038208, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/20e0a5edcc3b4b2d2cdfc6dbce04ad70.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/20e0a5edcc3b4b2d2cdfc6dbce04ad70.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/20e0a5edcc3b4b2d2cdfc6dbce04ad70.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/c4b7e1a7d51eebbf32394abd3fe5bb2a.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/c4b7e1a7d51eebbf32394abd3fe5bb2a.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/c4b7e1a7d51eebbf32394abd3fe5bb2a.jpg" - } - ], - "title": "HERMES Epsom Birkin 30 Black", - "title_without_brand": "Epsom Birkin 30 Black", - "_tags": [ - "1576244" - ], - "objectID": "1576244", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "investment-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-birkin-handbags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "classic-accessories", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "modern-minimalist", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "top-handles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-birkin", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "epsom", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "birkin", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-bags", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic HERMES Epsom Birkin 30 in Black. This stylish tote is beautifully crafted of epsom calfskin leather in black. This bag features rolled leather top handles, a front flap and strap closure and polished gold plated hardware including a gold plated turn lock, a padlock and a clochette for keys. This opens to a matching chevre goatskin leather interior with zipper and patch pockets.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Hermes", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Black", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1576244", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "HERMES Epsom Birkin 30 Black", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Louis Vuitton", + "product_name": "Damier Ebene Recoleta", + "condition": "Shows Wear", + "discounted_price": 50, + "price": 950, + "id": 10746603831599 }, { - "best_value": 0, - "categories": [ - "Black", - "Structured", - "Top Handles", - "Leather", - "Solid Color", - "Handbags", - "Birkin", - "Epsom", - "Styles", - "Quiet Luxury", - "Investment Bags", - "Classic & Timeless", - "Womens", - "Hermes" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "investment-bags", - "bags-under-1000", - "hermes-birkin-handbags", - "classic-accessories", - "bags-on-sale", - "modern-minimalist", - "top-handles", - "hermes-birkin", - "hermes", - "epsom", - "handbag-styles", - "birkin", - "handbags", - "hermes-on-sale", - "hermes-bags" - ], - "description": "This is an authentic HERMES Epsom Birkin 30 in Black. This stylish tote is beautifully crafted of epsom calfskin leather in black. This bag features rolled leather top handles, a front flap and strap closure and polished gold plated hardware including a gold plated turn lock, a padlock and a clochette for keys. This opens to a matching chevre goatskin leather interior with zipper and patch pockets.", - "discounted_price": 23745, - "discounted_tier": 1, - "filters": { - "bags": [ - "Handbags" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Hermes" - ], - "color": [ - "Black" - ], - "material": [ - "Leather", - "Solid Color" - ], - "bag_feature": [ - "Structured", - "Top Handles" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "Over $2000", - "condition": [ - "Excellent" - ], - "locations": [ - "Carlsbad" - ] - }, - "following_count": 55, - "id": 1576244, - "made_available_at": 1740448056, - "price": 24995, - "priced_at": 1743038208, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/20e0a5edcc3b4b2d2cdfc6dbce04ad70.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/20e0a5edcc3b4b2d2cdfc6dbce04ad70.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/20e0a5edcc3b4b2d2cdfc6dbce04ad70.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/c4b7e1a7d51eebbf32394abd3fe5bb2a.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/c4b7e1a7d51eebbf32394abd3fe5bb2a.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/c4b7e1a7d51eebbf32394abd3fe5bb2a.jpg" - } - ], - "title": "HERMES Epsom Birkin 30 Black", - "title_without_brand": "Epsom Birkin 30 Black", - "_tags": [ - "1576244" - ], - "objectID": "1576244", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "investment-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-birkin-handbags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "classic-accessories", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "modern-minimalist", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "top-handles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-birkin", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "epsom", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "birkin", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-bags", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic HERMES Epsom Birkin 30 in Black. This stylish tote is beautifully crafted of epsom calfskin leather in black. This bag features rolled leather top handles, a front flap and strap closure and polished gold plated hardware including a gold plated turn lock, a padlock and a clochette for keys. This opens to a matching chevre goatskin leather interior with zipper and patch pockets.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Hermes", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Black", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1576244", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "HERMES Epsom Birkin 30 Black", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Prada", + "product_name": "Saffiano Cuir Small Twin Tote Turchese", + "condition": "Excellent", + "discounted_price": 80, + "price": 1550, + "id": 10746603700527 }, { - "best_value": 0, - "categories": [ - "Black", - "Structured", - "Top Handles", - "Leather", - "Solid Color", - "Handbags", - "Birkin", - "Epsom", - "Styles", - "Quiet Luxury", - "Investment Bags", - "Classic & Timeless", - "Womens", - "Hermes" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "investment-bags", - "bags-under-1000", - "hermes-birkin-handbags", - "classic-accessories", - "bags-on-sale", - "modern-minimalist", - "top-handles", - "hermes-birkin", - "hermes", - "epsom", - "handbag-styles", - "birkin", - "handbags", - "hermes-on-sale", - "hermes-bags" - ], - "description": "This is an authentic HERMES Epsom Birkin 30 in Black. This stylish tote is beautifully crafted of epsom calfskin leather in black. This bag features rolled leather top handles, a front flap and strap closure and polished gold plated hardware including a gold plated turn lock, a padlock and a clochette for keys. This opens to a matching chevre goatskin leather interior with zipper and patch pockets.", - "discounted_price": 23745, - "discounted_tier": 1, - "filters": { - "bags": [ - "Handbags" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Hermes" - ], - "color": [ - "Black" - ], - "material": [ - "Leather", - "Solid Color" - ], - "bag_feature": [ - "Structured", - "Top Handles" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "Over $2000", - "condition": [ - "Excellent" - ], - "locations": [ - "Carlsbad" - ] - }, - "following_count": 55, - "id": 1576244, - "made_available_at": 1740448056, - "price": 24995, - "priced_at": 1743038208, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/20e0a5edcc3b4b2d2cdfc6dbce04ad70.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/20e0a5edcc3b4b2d2cdfc6dbce04ad70.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/20e0a5edcc3b4b2d2cdfc6dbce04ad70.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/c4b7e1a7d51eebbf32394abd3fe5bb2a.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/c4b7e1a7d51eebbf32394abd3fe5bb2a.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/c4b7e1a7d51eebbf32394abd3fe5bb2a.jpg" - } - ], - "title": "HERMES Epsom Birkin 30 Black", - "title_without_brand": "Epsom Birkin 30 Black", - "_tags": [ - "1576244" - ], - "objectID": "1576244", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "investment-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-birkin-handbags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "classic-accessories", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "modern-minimalist", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "top-handles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-birkin", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "epsom", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "birkin", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-bags", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic HERMES Epsom Birkin 30 in Black. This stylish tote is beautifully crafted of epsom calfskin leather in black. This bag features rolled leather top handles, a front flap and strap closure and polished gold plated hardware including a gold plated turn lock, a padlock and a clochette for keys. This opens to a matching chevre goatskin leather interior with zipper and patch pockets.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Hermes", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Black", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1576244", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "HERMES Epsom Birkin 30 Black", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Saint Laurent", + "product_name": "Metallic Calfskin Y Quilted Monogram Toy Loulou Crossbody Bag Blue Royal", + "condition": "Shows Wear", + "discounted_price": 40, + "price": 750, + "id": 10746603274543 }, { - "best_value": 580, - "categories": [ - "Shoes", - "Greens", - "Womens", - "Fabrics", - "Leather", - "Solid Color", - "Pumps", - "Accessories", - "General", - "RSVP-Worthy", - "Vacation Vibes", - "Summer Essentials", - "36", - "Bottega Veneta", - "Over 50% off Retail" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "bottega-veneta-sale", - "shoes-on-sale", - "bottega-veneta", - "holiday-party-looks", - "bottega-veneta-shoes", - "50-off-retail", - "pumps-shoes", - "accessories-on-sale", - "vacation-mode", - "shoes", - "summer-essentials", - "accessories" - ], - "description": "This is an authentic pair of BOTTEGA VENETA Mesh Nappa Stretch Ankle Tie Sandals size 36 in Kiwi. These stunning sandals feature mesh with lambskin leather trim. They feature an elongated square toe with a 4-inch heel.", - "discounted_price": 520, - "discounted_tier": 1, - "filters": { - "bags": [], - "jewelry": [], - "accessories": [ - "Shoes" - ], - "watches": [], - "shoes": [ - "Pumps" - ], - "brands": [ - "Bottega Veneta" - ], - "color": [ - "Greens" - ], - "material": [ - "Fabrics", - "Leather", - "Solid Color" - ], - "bag_feature": [], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [ - "36" - ], - "on_sale": [ - "5% Off" - ], - "price": "$500-$1000", - "condition": [ - "Shows Wear" - ], - "locations": [ - "New York" - ] - }, - "following_count": 2, - "id": 1577082, - "made_available_at": 1740431011, - "price": 550, - "priced_at": 1743023856, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/98fb2f7ccc3c52731cb2a0835aad164a.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/98fb2f7ccc3c52731cb2a0835aad164a.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/98fb2f7ccc3c52731cb2a0835aad164a.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/309a2bcf0e9dea07b595e6f1ea4620b8.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/309a2bcf0e9dea07b595e6f1ea4620b8.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/309a2bcf0e9dea07b595e6f1ea4620b8.jpg" - } - ], - "title": "BOTTEGA VENETA Mesh Nappa Stretch Ankle Tie Sandals 36 Kiwi", - "title_without_brand": "Mesh Nappa Stretch Ankle Tie Sandals 36 Kiwi", - "_tags": [ - "1577082" - ], - "objectID": "1577082", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bottega-veneta-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoes-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bottega-veneta", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "holiday-party-looks", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bottega-veneta-shoes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "50-off-retail", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "pumps-shoes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "vacation-mode", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "summer-essentials", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic pair of BOTTEGA VENETA Mesh Nappa Stretch Ankle Tie Sandals size 36 in Kiwi. These stunning sandals feature mesh with lambskin leather trim. They feature an elongated square toe with a 4-inch heel.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Bottega Veneta", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Greens", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Fabrics", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1577082", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "BOTTEGA VENETA Mesh Nappa Stretch Ankle Tie Sandals 36 Kiwi", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Gucci", + "product_name": "Calfskin Mini Sylvie Chain Shoulder Bag Black", + "condition": "Shows Wear", + "discounted_price": 45, + "price": 875, + "id": 10746603209007 }, { - "best_value": 580, - "categories": [ - "Shoes", - "Greens", - "Womens", - "Fabrics", - "Leather", - "Solid Color", - "Pumps", - "Accessories", - "General", - "RSVP-Worthy", - "Vacation Vibes", - "Summer Essentials", - "36", - "Bottega Veneta", - "Over 50% off Retail" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "bottega-veneta-sale", - "shoes-on-sale", - "bottega-veneta", - "holiday-party-looks", - "bottega-veneta-shoes", - "50-off-retail", - "pumps-shoes", - "accessories-on-sale", - "vacation-mode", - "shoes", - "summer-essentials", - "accessories" - ], - "description": "This is an authentic pair of BOTTEGA VENETA Mesh Nappa Stretch Ankle Tie Sandals size 36 in Kiwi. These stunning sandals feature mesh with lambskin leather trim. They feature an elongated square toe with a 4-inch heel.", - "discounted_price": 520, - "discounted_tier": 1, - "filters": { - "bags": [], - "jewelry": [], - "accessories": [ - "Shoes" - ], - "watches": [], - "shoes": [ - "Pumps" - ], - "brands": [ - "Bottega Veneta" - ], - "color": [ - "Greens" - ], - "material": [ - "Fabrics", - "Leather", - "Solid Color" - ], - "bag_feature": [], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [ - "36" - ], - "on_sale": [ - "5% Off" - ], - "price": "$500-$1000", - "condition": [ - "Shows Wear" - ], - "locations": [ - "New York" - ] - }, - "following_count": 2, - "id": 1577082, - "made_available_at": 1740431011, - "price": 550, - "priced_at": 1743023856, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/98fb2f7ccc3c52731cb2a0835aad164a.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/98fb2f7ccc3c52731cb2a0835aad164a.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/98fb2f7ccc3c52731cb2a0835aad164a.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/309a2bcf0e9dea07b595e6f1ea4620b8.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/309a2bcf0e9dea07b595e6f1ea4620b8.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/309a2bcf0e9dea07b595e6f1ea4620b8.jpg" - } - ], - "title": "BOTTEGA VENETA Mesh Nappa Stretch Ankle Tie Sandals 36 Kiwi", - "title_without_brand": "Mesh Nappa Stretch Ankle Tie Sandals 36 Kiwi", - "_tags": [ - "1577082" - ], - "objectID": "1577082", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bottega-veneta-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoes-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bottega-veneta", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "holiday-party-looks", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bottega-veneta-shoes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "50-off-retail", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "pumps-shoes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "vacation-mode", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "summer-essentials", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic pair of BOTTEGA VENETA Mesh Nappa Stretch Ankle Tie Sandals size 36 in Kiwi. These stunning sandals feature mesh with lambskin leather trim. They feature an elongated square toe with a 4-inch heel.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Bottega Veneta", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Greens", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Fabrics", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1577082", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "BOTTEGA VENETA Mesh Nappa Stretch Ankle Tie Sandals 36 Kiwi", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Loewe", + "product_name": "Raffia Square Small Basket Tote Bag Natural Tan", + "condition": "Excellent", + "discounted_price": 65, + "price": 1250, + "id": 10746603110703 }, { - "best_value": 580, - "categories": [ - "Shoes", - "Greens", - "Womens", - "Fabrics", - "Leather", - "Solid Color", - "Pumps", - "Accessories", - "General", - "RSVP-Worthy", - "Vacation Vibes", - "Summer Essentials", - "36", - "Bottega Veneta", - "Over 50% off Retail" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "bottega-veneta-sale", - "shoes-on-sale", - "bottega-veneta", - "holiday-party-looks", - "bottega-veneta-shoes", - "50-off-retail", - "pumps-shoes", - "accessories-on-sale", - "vacation-mode", - "shoes", - "summer-essentials", - "accessories" - ], - "description": "This is an authentic pair of BOTTEGA VENETA Mesh Nappa Stretch Ankle Tie Sandals size 36 in Kiwi. These stunning sandals feature mesh with lambskin leather trim. They feature an elongated square toe with a 4-inch heel.", - "discounted_price": 520, - "discounted_tier": 1, - "filters": { - "bags": [], - "jewelry": [], - "accessories": [ - "Shoes" - ], - "watches": [], - "shoes": [ - "Pumps" - ], - "brands": [ - "Bottega Veneta" - ], - "color": [ - "Greens" - ], - "material": [ - "Fabrics", - "Leather", - "Solid Color" - ], - "bag_feature": [], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [ - "36" - ], - "on_sale": [ - "5% Off" - ], - "price": "$500-$1000", - "condition": [ - "Shows Wear" - ], - "locations": [ - "New York" - ] - }, - "following_count": 2, - "id": 1577082, - "made_available_at": 1740431011, - "price": 550, - "priced_at": 1743023856, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/98fb2f7ccc3c52731cb2a0835aad164a.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/98fb2f7ccc3c52731cb2a0835aad164a.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/98fb2f7ccc3c52731cb2a0835aad164a.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/309a2bcf0e9dea07b595e6f1ea4620b8.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/309a2bcf0e9dea07b595e6f1ea4620b8.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/309a2bcf0e9dea07b595e6f1ea4620b8.jpg" - } - ], - "title": "BOTTEGA VENETA Mesh Nappa Stretch Ankle Tie Sandals 36 Kiwi", - "title_without_brand": "Mesh Nappa Stretch Ankle Tie Sandals 36 Kiwi", - "_tags": [ - "1577082" - ], - "objectID": "1577082", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bottega-veneta-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoes-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bottega-veneta", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "holiday-party-looks", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bottega-veneta-shoes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "50-off-retail", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "pumps-shoes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "vacation-mode", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "summer-essentials", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic pair of BOTTEGA VENETA Mesh Nappa Stretch Ankle Tie Sandals size 36 in Kiwi. These stunning sandals feature mesh with lambskin leather trim. They feature an elongated square toe with a 4-inch heel.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Bottega Veneta", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Greens", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Fabrics", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1577082", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "BOTTEGA VENETA Mesh Nappa Stretch Ankle Tie Sandals 36 Kiwi", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Louis Vuitton", + "product_name": "Empreinte Speedy Bandouliere 30 Aurore", + "condition": "Shows Wear", + "discounted_price": 75, + "price": 1390, + "id": 10746602881327 }, { - "best_value": 740, - "categories": [ - "Shoes", - "Black", - "Leather", - "Boots & Booties", - "Accessories", - "General", - "Womens", - "Browns", - "Solid Color", - "Fabrics", - "39", - "Fendi" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "fendi-on-sale", - "shoes-on-sale", - "boots-booties", - "fendi-shoes", - "accessories-on-sale", - "shoes", - "fendi", - "accessories" - ], - "description": "This is an authentic pair of FENDI Vitello Fabric Jacquard FF Fendigraphy 50mm Biker Boots size 39 in Tobacco and Black. These ultra-chic boots are crafted of black and brown with gold hardware. These boots also feature laces and a 2.25-inch heel.", - "discounted_price": 850, - "discounted_tier": 1, - "filters": { - "bags": [], - "jewelry": [], - "accessories": [ - "Shoes" - ], - "watches": [], - "shoes": [ - "Boots & Booties" - ], - "brands": [ - "Fendi" - ], - "color": [ - "Black", - "Browns" - ], - "material": [ - "Leather", - "Solid Color", - "Fabrics" - ], - "bag_feature": [], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [ - "39" - ], - "on_sale": [ - "5% Off" - ], - "price": "$500-$1000", - "condition": [ - "Shows Wear" - ], - "locations": [ - "New York" - ] - }, - "following_count": 16, - "id": 1577112, - "made_available_at": 1740430973, - "price": 895, - "priced_at": 1743023854, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/7cf6cef55d372d1d9c19ee9da2028143.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/7cf6cef55d372d1d9c19ee9da2028143.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/7cf6cef55d372d1d9c19ee9da2028143.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/2956b7bdb180c114b7edb04b4f47e5f3.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/2956b7bdb180c114b7edb04b4f47e5f3.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/2956b7bdb180c114b7edb04b4f47e5f3.jpg" - } - ], - "title": "FENDI Vitello Fabric Jacquard FF Fendigraphy 50mm Biker Boots 39 Black Tobacco", - "title_without_brand": "Vitello Fabric Jacquard FF Fendigraphy 50mm Biker Boots 39 Black Tobacco", - "_tags": [ - "1577112" - ], - "objectID": "1577112", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "fendi-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoes-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "boots-booties", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "fendi-shoes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "fendi", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic pair of FENDI Vitello Fabric Jacquard FF Fendigraphy 50mm Biker Boots size 39 in Tobacco and Black. These ultra-chic boots are crafted of black and brown with gold hardware. These boots also feature laces and a 2.25-inch heel.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Fendi", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Black", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Browns", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Fabrics", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1577112", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "FENDI Vitello Fabric Jacquard FF Fendigraphy 50mm Biker Boots 39 Black Tobacco", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Chloe", + "product_name": "Linen Calfskin Medium Woody Ribbon Tote White Brown", + "condition": "New", + "discounted_price": 60, + "price": 1090, + "id": 10746602389807 }, { - "best_value": 740, - "categories": [ - "Shoes", - "Black", - "Leather", - "Boots & Booties", - "Accessories", - "General", - "Womens", - "Browns", - "Solid Color", - "Fabrics", - "39", - "Fendi" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "fendi-on-sale", - "shoes-on-sale", - "boots-booties", - "fendi-shoes", - "accessories-on-sale", - "shoes", - "fendi", - "accessories" - ], - "description": "This is an authentic pair of FENDI Vitello Fabric Jacquard FF Fendigraphy 50mm Biker Boots size 39 in Tobacco and Black. These ultra-chic boots are crafted of black and brown with gold hardware. These boots also feature laces and a 2.25-inch heel.", - "discounted_price": 850, - "discounted_tier": 1, - "filters": { - "bags": [], - "jewelry": [], - "accessories": [ - "Shoes" - ], - "watches": [], - "shoes": [ - "Boots & Booties" - ], - "brands": [ - "Fendi" - ], - "color": [ - "Black", - "Browns" - ], - "material": [ - "Leather", - "Solid Color", - "Fabrics" - ], - "bag_feature": [], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [ - "39" - ], - "on_sale": [ - "5% Off" - ], - "price": "$500-$1000", - "condition": [ - "Shows Wear" - ], - "locations": [ - "New York" - ] - }, - "following_count": 16, - "id": 1577112, - "made_available_at": 1740430973, - "price": 895, - "priced_at": 1743023854, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/7cf6cef55d372d1d9c19ee9da2028143.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/7cf6cef55d372d1d9c19ee9da2028143.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/7cf6cef55d372d1d9c19ee9da2028143.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/2956b7bdb180c114b7edb04b4f47e5f3.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/2956b7bdb180c114b7edb04b4f47e5f3.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/2956b7bdb180c114b7edb04b4f47e5f3.jpg" - } - ], - "title": "FENDI Vitello Fabric Jacquard FF Fendigraphy 50mm Biker Boots 39 Black Tobacco", - "title_without_brand": "Vitello Fabric Jacquard FF Fendigraphy 50mm Biker Boots 39 Black Tobacco", - "_tags": [ - "1577112" - ], - "objectID": "1577112", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "fendi-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoes-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "boots-booties", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "fendi-shoes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "fendi", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic pair of FENDI Vitello Fabric Jacquard FF Fendigraphy 50mm Biker Boots size 39 in Tobacco and Black. These ultra-chic boots are crafted of black and brown with gold hardware. These boots also feature laces and a 2.25-inch heel.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Fendi", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Black", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Browns", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Fabrics", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1577112", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "FENDI Vitello Fabric Jacquard FF Fendigraphy 50mm Biker Boots 39 Black Tobacco", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Chanel", + "product_name": "Tweed Calfskin Signe Hobo Navy Multicolor", + "condition": "Excellent", + "discounted_price": 190, + "price": 3585, + "id": 10746601636143 }, { - "best_value": 740, - "categories": [ - "Shoes", - "Black", - "Leather", - "Boots & Booties", - "Accessories", - "General", - "Womens", - "Browns", - "Solid Color", - "Fabrics", - "39", - "Fendi" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "fendi-on-sale", - "shoes-on-sale", - "boots-booties", - "fendi-shoes", - "accessories-on-sale", - "shoes", - "fendi", - "accessories" - ], - "description": "This is an authentic pair of FENDI Vitello Fabric Jacquard FF Fendigraphy 50mm Biker Boots size 39 in Tobacco and Black. These ultra-chic boots are crafted of black and brown with gold hardware. These boots also feature laces and a 2.25-inch heel.", - "discounted_price": 850, - "discounted_tier": 1, - "filters": { - "bags": [], - "jewelry": [], - "accessories": [ - "Shoes" - ], - "watches": [], - "shoes": [ - "Boots & Booties" - ], - "brands": [ - "Fendi" - ], - "color": [ - "Black", - "Browns" - ], - "material": [ - "Leather", - "Solid Color", - "Fabrics" - ], - "bag_feature": [], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [ - "39" - ], - "on_sale": [ - "5% Off" - ], - "price": "$500-$1000", - "condition": [ - "Shows Wear" - ], - "locations": [ - "New York" - ] - }, - "following_count": 16, - "id": 1577112, - "made_available_at": 1740430973, - "price": 895, - "priced_at": 1743023854, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/7cf6cef55d372d1d9c19ee9da2028143.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/7cf6cef55d372d1d9c19ee9da2028143.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/7cf6cef55d372d1d9c19ee9da2028143.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/2956b7bdb180c114b7edb04b4f47e5f3.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/2956b7bdb180c114b7edb04b4f47e5f3.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/2956b7bdb180c114b7edb04b4f47e5f3.jpg" - } - ], - "title": "FENDI Vitello Fabric Jacquard FF Fendigraphy 50mm Biker Boots 39 Black Tobacco", - "title_without_brand": "Vitello Fabric Jacquard FF Fendigraphy 50mm Biker Boots 39 Black Tobacco", - "_tags": [ - "1577112" - ], - "objectID": "1577112", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "fendi-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoes-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "boots-booties", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "fendi-shoes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "fendi", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic pair of FENDI Vitello Fabric Jacquard FF Fendigraphy 50mm Biker Boots size 39 in Tobacco and Black. These ultra-chic boots are crafted of black and brown with gold hardware. These boots also feature laces and a 2.25-inch heel.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Fendi", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Black", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Browns", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Fabrics", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1577112", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "FENDI Vitello Fabric Jacquard FF Fendigraphy 50mm Biker Boots 39 Black Tobacco", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Louis Vuitton", + "product_name": "Empreinte Monogram Boulogne GM Turtledove", + "condition": "Excellent", + "discounted_price": 155, + "price": 2990, + "id": 10746601013551 }, { - "best_value": 0, - "categories": [ - "Mens", - "Rings", - "Sterling Silver", - "Fine Jewelry", - "General", - "Jewelry", - "Womens", - "57/8", - "Gucci" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "mens", - "gucci", - "fine-jewelry", - "gucci-jewelry", - "sterling-silver-rings", - "giftable-jewelry", - "sterling-silver", - "jewelry-on-sale", - "rings-on-sale", - "rings", - "gucci-on-sale", - "jewelry" - ], - "description": "This is an authentic GUCCI Sterling Silver Letter D Ring 57 8. This bold ring is crafted of sterling silver and features the letter \"D\" surrounded by a groove spiral motif. ", - "discounted_price": 260, - "discounted_tier": 1, - "filters": { - "bags": [], - "jewelry": [ - "Rings" - ], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Gucci" - ], - "color": [], - "material": [ - "Sterling Silver" - ], - "bag_feature": [], - "ring_size": [ - "57/8" - ], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$200-$500", - "condition": [ - "Shows Wear" - ], - "locations": [ - "New York" - ] - }, - "following_count": 9, - "id": 1579012, - "made_available_at": 1740439764, - "price": 275, - "priced_at": 1743031010, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/c5fd08b09b63f826c2ac7a6808a4dd23.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/c5fd08b09b63f826c2ac7a6808a4dd23.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/c5fd08b09b63f826c2ac7a6808a4dd23.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/e6dea98aaa4f6e08f39fd9bb9b7995d1.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/e6dea98aaa4f6e08f39fd9bb9b7995d1.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/e6dea98aaa4f6e08f39fd9bb9b7995d1.jpg" - } - ], - "title": "GUCCI Sterling Silver Letter D Ring 57 8", - "title_without_brand": "Sterling Silver Letter D Ring 57 8", - "_tags": [ - "1579012" - ], - "objectID": "1579012", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "mens", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "fine-jewelry", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-jewelry", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "sterling-silver-rings", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "giftable-jewelry", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "sterling-silver", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "jewelry-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "rings-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "rings", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "jewelry", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic GUCCI Sterling Silver Letter D Ring 57 8. This bold ring is crafted of sterling silver and features the letter \"D\" surrounded by a groove spiral motif. ", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Gucci", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Sterling Silver", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1579012", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "GUCCI Sterling Silver Letter D Ring 57 8", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Louis Vuitton", + "product_name": "Monogram Neo Neverfull GM", + "condition": "Shows Wear", + "discounted_price": 85, + "price": 1650, + "id": 10746600882479 }, { - "best_value": 0, - "categories": [ - "Mens", - "Rings", - "Sterling Silver", - "Fine Jewelry", - "General", - "Jewelry", - "Womens", - "57/8", - "Gucci" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "mens", - "gucci", - "fine-jewelry", - "gucci-jewelry", - "sterling-silver-rings", - "giftable-jewelry", - "sterling-silver", - "jewelry-on-sale", - "rings-on-sale", - "rings", - "gucci-on-sale", - "jewelry" - ], - "description": "This is an authentic GUCCI Sterling Silver Letter D Ring 57 8. This bold ring is crafted of sterling silver and features the letter \"D\" surrounded by a groove spiral motif. ", - "discounted_price": 260, - "discounted_tier": 1, - "filters": { - "bags": [], - "jewelry": [ - "Rings" - ], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Gucci" - ], - "color": [], - "material": [ - "Sterling Silver" - ], - "bag_feature": [], - "ring_size": [ - "57/8" - ], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$200-$500", - "condition": [ - "Shows Wear" - ], - "locations": [ - "New York" - ] - }, - "following_count": 9, - "id": 1579012, - "made_available_at": 1740439764, - "price": 275, - "priced_at": 1743031010, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/c5fd08b09b63f826c2ac7a6808a4dd23.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/c5fd08b09b63f826c2ac7a6808a4dd23.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/c5fd08b09b63f826c2ac7a6808a4dd23.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/e6dea98aaa4f6e08f39fd9bb9b7995d1.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/e6dea98aaa4f6e08f39fd9bb9b7995d1.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/e6dea98aaa4f6e08f39fd9bb9b7995d1.jpg" - } - ], - "title": "GUCCI Sterling Silver Letter D Ring 57 8", - "title_without_brand": "Sterling Silver Letter D Ring 57 8", - "_tags": [ - "1579012" - ], - "objectID": "1579012", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "mens", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "fine-jewelry", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-jewelry", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "sterling-silver-rings", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "giftable-jewelry", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "sterling-silver", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "jewelry-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "rings-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "rings", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "jewelry", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic GUCCI Sterling Silver Letter D Ring 57 8. This bold ring is crafted of sterling silver and features the letter \"D\" surrounded by a groove spiral motif. ", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Gucci", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Sterling Silver", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1579012", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "GUCCI Sterling Silver Letter D Ring 57 8", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Gucci", + "product_name": "Metallic Calfskin Bamboo Tassel Zip Around Wallet Green", + "condition": "Shows Wear", + "discounted_price": 10, + "price": 225, + "id": 10746600849711 }, { - "best_value": 0, - "categories": [ - "Mens", - "Rings", - "Sterling Silver", - "Fine Jewelry", - "General", - "Jewelry", - "Womens", - "57/8", - "Gucci" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "mens", - "gucci", - "fine-jewelry", - "gucci-jewelry", - "sterling-silver-rings", - "giftable-jewelry", - "sterling-silver", - "jewelry-on-sale", - "rings-on-sale", - "rings", - "gucci-on-sale", - "jewelry" - ], - "description": "This is an authentic GUCCI Sterling Silver Letter D Ring 57 8. This bold ring is crafted of sterling silver and features the letter \"D\" surrounded by a groove spiral motif. ", - "discounted_price": 260, - "discounted_tier": 1, - "filters": { - "bags": [], - "jewelry": [ - "Rings" - ], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Gucci" - ], - "color": [], - "material": [ - "Sterling Silver" - ], - "bag_feature": [], - "ring_size": [ - "57/8" - ], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$200-$500", - "condition": [ - "Shows Wear" - ], - "locations": [ - "New York" - ] - }, - "following_count": 9, - "id": 1579012, - "made_available_at": 1740439764, - "price": 275, - "priced_at": 1743031010, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/c5fd08b09b63f826c2ac7a6808a4dd23.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/c5fd08b09b63f826c2ac7a6808a4dd23.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/c5fd08b09b63f826c2ac7a6808a4dd23.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/e6dea98aaa4f6e08f39fd9bb9b7995d1.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/e6dea98aaa4f6e08f39fd9bb9b7995d1.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/e6dea98aaa4f6e08f39fd9bb9b7995d1.jpg" - } - ], - "title": "GUCCI Sterling Silver Letter D Ring 57 8", - "title_without_brand": "Sterling Silver Letter D Ring 57 8", - "_tags": [ - "1579012" - ], - "objectID": "1579012", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "mens", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "fine-jewelry", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-jewelry", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "sterling-silver-rings", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "giftable-jewelry", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "sterling-silver", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "jewelry-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "rings-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "rings", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "jewelry", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic GUCCI Sterling Silver Letter D Ring 57 8. This bold ring is crafted of sterling silver and features the letter \"D\" surrounded by a groove spiral motif. ", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Gucci", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Sterling Silver", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1579012", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "GUCCI Sterling Silver Letter D Ring 57 8", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Chanel", + "product_name": "Acetate Rectangle Sunglasses 5435-A Tortoise", + "condition": "Shows Wear", + "discounted_price": 30, + "price": 550, + "id": 10746600816943 }, { - "best_value": 0, - "categories": [ - "Womens", - "Necklaces", - "Jewelry", - "Rose Gold", - "Tiffany" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "tiffany-jewelry-on-sale", - "tiffany-necklaces", - "rose-gold-necklaces", - "necklaces", - "tiffany-t-collection", - "giftable-jewelry", - "jewelry-on-sale", - "tiffany", - "necklaces-on-sale", - "jewelry", - "pendant-necklaces", - "tiffany-jewelry" - ], - "description": "This is an authentic TIFFANY 18K Rose Gold Filigree Heart Key Pendant. The pendant is crafted of 18 karat rose gold and features a filigree heart lock pendant that spells out the word Tiffany and a smaller key charm. ", - "discounted_price": 1090, - "discounted_tier": 1, - "filters": { - "bags": [], - "jewelry": [ - "Necklaces" - ], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Tiffany" - ], - "color": [], - "material": [ - "Rose Gold" - ], - "bag_feature": [], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$1000-$2000", - "condition": [ - "Excellent" - ], - "locations": [ - "New York" - ] - }, - "following_count": 39, - "id": 1579786, - "made_available_at": 1740436936, - "price": 1150, - "priced_at": 1743026421, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/9316df89f6f002c800c37c0782e685b7.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/9316df89f6f002c800c37c0782e685b7.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/9316df89f6f002c800c37c0782e685b7.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/bd1bb7f5a23437b26b7f54d8f7798577.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/bd1bb7f5a23437b26b7f54d8f7798577.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/bd1bb7f5a23437b26b7f54d8f7798577.jpg" - } - ], - "title": "TIFFANY 18K Rose Gold Filigree Heart Key Pendant", - "title_without_brand": "18K Rose Gold Filigree Heart Key Pendant", - "_tags": [ - "1579786" - ], - "objectID": "1579786", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "tiffany-jewelry-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "tiffany-necklaces", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "rose-gold-necklaces", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "necklaces", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "tiffany-t-collection", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "giftable-jewelry", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "jewelry-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "tiffany", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "necklaces-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "jewelry", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "pendant-necklaces", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "tiffany-jewelry", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic TIFFANY 18K Rose Gold Filigree Heart Key Pendant. The pendant is crafted of 18 karat rose gold and features a filigree heart lock pendant that spells out the word Tiffany and a smaller key charm. ", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Tiffany", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Rose Gold", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1579786", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "TIFFANY 18K Rose Gold Filigree Heart Key Pendant", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Gucci", + "product_name": "Guccissima Medium D Gold Hobo Off White", + "condition": "Shows Wear", + "discounted_price": 20, + "price": 395, + "id": 10746600620335 }, { - "best_value": 0, - "categories": [ - "Womens", - "Necklaces", - "Jewelry", - "Rose Gold", - "Tiffany" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "tiffany-jewelry-on-sale", - "tiffany-necklaces", - "rose-gold-necklaces", - "necklaces", - "tiffany-t-collection", - "giftable-jewelry", - "jewelry-on-sale", - "tiffany", - "necklaces-on-sale", - "jewelry", - "pendant-necklaces", - "tiffany-jewelry" - ], - "description": "This is an authentic TIFFANY 18K Rose Gold Filigree Heart Key Pendant. The pendant is crafted of 18 karat rose gold and features a filigree heart lock pendant that spells out the word Tiffany and a smaller key charm. ", - "discounted_price": 1090, - "discounted_tier": 1, - "filters": { - "bags": [], - "jewelry": [ - "Necklaces" - ], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Tiffany" - ], - "color": [], - "material": [ - "Rose Gold" - ], - "bag_feature": [], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$1000-$2000", - "condition": [ - "Excellent" - ], - "locations": [ - "New York" - ] - }, - "following_count": 39, - "id": 1579786, - "made_available_at": 1740436936, - "price": 1150, - "priced_at": 1743026421, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/9316df89f6f002c800c37c0782e685b7.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/9316df89f6f002c800c37c0782e685b7.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/9316df89f6f002c800c37c0782e685b7.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/bd1bb7f5a23437b26b7f54d8f7798577.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/bd1bb7f5a23437b26b7f54d8f7798577.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/bd1bb7f5a23437b26b7f54d8f7798577.jpg" - } - ], - "title": "TIFFANY 18K Rose Gold Filigree Heart Key Pendant", - "title_without_brand": "18K Rose Gold Filigree Heart Key Pendant", - "_tags": [ - "1579786" - ], - "objectID": "1579786", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "tiffany-jewelry-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "tiffany-necklaces", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "rose-gold-necklaces", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "necklaces", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "tiffany-t-collection", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "giftable-jewelry", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "jewelry-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "tiffany", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "necklaces-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "jewelry", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "pendant-necklaces", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "tiffany-jewelry", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic TIFFANY 18K Rose Gold Filigree Heart Key Pendant. The pendant is crafted of 18 karat rose gold and features a filigree heart lock pendant that spells out the word Tiffany and a smaller key charm. ", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Tiffany", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Rose Gold", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1579786", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "TIFFANY 18K Rose Gold Filigree Heart Key Pendant", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Chanel", + "product_name": "Printed Denim Quilted Mini Rectangular Flap Dark Blue", + "condition": "Giftable", + "discounted_price": 365, + "price": 6980, + "id": 10746600489263 }, { - "best_value": 0, - "categories": [ - "Womens", - "Necklaces", - "Jewelry", - "Rose Gold", - "Tiffany" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "tiffany-jewelry-on-sale", - "tiffany-necklaces", - "rose-gold-necklaces", - "necklaces", - "tiffany-t-collection", - "giftable-jewelry", - "jewelry-on-sale", - "tiffany", - "necklaces-on-sale", - "jewelry", - "pendant-necklaces", - "tiffany-jewelry" - ], - "description": "This is an authentic TIFFANY 18K Rose Gold Filigree Heart Key Pendant. The pendant is crafted of 18 karat rose gold and features a filigree heart lock pendant that spells out the word Tiffany and a smaller key charm. ", - "discounted_price": 1090, - "discounted_tier": 1, - "filters": { - "bags": [], - "jewelry": [ - "Necklaces" - ], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Tiffany" - ], - "color": [], - "material": [ - "Rose Gold" - ], - "bag_feature": [], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$1000-$2000", - "condition": [ - "Excellent" - ], - "locations": [ - "New York" - ] - }, - "following_count": 39, - "id": 1579786, - "made_available_at": 1740436936, - "price": 1150, - "priced_at": 1743026421, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/9316df89f6f002c800c37c0782e685b7.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/9316df89f6f002c800c37c0782e685b7.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/9316df89f6f002c800c37c0782e685b7.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/bd1bb7f5a23437b26b7f54d8f7798577.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/bd1bb7f5a23437b26b7f54d8f7798577.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/bd1bb7f5a23437b26b7f54d8f7798577.jpg" - } - ], - "title": "TIFFANY 18K Rose Gold Filigree Heart Key Pendant", - "title_without_brand": "18K Rose Gold Filigree Heart Key Pendant", - "_tags": [ - "1579786" - ], - "objectID": "1579786", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "tiffany-jewelry-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "tiffany-necklaces", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "rose-gold-necklaces", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "necklaces", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "tiffany-t-collection", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "giftable-jewelry", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "jewelry-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "tiffany", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "necklaces-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "jewelry", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "pendant-necklaces", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "tiffany-jewelry", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic TIFFANY 18K Rose Gold Filigree Heart Key Pendant. The pendant is crafted of 18 karat rose gold and features a filigree heart lock pendant that spells out the word Tiffany and a smaller key charm. ", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Tiffany", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Rose Gold", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1579786", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "TIFFANY 18K Rose Gold Filigree Heart Key Pendant", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Louis Vuitton", + "product_name": "Silk Monogram Around The World Bandeau Black Pink", + "condition": "Excellent", + "discounted_price": 20, + "price": 395, + "id": 10746600259887 }, { - "best_value": 850, - "categories": [ - "Open Top", - "Womens", - "Fabrics", - "Handbags", - "Shoulder Bags", - "General", - "Styles", - "Browns", - "Suede Leather", - "Miu Miu" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoulder-bags-on-sale", - "miu-miu", - "bags-under-1000", - "bags-on-sale", - "handbag-styles", - "shoulder-bags", - "handbags" - ], - "description": "This is an authentic MIU MIU Goatskin Madras Tote in Astrale. This tote is crafted of light blue goatskin leather with matching leather top handles, removable adjustable shoulder strap, and a prominent Miu Miu logo embossed on the front. The top is open to a natural fabric interior with a zipper pocket and magnetic patch pocket.", - "discounted_price": 1400, - "discounted_tier": 1, - "filters": { - "bags": [ - "Handbags", - "Shoulder Bags" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Miu Miu" - ], - "color": [ - "Browns" - ], - "material": [ - "Fabrics", - "Suede Leather" - ], - "bag_feature": [ - "Open Top" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$1000-$2000", - "condition": [ - "Excellent" - ], - "locations": [ - "New York" - ] - }, - "following_count": 27, - "id": 1580090, - "made_available_at": 1740440280, - "price": 1475, - "priced_at": 1743031010, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/69a1403bd7c8143b4cfd35bf307853c6.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/69a1403bd7c8143b4cfd35bf307853c6.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/69a1403bd7c8143b4cfd35bf307853c6.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/3226d9c03a407665e6b5e45afeda7507.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/3226d9c03a407665e6b5e45afeda7507.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/3226d9c03a407665e6b5e45afeda7507.jpg" - } - ], - "title": "MIU MIU Goatskin Madras Tote Astrale", - "title_without_brand": "Goatskin Madras Tote Astrale", - "_tags": [ - "1580090" - ], - "objectID": "1580090", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "miu-miu", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic MIU MIU Goatskin Madras Tote in Astrale. This tote is crafted of light blue goatskin leather with matching leather top handles, removable adjustable shoulder strap, and a prominent Miu Miu logo embossed on the front. The top is open to a natural fabric interior with a zipper pocket and magnetic patch pocket.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Miu Miu", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Browns", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Fabrics", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Suede Leather", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1580090", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "MIU MIU Goatskin Madras Tote Astrale", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Hermes", + "product_name": "Military Toile Vache Hunter Herbag Zip Retourne 20 Bleu Riviera Black", + "condition": "Excellent", + "discounted_price": 235, + "price": 4485, + "id": 10746599047471 }, { - "best_value": 850, - "categories": [ - "Open Top", - "Womens", - "Fabrics", - "Handbags", - "Shoulder Bags", - "General", - "Styles", - "Browns", - "Suede Leather", - "Miu Miu" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoulder-bags-on-sale", - "miu-miu", - "bags-under-1000", - "bags-on-sale", - "handbag-styles", - "shoulder-bags", - "handbags" - ], - "description": "This is an authentic MIU MIU Goatskin Madras Tote in Astrale. This tote is crafted of light blue goatskin leather with matching leather top handles, removable adjustable shoulder strap, and a prominent Miu Miu logo embossed on the front. The top is open to a natural fabric interior with a zipper pocket and magnetic patch pocket.", - "discounted_price": 1400, - "discounted_tier": 1, - "filters": { - "bags": [ - "Handbags", - "Shoulder Bags" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Miu Miu" - ], - "color": [ - "Browns" - ], - "material": [ - "Fabrics", - "Suede Leather" - ], - "bag_feature": [ - "Open Top" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$1000-$2000", - "condition": [ - "Excellent" - ], - "locations": [ - "New York" - ] - }, - "following_count": 27, - "id": 1580090, - "made_available_at": 1740440280, - "price": 1475, - "priced_at": 1743031010, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/69a1403bd7c8143b4cfd35bf307853c6.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/69a1403bd7c8143b4cfd35bf307853c6.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/69a1403bd7c8143b4cfd35bf307853c6.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/3226d9c03a407665e6b5e45afeda7507.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/3226d9c03a407665e6b5e45afeda7507.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/3226d9c03a407665e6b5e45afeda7507.jpg" - } - ], - "title": "MIU MIU Goatskin Madras Tote Astrale", - "title_without_brand": "Goatskin Madras Tote Astrale", - "_tags": [ - "1580090" - ], - "objectID": "1580090", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "miu-miu", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic MIU MIU Goatskin Madras Tote in Astrale. This tote is crafted of light blue goatskin leather with matching leather top handles, removable adjustable shoulder strap, and a prominent Miu Miu logo embossed on the front. The top is open to a natural fabric interior with a zipper pocket and magnetic patch pocket.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Miu Miu", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Browns", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Fabrics", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Suede Leather", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1580090", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "MIU MIU Goatskin Madras Tote Astrale", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Prada", + "product_name": "Re-Nylon Saffiano Mini Re-Edition 1978 Bucket Bag Black", + "condition": "Excellent", + "discounted_price": 80, + "price": 1490, + "id": 10746599014703 }, { - "best_value": 850, - "categories": [ - "Open Top", - "Womens", - "Fabrics", - "Handbags", - "Shoulder Bags", - "General", - "Styles", - "Browns", - "Suede Leather", - "Miu Miu" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoulder-bags-on-sale", - "miu-miu", - "bags-under-1000", - "bags-on-sale", - "handbag-styles", - "shoulder-bags", - "handbags" - ], - "description": "This is an authentic MIU MIU Goatskin Madras Tote in Astrale. This tote is crafted of light blue goatskin leather with matching leather top handles, removable adjustable shoulder strap, and a prominent Miu Miu logo embossed on the front. The top is open to a natural fabric interior with a zipper pocket and magnetic patch pocket.", - "discounted_price": 1400, - "discounted_tier": 1, - "filters": { - "bags": [ - "Handbags", - "Shoulder Bags" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Miu Miu" - ], - "color": [ - "Browns" - ], - "material": [ - "Fabrics", - "Suede Leather" - ], - "bag_feature": [ - "Open Top" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$1000-$2000", - "condition": [ - "Excellent" - ], - "locations": [ - "New York" - ] - }, - "following_count": 27, - "id": 1580090, - "made_available_at": 1740440280, - "price": 1475, - "priced_at": 1743031010, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/69a1403bd7c8143b4cfd35bf307853c6.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/69a1403bd7c8143b4cfd35bf307853c6.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/69a1403bd7c8143b4cfd35bf307853c6.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/3226d9c03a407665e6b5e45afeda7507.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/3226d9c03a407665e6b5e45afeda7507.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/3226d9c03a407665e6b5e45afeda7507.jpg" - } - ], - "title": "MIU MIU Goatskin Madras Tote Astrale", - "title_without_brand": "Goatskin Madras Tote Astrale", - "_tags": [ - "1580090" - ], - "objectID": "1580090", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "miu-miu", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic MIU MIU Goatskin Madras Tote in Astrale. This tote is crafted of light blue goatskin leather with matching leather top handles, removable adjustable shoulder strap, and a prominent Miu Miu logo embossed on the front. The top is open to a natural fabric interior with a zipper pocket and magnetic patch pocket.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Miu Miu", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Browns", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Fabrics", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Suede Leather", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1580090", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "MIU MIU Goatskin Madras Tote Astrale", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Gucci", + "product_name": "X ADIDAS Textured Dollar Calfskin Web Trefoil Mini Horsebit 1955 Shoulder Bag Hibiscus Red Off White", + "condition": "Excellent", + "discounted_price": 60, + "price": 1090, + "id": 10746598883631 }, { - "best_value": 0, - "categories": [ - "For the Bride", - "Womens", - "Rings", - "Platinum", - "Designer Clearance - X", - "General", - "Jewelry", - "The Clearance Sale", - "Red Envelope Sale", - "Spring Refresh Offer", - "Treat Yourself Sale", - "Graduation Gifts Sale", - "End of Summer Sale", - "Jewelry Collector", - "48/4.5", - "Tiffany" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "tiffany-jewelry-on-sale", - "tiffany-rings", - "designer-sale", - "red-envelope-sale", - "tiffany-t-collection", - "spring-refresh-offer", - "gifts-for-grads", - "giftable-jewelry", - "jewelry-on-sale", - "end-of-summer-sale", - "bridal-accessories", - "jewelry-spotlight", - "tiffany", - "rings-on-sale", - "rings", - "jewelry", - "treat-yourself-offer", - "band-rings", - "tiffany-jewelry" - ], - "description": "This is an authentic TIFFANY Platinum Round Baguette Diamond 3mm Channel-Set Eternity Band Ring 48 4.5. The ring is crafted of platinum and features a full circle of round brilliant cut and baguette cut diamonds weighing approximately .31 total carat weight. ", - "discounted_price": 3035, - "discounted_tier": 1, - "filters": { - "bags": [], - "jewelry": [ - "Rings" - ], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Tiffany" - ], - "color": [], - "material": [ - "Platinum" - ], - "bag_feature": [], - "ring_size": [ - "48/4.5" - ], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "Over $2000", - "condition": [ - "Excellent" - ], - "locations": [ - "New York" - ] - }, - "following_count": 25, - "id": 1580647, - "made_available_at": 1740440297, - "price": 3195, - "priced_at": 1743031011, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/bec54c6f82aed0efa935f8dd03c00994.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/bec54c6f82aed0efa935f8dd03c00994.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/bec54c6f82aed0efa935f8dd03c00994.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/58930db60f0cc2f3dcfedae124a10a07.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/58930db60f0cc2f3dcfedae124a10a07.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/58930db60f0cc2f3dcfedae124a10a07.jpg" - } - ], - "title": "TIFFANY Platinum Round Baguette Diamond 3mm Channel-Set Eternity Band Ring 48 4.5", - "title_without_brand": "Platinum Round Baguette Diamond 3mm Channel-Set Eternity Band Ring 48 4.5", - "_tags": [ - "1580647" - ], - "objectID": "1580647", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "tiffany-jewelry-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "tiffany-rings", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "designer-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "red-envelope-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "tiffany-t-collection", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "spring-refresh-offer", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gifts-for-grads", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "giftable-jewelry", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "jewelry-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "end-of-summer-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bridal-accessories", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "jewelry-spotlight", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "tiffany", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "rings-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "rings", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "jewelry", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "treat-yourself-offer", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "band-rings", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "tiffany-jewelry", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic TIFFANY Platinum Round Baguette Diamond 3mm Channel-Set Eternity Band Ring 48 4.5. The ring is crafted of platinum and features a full circle of round brilliant cut and baguette cut diamonds weighing approximately .31 total carat weight. ", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Tiffany", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Platinum", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1580647", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "TIFFANY Platinum Round Baguette Diamond 3mm Channel-Set Eternity Band Ring 48 4.5", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "MCM", + "product_name": "Visetos Large Zip Around Wallet Pink", + "condition": "Excellent", + "discounted_price": 15, + "price": 275, + "id": 10746597343535 }, { - "best_value": 0, - "categories": [ - "For the Bride", - "Womens", - "Rings", - "Platinum", - "Designer Clearance - X", - "General", - "Jewelry", - "The Clearance Sale", - "Red Envelope Sale", - "Spring Refresh Offer", - "Treat Yourself Sale", - "Graduation Gifts Sale", - "End of Summer Sale", - "Jewelry Collector", - "48/4.5", - "Tiffany" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "tiffany-jewelry-on-sale", - "tiffany-rings", - "designer-sale", - "red-envelope-sale", - "tiffany-t-collection", - "spring-refresh-offer", - "gifts-for-grads", - "giftable-jewelry", - "jewelry-on-sale", - "end-of-summer-sale", - "bridal-accessories", - "jewelry-spotlight", - "tiffany", - "rings-on-sale", - "rings", - "jewelry", - "treat-yourself-offer", - "band-rings", - "tiffany-jewelry" - ], - "description": "This is an authentic TIFFANY Platinum Round Baguette Diamond 3mm Channel-Set Eternity Band Ring 48 4.5. The ring is crafted of platinum and features a full circle of round brilliant cut and baguette cut diamonds weighing approximately .31 total carat weight. ", - "discounted_price": 3035, - "discounted_tier": 1, - "filters": { - "bags": [], - "jewelry": [ - "Rings" - ], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Tiffany" - ], - "color": [], - "material": [ - "Platinum" - ], - "bag_feature": [], - "ring_size": [ - "48/4.5" - ], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "Over $2000", - "condition": [ - "Excellent" - ], - "locations": [ - "New York" - ] - }, - "following_count": 25, - "id": 1580647, - "made_available_at": 1740440297, - "price": 3195, - "priced_at": 1743031011, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/bec54c6f82aed0efa935f8dd03c00994.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/bec54c6f82aed0efa935f8dd03c00994.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/bec54c6f82aed0efa935f8dd03c00994.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/58930db60f0cc2f3dcfedae124a10a07.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/58930db60f0cc2f3dcfedae124a10a07.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/58930db60f0cc2f3dcfedae124a10a07.jpg" - } - ], - "title": "TIFFANY Platinum Round Baguette Diamond 3mm Channel-Set Eternity Band Ring 48 4.5", - "title_without_brand": "Platinum Round Baguette Diamond 3mm Channel-Set Eternity Band Ring 48 4.5", - "_tags": [ - "1580647" - ], - "objectID": "1580647", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "tiffany-jewelry-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "tiffany-rings", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "designer-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "red-envelope-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "tiffany-t-collection", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "spring-refresh-offer", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gifts-for-grads", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "giftable-jewelry", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "jewelry-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "end-of-summer-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bridal-accessories", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "jewelry-spotlight", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "tiffany", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "rings-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "rings", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "jewelry", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "treat-yourself-offer", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "band-rings", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "tiffany-jewelry", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic TIFFANY Platinum Round Baguette Diamond 3mm Channel-Set Eternity Band Ring 48 4.5. The ring is crafted of platinum and features a full circle of round brilliant cut and baguette cut diamonds weighing approximately .31 total carat weight. ", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Tiffany", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Platinum", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1580647", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "TIFFANY Platinum Round Baguette Diamond 3mm Channel-Set Eternity Band Ring 48 4.5", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Chanel", + "product_name": "Caviar Enamel Coco Casino Quilted Zip Coin Purse Navy Blue", + "condition": "Shows Wear", + "discounted_price": 35, + "price": 695, + "id": 10746597179695 }, { - "best_value": 0, - "categories": [ - "For the Bride", - "Womens", - "Rings", - "Platinum", - "Designer Clearance - X", - "General", - "Jewelry", - "The Clearance Sale", - "Red Envelope Sale", - "Spring Refresh Offer", - "Treat Yourself Sale", - "Graduation Gifts Sale", - "End of Summer Sale", - "Jewelry Collector", - "48/4.5", - "Tiffany" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "tiffany-jewelry-on-sale", - "tiffany-rings", - "designer-sale", - "red-envelope-sale", - "tiffany-t-collection", - "spring-refresh-offer", - "gifts-for-grads", - "giftable-jewelry", - "jewelry-on-sale", - "end-of-summer-sale", - "bridal-accessories", - "jewelry-spotlight", - "tiffany", - "rings-on-sale", - "rings", - "jewelry", - "treat-yourself-offer", - "band-rings", - "tiffany-jewelry" - ], - "description": "This is an authentic TIFFANY Platinum Round Baguette Diamond 3mm Channel-Set Eternity Band Ring 48 4.5. The ring is crafted of platinum and features a full circle of round brilliant cut and baguette cut diamonds weighing approximately .31 total carat weight. ", - "discounted_price": 3035, - "discounted_tier": 1, - "filters": { - "bags": [], - "jewelry": [ - "Rings" - ], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Tiffany" - ], - "color": [], - "material": [ - "Platinum" - ], - "bag_feature": [], - "ring_size": [ - "48/4.5" - ], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "Over $2000", - "condition": [ - "Excellent" - ], - "locations": [ - "New York" - ] - }, - "following_count": 25, - "id": 1580647, - "made_available_at": 1740440297, - "price": 3195, - "priced_at": 1743031011, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/bec54c6f82aed0efa935f8dd03c00994.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/bec54c6f82aed0efa935f8dd03c00994.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/bec54c6f82aed0efa935f8dd03c00994.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/58930db60f0cc2f3dcfedae124a10a07.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/58930db60f0cc2f3dcfedae124a10a07.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/58930db60f0cc2f3dcfedae124a10a07.jpg" - } - ], - "title": "TIFFANY Platinum Round Baguette Diamond 3mm Channel-Set Eternity Band Ring 48 4.5", - "title_without_brand": "Platinum Round Baguette Diamond 3mm Channel-Set Eternity Band Ring 48 4.5", - "_tags": [ - "1580647" - ], - "objectID": "1580647", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "tiffany-jewelry-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "tiffany-rings", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "designer-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "red-envelope-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "tiffany-t-collection", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "spring-refresh-offer", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gifts-for-grads", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "giftable-jewelry", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "jewelry-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "end-of-summer-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bridal-accessories", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "jewelry-spotlight", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "tiffany", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "rings-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "rings", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "jewelry", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "treat-yourself-offer", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "band-rings", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "tiffany-jewelry", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic TIFFANY Platinum Round Baguette Diamond 3mm Channel-Set Eternity Band Ring 48 4.5. The ring is crafted of platinum and features a full circle of round brilliant cut and baguette cut diamonds weighing approximately .31 total carat weight. ", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Tiffany", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Platinum", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1580647", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "TIFFANY Platinum Round Baguette Diamond 3mm Channel-Set Eternity Band Ring 48 4.5", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Gucci", + "product_name": "Dollar Calfskin Interlocking G Crossbody Bag Mystic White", + "condition": "Excellent", + "discounted_price": 55, + "price": 1050, + "id": 10746597114159 }, { - "best_value": 2125, - "categories": [ - "Womens", - "Earrings", - "Platinum", - "Fine Jewelry", - "General", - "Jewelry", - "Heirloom Elegance", - "Tiffany" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "earrings", - "diamond-earrings", - "heirloom-elegance", - "tiffany-jewelry-on-sale", - "earrings-on-sale", - "fine-jewelry", - "tiffany-earrings", - "tiffany-t-collection", - "giftable-jewelry", - "jewelry-on-sale", - "tiffany", - "drop-earrings", - "jewelry", - "tiffany-jewelry" - ], - "description": "This is an authentic pair of TIFFANY Platinum Diamond Heart Drop Earrings. The earrings are crafted of platinum and feature a drop heart motif accented with round brilliant cut diamonds, approximately .55 total carat weight.", - "discounted_price": 2275, - "discounted_tier": 1, - "filters": { - "bags": [], - "jewelry": [ - "Earrings" - ], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Tiffany" - ], - "color": [], - "material": [ - "Platinum" - ], - "bag_feature": [], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "Over $2000", - "condition": [ - "Shows Wear" - ], - "locations": [ - "New York" - ] - }, - "following_count": 27, - "id": 1580706, - "made_available_at": 1740437323, - "price": 2395, - "priced_at": 1743026422, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/4bfb39b66d226adcd924b77b48d0f094.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/4bfb39b66d226adcd924b77b48d0f094.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/4bfb39b66d226adcd924b77b48d0f094.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/894f49f77f3e3e7c268917dcecd0c41d.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/894f49f77f3e3e7c268917dcecd0c41d.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/894f49f77f3e3e7c268917dcecd0c41d.jpg" - } - ], - "title": "TIFFANY Platinum Diamond Heart Drop Earrings", - "title_without_brand": "Platinum Diamond Heart Drop Earrings", - "_tags": [ - "1580706" - ], - "objectID": "1580706", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "earrings", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "diamond-earrings", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "heirloom-elegance", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "tiffany-jewelry-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "earrings-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "fine-jewelry", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "tiffany-earrings", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "tiffany-t-collection", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "giftable-jewelry", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "jewelry-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "tiffany", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "drop-earrings", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "jewelry", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "tiffany-jewelry", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic pair of TIFFANY Platinum Diamond Heart Drop Earrings. The earrings are crafted of platinum and feature a drop heart motif accented with round brilliant cut diamonds, approximately .55 total carat weight.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Tiffany", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Platinum", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1580706", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "TIFFANY Platinum Diamond Heart Drop Earrings", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Loewe", + "product_name": "Shiny Calfskin Medium Puzzle Fold Tote Umber", + "condition": "Shows Wear", + "discounted_price": 95, + "price": 1790, + "id": 10746596983087 }, { - "best_value": 2125, - "categories": [ - "Womens", - "Earrings", - "Platinum", - "Fine Jewelry", - "General", - "Jewelry", - "Heirloom Elegance", - "Tiffany" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "earrings", - "diamond-earrings", - "heirloom-elegance", - "tiffany-jewelry-on-sale", - "earrings-on-sale", - "fine-jewelry", - "tiffany-earrings", - "tiffany-t-collection", - "giftable-jewelry", - "jewelry-on-sale", - "tiffany", - "drop-earrings", - "jewelry", - "tiffany-jewelry" - ], - "description": "This is an authentic pair of TIFFANY Platinum Diamond Heart Drop Earrings. The earrings are crafted of platinum and feature a drop heart motif accented with round brilliant cut diamonds, approximately .55 total carat weight.", - "discounted_price": 2275, - "discounted_tier": 1, - "filters": { - "bags": [], - "jewelry": [ - "Earrings" - ], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Tiffany" - ], - "color": [], - "material": [ - "Platinum" - ], - "bag_feature": [], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "Over $2000", - "condition": [ - "Shows Wear" - ], - "locations": [ - "New York" - ] - }, - "following_count": 27, - "id": 1580706, - "made_available_at": 1740437323, - "price": 2395, - "priced_at": 1743026422, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/4bfb39b66d226adcd924b77b48d0f094.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/4bfb39b66d226adcd924b77b48d0f094.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/4bfb39b66d226adcd924b77b48d0f094.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/894f49f77f3e3e7c268917dcecd0c41d.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/894f49f77f3e3e7c268917dcecd0c41d.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/894f49f77f3e3e7c268917dcecd0c41d.jpg" - } - ], - "title": "TIFFANY Platinum Diamond Heart Drop Earrings", - "title_without_brand": "Platinum Diamond Heart Drop Earrings", - "_tags": [ - "1580706" - ], - "objectID": "1580706", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "earrings", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "diamond-earrings", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "heirloom-elegance", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "tiffany-jewelry-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "earrings-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "fine-jewelry", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "tiffany-earrings", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "tiffany-t-collection", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "giftable-jewelry", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "jewelry-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "tiffany", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "drop-earrings", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "jewelry", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "tiffany-jewelry", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic pair of TIFFANY Platinum Diamond Heart Drop Earrings. The earrings are crafted of platinum and feature a drop heart motif accented with round brilliant cut diamonds, approximately .55 total carat weight.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Tiffany", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Platinum", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1580706", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "TIFFANY Platinum Diamond Heart Drop Earrings", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Chanel", + "product_name": "Lambskin Quilted Large Chanel 19 Flap White", + "condition": "Excellent", + "discounted_price": 230, + "price": 4385, + "id": 10746596884783 }, { - "best_value": 2125, - "categories": [ - "Womens", - "Earrings", - "Platinum", - "Fine Jewelry", - "General", - "Jewelry", - "Heirloom Elegance", - "Tiffany" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "earrings", - "diamond-earrings", - "heirloom-elegance", - "tiffany-jewelry-on-sale", - "earrings-on-sale", - "fine-jewelry", - "tiffany-earrings", - "tiffany-t-collection", - "giftable-jewelry", - "jewelry-on-sale", - "tiffany", - "drop-earrings", - "jewelry", - "tiffany-jewelry" - ], - "description": "This is an authentic pair of TIFFANY Platinum Diamond Heart Drop Earrings. The earrings are crafted of platinum and feature a drop heart motif accented with round brilliant cut diamonds, approximately .55 total carat weight.", - "discounted_price": 2275, - "discounted_tier": 1, - "filters": { - "bags": [], - "jewelry": [ - "Earrings" - ], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Tiffany" - ], - "color": [], - "material": [ - "Platinum" - ], - "bag_feature": [], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "Over $2000", - "condition": [ - "Shows Wear" - ], - "locations": [ - "New York" - ] - }, - "following_count": 27, - "id": 1580706, - "made_available_at": 1740437323, - "price": 2395, - "priced_at": 1743026422, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/4bfb39b66d226adcd924b77b48d0f094.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/4bfb39b66d226adcd924b77b48d0f094.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/4bfb39b66d226adcd924b77b48d0f094.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/894f49f77f3e3e7c268917dcecd0c41d.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/894f49f77f3e3e7c268917dcecd0c41d.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/894f49f77f3e3e7c268917dcecd0c41d.jpg" - } - ], - "title": "TIFFANY Platinum Diamond Heart Drop Earrings", - "title_without_brand": "Platinum Diamond Heart Drop Earrings", - "_tags": [ - "1580706" - ], - "objectID": "1580706", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "earrings", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "diamond-earrings", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "heirloom-elegance", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "tiffany-jewelry-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "earrings-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "fine-jewelry", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "tiffany-earrings", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "tiffany-t-collection", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "giftable-jewelry", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "jewelry-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "tiffany", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "drop-earrings", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "jewelry", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "tiffany-jewelry", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic pair of TIFFANY Platinum Diamond Heart Drop Earrings. The earrings are crafted of platinum and feature a drop heart motif accented with round brilliant cut diamonds, approximately .55 total carat weight.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Tiffany", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Platinum", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1580706", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "TIFFANY Platinum Diamond Heart Drop Earrings", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Loewe", + "product_name": "Shearling Large Puzzle Fold Tote Multicolor", + "condition": "Excellent", + "discounted_price": 120, + "price": 2245, + "id": 10746596852015 }, { - "best_value": 0, - "categories": [ - "Multicolor", - "Structured", - "Leather", - "Clutch & Evening", - "Crossbody", - "Handbags", - "Shoulder Bags", - "Styles", - "Whites", - "Gucci", - "Live Shopping with FASHIONPHILE" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoulder-bags-on-sale", - "gucci-shoulder-bags", - "gucci-crossbody-bags", - "gucci-bags-on-sale", - "bags-under-1000", - "gucci", - "gucci-bags", - "bags-on-sale", - "instagram-live-shopping", - "gucci-clutches-evening-bags", - "clutch-evening", - "crossbody-bags-on-sale", - "handbag-styles", - "gucci-on-sale", - "shoulder-bags", - "handbags", - "cross-body" - ], - "description": "This is an authentic GUCCI Textured Calfskin Valentine's Day Super Mini Sylvie Chain Shoulder Bag in Ivory. This structured shoulder bag is crafted of white calfskin leather with GG logos, hearts, and stars throughout. This stylish bag features a gold chain link shoulder strap, a prominent front flap detailed with a central nylon red and blue web stripe embellished with a chain buckle lock closure. The top flap opens to a nude microfiber lining interior.", - "discounted_price": 945, - "discounted_tier": 1, - "filters": { - "bags": [ - "Clutch & Evening", - "Crossbody", - "Handbags", - "Shoulder Bags" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Gucci" - ], - "color": [ - "Multicolor", - "Whites" - ], - "material": [ - "Leather" - ], - "bag_feature": [ - "Structured" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$500-$1000", - "condition": [ - "Excellent" - ], - "locations": [ - "New York" - ] - }, - "following_count": 74, - "id": 1581073, - "made_available_at": 1740436178, - "price": 995, - "priced_at": 1743026416, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/b867417086a153945b73f31eeb763e5a/64a62089b925bb34b042220ae6f92259.jpg", - "thumb": "/thumb/b867417086a153945b73f31eeb763e5a/64a62089b925bb34b042220ae6f92259.jpg", - "tiny": "/tiny/b867417086a153945b73f31eeb763e5a/64a62089b925bb34b042220ae6f92259.jpg" - }, - { - "order": 2, - "path": "/thumb/6022f1d10995d6906b7244466b6f2540/e244d509bf6f0c269dcfa0d6cc340f43.jpg", - "thumb": "/thumb/6022f1d10995d6906b7244466b6f2540/e244d509bf6f0c269dcfa0d6cc340f43.jpg", - "tiny": "/tiny/6022f1d10995d6906b7244466b6f2540/e244d509bf6f0c269dcfa0d6cc340f43.jpg" - } - ], - "title": "GUCCI Textured Calfskin Valentine's Day Super Mini Sylvie Chain Shoulder Bag Ivory", - "title_without_brand": "Textured Calfskin Valentine's Day Super Mini Sylvie Chain Shoulder Bag Ivory", - "_tags": [ - "1581073" - ], - "objectID": "1581073", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-crossbody-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "instagram-live-shopping", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-clutches-evening-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "clutch-evening", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "crossbody-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "cross-body", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic GUCCI Textured Calfskin Valentine's Day Super Mini Sylvie Chain Shoulder Bag in Ivory. This structured shoulder bag is crafted of white calfskin leather with GG logos, hearts, and stars throughout. This stylish bag features a gold chain link shoulder strap, a prominent front flap detailed with a central nylon red and blue web stripe embellished with a chain buckle lock closure. The top flap opens to a nude microfiber lining interior.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Gucci", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Multicolor", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Whites", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1581073", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "GUCCI Textured Calfskin Valentine's Day Super Mini Sylvie Chain Shoulder Bag Ivory", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Saint Laurent", + "product_name": "Smooth Calfskin Monogram Square Buckle Belt 75 30 Black", + "condition": "Excellent", + "discounted_price": 25, + "price": 450, + "id": 10746596753711 }, { - "best_value": 0, - "categories": [ - "Multicolor", - "Structured", - "Leather", - "Clutch & Evening", - "Crossbody", - "Handbags", - "Shoulder Bags", - "Styles", - "Whites", - "Gucci", - "Live Shopping with FASHIONPHILE" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoulder-bags-on-sale", - "gucci-shoulder-bags", - "gucci-crossbody-bags", - "gucci-bags-on-sale", - "bags-under-1000", - "gucci", - "gucci-bags", - "bags-on-sale", - "instagram-live-shopping", - "gucci-clutches-evening-bags", - "clutch-evening", - "crossbody-bags-on-sale", - "handbag-styles", - "gucci-on-sale", - "shoulder-bags", - "handbags", - "cross-body" - ], - "description": "This is an authentic GUCCI Textured Calfskin Valentine's Day Super Mini Sylvie Chain Shoulder Bag in Ivory. This structured shoulder bag is crafted of white calfskin leather with GG logos, hearts, and stars throughout. This stylish bag features a gold chain link shoulder strap, a prominent front flap detailed with a central nylon red and blue web stripe embellished with a chain buckle lock closure. The top flap opens to a nude microfiber lining interior.", - "discounted_price": 945, - "discounted_tier": 1, - "filters": { - "bags": [ - "Clutch & Evening", - "Crossbody", - "Handbags", - "Shoulder Bags" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Gucci" - ], - "color": [ - "Multicolor", - "Whites" - ], - "material": [ - "Leather" - ], - "bag_feature": [ - "Structured" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$500-$1000", - "condition": [ - "Excellent" - ], - "locations": [ - "New York" - ] - }, - "following_count": 74, - "id": 1581073, - "made_available_at": 1740436178, - "price": 995, - "priced_at": 1743026416, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/b867417086a153945b73f31eeb763e5a/64a62089b925bb34b042220ae6f92259.jpg", - "thumb": "/thumb/b867417086a153945b73f31eeb763e5a/64a62089b925bb34b042220ae6f92259.jpg", - "tiny": "/tiny/b867417086a153945b73f31eeb763e5a/64a62089b925bb34b042220ae6f92259.jpg" - }, - { - "order": 2, - "path": "/thumb/6022f1d10995d6906b7244466b6f2540/e244d509bf6f0c269dcfa0d6cc340f43.jpg", - "thumb": "/thumb/6022f1d10995d6906b7244466b6f2540/e244d509bf6f0c269dcfa0d6cc340f43.jpg", - "tiny": "/tiny/6022f1d10995d6906b7244466b6f2540/e244d509bf6f0c269dcfa0d6cc340f43.jpg" - } - ], - "title": "GUCCI Textured Calfskin Valentine's Day Super Mini Sylvie Chain Shoulder Bag Ivory", - "title_without_brand": "Textured Calfskin Valentine's Day Super Mini Sylvie Chain Shoulder Bag Ivory", - "_tags": [ - "1581073" - ], - "objectID": "1581073", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-crossbody-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "instagram-live-shopping", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-clutches-evening-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "clutch-evening", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "crossbody-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "cross-body", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic GUCCI Textured Calfskin Valentine's Day Super Mini Sylvie Chain Shoulder Bag in Ivory. This structured shoulder bag is crafted of white calfskin leather with GG logos, hearts, and stars throughout. This stylish bag features a gold chain link shoulder strap, a prominent front flap detailed with a central nylon red and blue web stripe embellished with a chain buckle lock closure. The top flap opens to a nude microfiber lining interior.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Gucci", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Multicolor", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Whites", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1581073", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "GUCCI Textured Calfskin Valentine's Day Super Mini Sylvie Chain Shoulder Bag Ivory", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Gucci", + "product_name": "GG Supreme Monogram Large Rajah Chain Tote Beige New Acero", + "condition": "Excellent", + "discounted_price": 90, + "price": 1690, + "id": 10746596688175 }, { - "best_value": 0, - "categories": [ - "Multicolor", - "Structured", - "Leather", - "Clutch & Evening", - "Crossbody", - "Handbags", - "Shoulder Bags", - "Styles", - "Whites", - "Gucci", - "Live Shopping with FASHIONPHILE" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoulder-bags-on-sale", - "gucci-shoulder-bags", - "gucci-crossbody-bags", - "gucci-bags-on-sale", - "bags-under-1000", - "gucci", - "gucci-bags", - "bags-on-sale", - "instagram-live-shopping", - "gucci-clutches-evening-bags", - "clutch-evening", - "crossbody-bags-on-sale", - "handbag-styles", - "gucci-on-sale", - "shoulder-bags", - "handbags", - "cross-body" - ], - "description": "This is an authentic GUCCI Textured Calfskin Valentine's Day Super Mini Sylvie Chain Shoulder Bag in Ivory. This structured shoulder bag is crafted of white calfskin leather with GG logos, hearts, and stars throughout. This stylish bag features a gold chain link shoulder strap, a prominent front flap detailed with a central nylon red and blue web stripe embellished with a chain buckle lock closure. The top flap opens to a nude microfiber lining interior.", - "discounted_price": 945, - "discounted_tier": 1, - "filters": { - "bags": [ - "Clutch & Evening", - "Crossbody", - "Handbags", - "Shoulder Bags" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Gucci" - ], - "color": [ - "Multicolor", - "Whites" - ], - "material": [ - "Leather" - ], - "bag_feature": [ - "Structured" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$500-$1000", - "condition": [ - "Excellent" - ], - "locations": [ - "New York" - ] - }, - "following_count": 74, - "id": 1581073, - "made_available_at": 1740436178, - "price": 995, - "priced_at": 1743026416, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/b867417086a153945b73f31eeb763e5a/64a62089b925bb34b042220ae6f92259.jpg", - "thumb": "/thumb/b867417086a153945b73f31eeb763e5a/64a62089b925bb34b042220ae6f92259.jpg", - "tiny": "/tiny/b867417086a153945b73f31eeb763e5a/64a62089b925bb34b042220ae6f92259.jpg" - }, - { - "order": 2, - "path": "/thumb/6022f1d10995d6906b7244466b6f2540/e244d509bf6f0c269dcfa0d6cc340f43.jpg", - "thumb": "/thumb/6022f1d10995d6906b7244466b6f2540/e244d509bf6f0c269dcfa0d6cc340f43.jpg", - "tiny": "/tiny/6022f1d10995d6906b7244466b6f2540/e244d509bf6f0c269dcfa0d6cc340f43.jpg" - } - ], - "title": "GUCCI Textured Calfskin Valentine's Day Super Mini Sylvie Chain Shoulder Bag Ivory", - "title_without_brand": "Textured Calfskin Valentine's Day Super Mini Sylvie Chain Shoulder Bag Ivory", - "_tags": [ - "1581073" - ], - "objectID": "1581073", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-crossbody-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "instagram-live-shopping", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-clutches-evening-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "clutch-evening", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "crossbody-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "cross-body", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic GUCCI Textured Calfskin Valentine's Day Super Mini Sylvie Chain Shoulder Bag in Ivory. This structured shoulder bag is crafted of white calfskin leather with GG logos, hearts, and stars throughout. This stylish bag features a gold chain link shoulder strap, a prominent front flap detailed with a central nylon red and blue web stripe embellished with a chain buckle lock closure. The top flap opens to a nude microfiber lining interior.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Gucci", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Multicolor", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Whites", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1581073", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "GUCCI Textured Calfskin Valentine's Day Super Mini Sylvie Chain Shoulder Bag Ivory", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Chanel", + "product_name": "Lambskin Quilted Medium Double Flap Red", + "condition": "Shows Wear", + "discounted_price": 315, + "price": 5980, + "id": 10746596622639 }, { - "best_value": 0, - "categories": [ - "Shoes", - "Whites", - "Fabrics", - "Plastics", - "Sneakers", - "Accessories", - "General", - "Mens", - "Monogram Masterpieces", - "The Men's Edit", - "Black", - "42", - "Christian Dior" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "mens", - "the-mens-edit", - "shoes-on-sale", - "love-logos", - "christian-dior-oblique", - "sneakers-shoes", - "christian-dior-shoes", - "accessories-on-sale", - "shoes", - "dior", - "christian-dior-on-sale", - "accessories" - ], - "description": "This is an authentic CHRISTIAN DIOR Technical Canvas Oblique Mens B23 High Top Sneakers size 42 in Black and White. These stylish sneakers feature white cotton laces, canvas lining, and a white rubber sole.", - "discounted_price": 520, - "discounted_tier": 1, - "filters": { - "bags": [], - "jewelry": [], - "accessories": [ - "Shoes" - ], - "watches": [], - "shoes": [ - "Sneakers" - ], - "brands": [ - "Christian Dior" - ], - "color": [ - "Whites", - "Black" - ], - "material": [ - "Fabrics", - "Plastics" - ], - "bag_feature": [], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [ - "42" - ], - "on_sale": [ - "5% Off" - ], - "price": "$500-$1000", - "condition": [ - "Shows Wear" - ], - "locations": [ - "New York" - ] - }, - "following_count": 19, - "id": 1581106, - "made_available_at": 1740430876, - "price": 550, - "priced_at": 1743023853, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/08a817a6e6ff8aa8cd449366b2cd0927.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/08a817a6e6ff8aa8cd449366b2cd0927.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/08a817a6e6ff8aa8cd449366b2cd0927.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/bc93900a2bbea0283e961a3798e34b8f.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/bc93900a2bbea0283e961a3798e34b8f.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/bc93900a2bbea0283e961a3798e34b8f.jpg" - } - ], - "title": "CHRISTIAN DIOR Technical Canvas Oblique Mens B23 High Top 42 Black", - "title_without_brand": "Technical Canvas Oblique Mens B23 High Top 42 Black", - "_tags": [ - "1581106" - ], - "objectID": "1581106", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "mens", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "the-mens-edit", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoes-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "love-logos", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "christian-dior-oblique", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "sneakers-shoes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "christian-dior-shoes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "dior", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "christian-dior-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic CHRISTIAN DIOR Technical Canvas Oblique Mens B23 High Top Sneakers size 42 in Black and White. These stylish sneakers feature white cotton laces, canvas lining, and a white rubber sole.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Christian Dior", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Whites", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Black", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Fabrics", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Plastics", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1581106", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "CHRISTIAN DIOR Technical Canvas Oblique Mens B23 High Top 42 Black", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Marc Jacobs", + "product_name": "Calfskin The J Marc Shoulder Bag Green Glow", + "condition": "Excellent", + "discounted_price": 15, + "price": 295, + "id": 10746596294959 }, { - "best_value": 0, - "categories": [ - "Shoes", - "Whites", - "Fabrics", - "Plastics", - "Sneakers", - "Accessories", - "General", - "Mens", - "Monogram Masterpieces", - "The Men's Edit", - "Black", - "42", - "Christian Dior" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "mens", - "the-mens-edit", - "shoes-on-sale", - "love-logos", - "christian-dior-oblique", - "sneakers-shoes", - "christian-dior-shoes", - "accessories-on-sale", - "shoes", - "dior", - "christian-dior-on-sale", - "accessories" - ], - "description": "This is an authentic CHRISTIAN DIOR Technical Canvas Oblique Mens B23 High Top Sneakers size 42 in Black and White. These stylish sneakers feature white cotton laces, canvas lining, and a white rubber sole.", - "discounted_price": 520, - "discounted_tier": 1, - "filters": { - "bags": [], - "jewelry": [], - "accessories": [ - "Shoes" - ], - "watches": [], - "shoes": [ - "Sneakers" - ], - "brands": [ - "Christian Dior" - ], - "color": [ - "Whites", - "Black" - ], - "material": [ - "Fabrics", - "Plastics" - ], - "bag_feature": [], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [ - "42" - ], - "on_sale": [ - "5% Off" - ], - "price": "$500-$1000", - "condition": [ - "Shows Wear" - ], - "locations": [ - "New York" - ] - }, - "following_count": 19, - "id": 1581106, - "made_available_at": 1740430876, - "price": 550, - "priced_at": 1743023853, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/08a817a6e6ff8aa8cd449366b2cd0927.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/08a817a6e6ff8aa8cd449366b2cd0927.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/08a817a6e6ff8aa8cd449366b2cd0927.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/bc93900a2bbea0283e961a3798e34b8f.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/bc93900a2bbea0283e961a3798e34b8f.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/bc93900a2bbea0283e961a3798e34b8f.jpg" - } - ], - "title": "CHRISTIAN DIOR Technical Canvas Oblique Mens B23 High Top 42 Black", - "title_without_brand": "Technical Canvas Oblique Mens B23 High Top 42 Black", - "_tags": [ - "1581106" - ], - "objectID": "1581106", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "mens", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "the-mens-edit", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoes-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "love-logos", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "christian-dior-oblique", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "sneakers-shoes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "christian-dior-shoes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "dior", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "christian-dior-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic CHRISTIAN DIOR Technical Canvas Oblique Mens B23 High Top Sneakers size 42 in Black and White. These stylish sneakers feature white cotton laces, canvas lining, and a white rubber sole.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Christian Dior", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Whites", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Black", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Fabrics", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Plastics", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1581106", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "CHRISTIAN DIOR Technical Canvas Oblique Mens B23 High Top 42 Black", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Saint Laurent", + "product_name": "Grosgrain Carlyle Leopard Slide Sandals 38.5 Black", + "condition": "Excellent", + "discounted_price": 25, + "price": 425, + "id": 10575988359471 }, { - "best_value": 0, - "categories": [ - "Shoes", - "Whites", - "Fabrics", - "Plastics", - "Sneakers", - "Accessories", - "General", - "Mens", - "Monogram Masterpieces", - "The Men's Edit", - "Black", - "42", - "Christian Dior" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "mens", - "the-mens-edit", - "shoes-on-sale", - "love-logos", - "christian-dior-oblique", - "sneakers-shoes", - "christian-dior-shoes", - "accessories-on-sale", - "shoes", - "dior", - "christian-dior-on-sale", - "accessories" - ], - "description": "This is an authentic CHRISTIAN DIOR Technical Canvas Oblique Mens B23 High Top Sneakers size 42 in Black and White. These stylish sneakers feature white cotton laces, canvas lining, and a white rubber sole.", - "discounted_price": 520, - "discounted_tier": 1, - "filters": { - "bags": [], - "jewelry": [], - "accessories": [ - "Shoes" - ], - "watches": [], - "shoes": [ - "Sneakers" - ], - "brands": [ - "Christian Dior" - ], - "color": [ - "Whites", - "Black" - ], - "material": [ - "Fabrics", - "Plastics" - ], - "bag_feature": [], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [ - "42" - ], - "on_sale": [ - "5% Off" - ], - "price": "$500-$1000", - "condition": [ - "Shows Wear" - ], - "locations": [ - "New York" - ] - }, - "following_count": 19, - "id": 1581106, - "made_available_at": 1740430876, - "price": 550, - "priced_at": 1743023853, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/08a817a6e6ff8aa8cd449366b2cd0927.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/08a817a6e6ff8aa8cd449366b2cd0927.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/08a817a6e6ff8aa8cd449366b2cd0927.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/bc93900a2bbea0283e961a3798e34b8f.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/bc93900a2bbea0283e961a3798e34b8f.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/bc93900a2bbea0283e961a3798e34b8f.jpg" - } - ], - "title": "CHRISTIAN DIOR Technical Canvas Oblique Mens B23 High Top 42 Black", - "title_without_brand": "Technical Canvas Oblique Mens B23 High Top 42 Black", - "_tags": [ - "1581106" - ], - "objectID": "1581106", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "mens", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "the-mens-edit", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoes-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "love-logos", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "christian-dior-oblique", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "sneakers-shoes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "christian-dior-shoes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "dior", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "christian-dior-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic CHRISTIAN DIOR Technical Canvas Oblique Mens B23 High Top Sneakers size 42 in Black and White. These stylish sneakers feature white cotton laces, canvas lining, and a white rubber sole.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Christian Dior", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Whites", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Black", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Fabrics", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Plastics", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1581106", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "CHRISTIAN DIOR Technical Canvas Oblique Mens B23 High Top 42 Black", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Chanel", + "product_name": "Caviar Quilted Vanity With Chain Black", + "condition": "Excellent", + "discounted_price": 195, + "price": 3685, + "id": 10746595901743 }, { - "best_value": 285, - "categories": [ - "Black", - "Zip Top", - "Fabrics", - "Solid Color", - "Handbags", - "Shoulder Bags", - "Styles", - "General", - "Womens", - "OLD - National Handbag Day", - "OLD - Little Luxuries Sale", - "Top Handles", - "Open Top", - "Prada", - "Live Shopping with FASHIONPHILE" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoulder-bags-on-sale", - "bags-under-1000", - "prada", - "bags-on-sale", - "instagram-live-shopping", - "prada-on-sale", - "prada-bags", - "top-handles", - "zip-top", - "handbag-styles", - "shoulder-bags", - "handbags" - ], - "description": "This is an authentic PRADA Tessuto Nylon Tote in Black. This stylish tote is crafted of black tessuto nylon. The bag features black nylon handles and a PRADA logo. The tote opens to a black fabric interior with two open compartments and a central zipper pocket.", - "discounted_price": 425, - "discounted_tier": 1, - "filters": { - "bags": [ - "Handbags", - "Shoulder Bags" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Prada" - ], - "color": [ - "Black" - ], - "material": [ - "Fabrics", - "Solid Color" - ], - "bag_feature": [ - "Zip Top", - "Top Handles", - "Open Top" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$200-$500", - "condition": [ - "Shows Wear" - ], - "locations": [ - "New York" - ] - }, - "following_count": 25, - "id": 1581116, - "made_available_at": 1740435323, - "price": 450, - "priced_at": 1743026407, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/7306bec2d97e955ac75f6df03eca57e0.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/7306bec2d97e955ac75f6df03eca57e0.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/7306bec2d97e955ac75f6df03eca57e0.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/6170a6bf3bfaae67d3a1ece0a75b3d03.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/6170a6bf3bfaae67d3a1ece0a75b3d03.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/6170a6bf3bfaae67d3a1ece0a75b3d03.jpg" - } - ], - "title": "PRADA Tessuto Nylon Tote Black", - "title_without_brand": "Tessuto Nylon Tote Black", - "_tags": [ - "1581116" - ], - "objectID": "1581116", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "prada", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "instagram-live-shopping", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "prada-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "prada-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "top-handles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "zip-top", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic PRADA Tessuto Nylon Tote in Black. This stylish tote is crafted of black tessuto nylon. The bag features black nylon handles and a PRADA logo. The tote opens to a black fabric interior with two open compartments and a central zipper pocket.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Prada", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Black", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Fabrics", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1581116", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "PRADA Tessuto Nylon Tote Black", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Bottega Veneta", + "product_name": "Lambskin Maxi Intreccio Padded Chain Cassette Crossbody Bag Almond", + "condition": "Shows Wear", + "discounted_price": 90, + "price": 1690, + "id": 10746595672367 }, { - "best_value": 285, - "categories": [ - "Black", - "Zip Top", - "Fabrics", - "Solid Color", - "Handbags", - "Shoulder Bags", - "Styles", - "General", - "Womens", - "OLD - National Handbag Day", - "OLD - Little Luxuries Sale", - "Top Handles", - "Open Top", - "Prada", - "Live Shopping with FASHIONPHILE" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoulder-bags-on-sale", - "bags-under-1000", - "prada", - "bags-on-sale", - "instagram-live-shopping", - "prada-on-sale", - "prada-bags", - "top-handles", - "zip-top", - "handbag-styles", - "shoulder-bags", - "handbags" - ], - "description": "This is an authentic PRADA Tessuto Nylon Tote in Black. This stylish tote is crafted of black tessuto nylon. The bag features black nylon handles and a PRADA logo. The tote opens to a black fabric interior with two open compartments and a central zipper pocket.", - "discounted_price": 425, - "discounted_tier": 1, - "filters": { - "bags": [ - "Handbags", - "Shoulder Bags" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Prada" - ], - "color": [ - "Black" - ], - "material": [ - "Fabrics", - "Solid Color" - ], - "bag_feature": [ - "Zip Top", - "Top Handles", - "Open Top" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$200-$500", - "condition": [ - "Shows Wear" - ], - "locations": [ - "New York" - ] - }, - "following_count": 25, - "id": 1581116, - "made_available_at": 1740435323, - "price": 450, - "priced_at": 1743026407, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/7306bec2d97e955ac75f6df03eca57e0.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/7306bec2d97e955ac75f6df03eca57e0.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/7306bec2d97e955ac75f6df03eca57e0.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/6170a6bf3bfaae67d3a1ece0a75b3d03.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/6170a6bf3bfaae67d3a1ece0a75b3d03.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/6170a6bf3bfaae67d3a1ece0a75b3d03.jpg" - } - ], - "title": "PRADA Tessuto Nylon Tote Black", - "title_without_brand": "Tessuto Nylon Tote Black", - "_tags": [ - "1581116" - ], - "objectID": "1581116", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "prada", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "instagram-live-shopping", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "prada-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "prada-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "top-handles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "zip-top", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic PRADA Tessuto Nylon Tote in Black. This stylish tote is crafted of black tessuto nylon. The bag features black nylon handles and a PRADA logo. The tote opens to a black fabric interior with two open compartments and a central zipper pocket.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Prada", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Black", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Fabrics", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1581116", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "PRADA Tessuto Nylon Tote Black", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Christian Dior", + "product_name": "Lambskin Cannage Mini My Dior Bag Latte", + "condition": "Shows Wear", + "discounted_price": 110, + "price": 2045, + "id": 10746595344687 }, { - "best_value": 285, - "categories": [ - "Black", - "Zip Top", - "Fabrics", - "Solid Color", - "Handbags", - "Shoulder Bags", - "Styles", - "General", - "Womens", - "OLD - National Handbag Day", - "OLD - Little Luxuries Sale", - "Top Handles", - "Open Top", - "Prada", - "Live Shopping with FASHIONPHILE" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoulder-bags-on-sale", - "bags-under-1000", - "prada", - "bags-on-sale", - "instagram-live-shopping", - "prada-on-sale", - "prada-bags", - "top-handles", - "zip-top", - "handbag-styles", - "shoulder-bags", - "handbags" - ], - "description": "This is an authentic PRADA Tessuto Nylon Tote in Black. This stylish tote is crafted of black tessuto nylon. The bag features black nylon handles and a PRADA logo. The tote opens to a black fabric interior with two open compartments and a central zipper pocket.", - "discounted_price": 425, - "discounted_tier": 1, - "filters": { - "bags": [ - "Handbags", - "Shoulder Bags" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Prada" - ], - "color": [ - "Black" - ], - "material": [ - "Fabrics", - "Solid Color" - ], - "bag_feature": [ - "Zip Top", - "Top Handles", - "Open Top" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$200-$500", - "condition": [ - "Shows Wear" - ], - "locations": [ - "New York" - ] - }, - "following_count": 25, - "id": 1581116, - "made_available_at": 1740435323, - "price": 450, - "priced_at": 1743026407, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/7306bec2d97e955ac75f6df03eca57e0.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/7306bec2d97e955ac75f6df03eca57e0.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/7306bec2d97e955ac75f6df03eca57e0.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/6170a6bf3bfaae67d3a1ece0a75b3d03.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/6170a6bf3bfaae67d3a1ece0a75b3d03.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/6170a6bf3bfaae67d3a1ece0a75b3d03.jpg" - } - ], - "title": "PRADA Tessuto Nylon Tote Black", - "title_without_brand": "Tessuto Nylon Tote Black", - "_tags": [ - "1581116" - ], - "objectID": "1581116", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "prada", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "instagram-live-shopping", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "prada-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "prada-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "top-handles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "zip-top", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic PRADA Tessuto Nylon Tote in Black. This stylish tote is crafted of black tessuto nylon. The bag features black nylon handles and a PRADA logo. The tote opens to a black fabric interior with two open compartments and a central zipper pocket.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Prada", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Black", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Fabrics", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1581116", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "PRADA Tessuto Nylon Tote Black", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Hermes", + "product_name": "Swift Epsom 13mm Ancre Belt 70 28 Black Gold", + "condition": "Excellent", + "discounted_price": 30, + "price": 595, + "id": 10746595180847 }, { - "best_value": 60, - "categories": [ - "Black", - "Open Top", - "Leather", - "Solid Color", - "Handbags", - "Shoulder Bags", - "Lambskin", - "Shopping Totes", - "Styles", - "Womens", - "Top Designers", - "Lambskin", - "Shopping Totes", - "Chanel" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "lambskin", - "shoulder-bags-on-sale", - "chanel-on-sale", - "black-chanel-bags", - "bags-under-1000", - "chanel-shoulder-bags", - "bags-on-sale", - "chanel", - "top-designers", - "shopping-totes", - "handbag-styles", - "chanel-bags", - "shoulder-bags", - "handbags" - ], - "description": "This is an authentic CHANEL Shiny Crumpled Calfskin Quilted Nano 31 Shopping Bag in Black. This stylish bag is crafted of padded diamond quilted lambskin leather in black with smooth leather trim in black. The bag features black handles, a long black rolled shoulder strap, and a gold Chanel CC turn lock. The top is open to a black fabric interior with zipper pockets.", - "discounted_price": 4840, - "discounted_tier": 1, - "filters": { - "bags": [ - "Handbags", - "Shoulder Bags" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Chanel" - ], - "color": [ - "Black" - ], - "material": [ - "Leather", - "Solid Color" - ], - "bag_feature": [ - "Open Top" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "Over $2000", - "condition": [ - "Giftable" - ], - "locations": [ - "Los Angeles" - ] - }, - "following_count": "55", - "id": 1581443, - "made_available_at": 1740463307, - "price": 5095, - "priced_at": 1743055205, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/c3b06f7e16bfa959690ee24334de3aa3/0af37b78e131c819442a783c35efa14b.jpg", - "thumb": "/thumb/c3b06f7e16bfa959690ee24334de3aa3/0af37b78e131c819442a783c35efa14b.jpg", - "tiny": "/tiny/c3b06f7e16bfa959690ee24334de3aa3/0af37b78e131c819442a783c35efa14b.jpg" - }, - { - "order": 2, - "path": "/thumb/c3b06f7e16bfa959690ee24334de3aa3/643dd28cd3d8f38d18454cb31c29a695.jpg", - "thumb": "/thumb/c3b06f7e16bfa959690ee24334de3aa3/643dd28cd3d8f38d18454cb31c29a695.jpg", - "tiny": "/tiny/c3b06f7e16bfa959690ee24334de3aa3/643dd28cd3d8f38d18454cb31c29a695.jpg" - } - ], - "title": "CHANEL Shiny Crumpled Calfskin Quilted Nano 31 Shopping Bag Black", - "title_without_brand": "Shiny Crumpled Calfskin Quilted Nano 31 Shopping Bag Black", - "_tags": [ - "1581443" - ], - "objectID": "1581443", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "lambskin", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "black-chanel-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "top-designers", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shopping-totes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic CHANEL Shiny Crumpled Calfskin Quilted Nano 31 Shopping Bag in Black. This stylish bag is crafted of padded diamond quilted lambskin leather in black with smooth leather trim in black. The bag features black handles, a long black rolled shoulder strap, and a gold Chanel CC turn lock. The top is open to a black fabric interior with zipper pockets.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Chanel", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Black", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1581443", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "CHANEL Shiny Crumpled Calfskin Quilted Nano 31 Shopping Bag Black", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Hermes", + "product_name": "Taurillon Clemence Lindy 26 Marfa", + "condition": "Excellent", + "discounted_price": 500, + "price": 9470, + "id": 10746595049775 }, { - "best_value": 60, - "categories": [ - "Black", - "Open Top", - "Leather", - "Solid Color", - "Handbags", - "Shoulder Bags", - "Lambskin", - "Shopping Totes", - "Styles", - "Womens", - "Top Designers", - "Lambskin", - "Shopping Totes", - "Chanel" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "lambskin", - "shoulder-bags-on-sale", - "chanel-on-sale", - "black-chanel-bags", - "bags-under-1000", - "chanel-shoulder-bags", - "bags-on-sale", - "chanel", - "top-designers", - "shopping-totes", - "handbag-styles", - "chanel-bags", - "shoulder-bags", - "handbags" - ], - "description": "This is an authentic CHANEL Shiny Crumpled Calfskin Quilted Nano 31 Shopping Bag in Black. This stylish bag is crafted of padded diamond quilted lambskin leather in black with smooth leather trim in black. The bag features black handles, a long black rolled shoulder strap, and a gold Chanel CC turn lock. The top is open to a black fabric interior with zipper pockets.", - "discounted_price": 4840, - "discounted_tier": 1, - "filters": { - "bags": [ - "Handbags", - "Shoulder Bags" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Chanel" - ], - "color": [ - "Black" - ], - "material": [ - "Leather", - "Solid Color" - ], - "bag_feature": [ - "Open Top" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "Over $2000", - "condition": [ - "Giftable" - ], - "locations": [ - "Los Angeles" - ] - }, - "following_count": "55", - "id": 1581443, - "made_available_at": 1740463307, - "price": 5095, - "priced_at": 1743055205, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/c3b06f7e16bfa959690ee24334de3aa3/0af37b78e131c819442a783c35efa14b.jpg", - "thumb": "/thumb/c3b06f7e16bfa959690ee24334de3aa3/0af37b78e131c819442a783c35efa14b.jpg", - "tiny": "/tiny/c3b06f7e16bfa959690ee24334de3aa3/0af37b78e131c819442a783c35efa14b.jpg" - }, - { - "order": 2, - "path": "/thumb/c3b06f7e16bfa959690ee24334de3aa3/643dd28cd3d8f38d18454cb31c29a695.jpg", - "thumb": "/thumb/c3b06f7e16bfa959690ee24334de3aa3/643dd28cd3d8f38d18454cb31c29a695.jpg", - "tiny": "/tiny/c3b06f7e16bfa959690ee24334de3aa3/643dd28cd3d8f38d18454cb31c29a695.jpg" - } - ], - "title": "CHANEL Shiny Crumpled Calfskin Quilted Nano 31 Shopping Bag Black", - "title_without_brand": "Shiny Crumpled Calfskin Quilted Nano 31 Shopping Bag Black", - "_tags": [ - "1581443" - ], - "objectID": "1581443", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "lambskin", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "black-chanel-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "top-designers", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shopping-totes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic CHANEL Shiny Crumpled Calfskin Quilted Nano 31 Shopping Bag in Black. This stylish bag is crafted of padded diamond quilted lambskin leather in black with smooth leather trim in black. The bag features black handles, a long black rolled shoulder strap, and a gold Chanel CC turn lock. The top is open to a black fabric interior with zipper pockets.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Chanel", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Black", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1581443", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "CHANEL Shiny Crumpled Calfskin Quilted Nano 31 Shopping Bag Black", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Louis Vuitton", + "product_name": "Monogram Pochette Accessories NM", + "condition": "Excellent", + "discounted_price": 75, + "price": 1450, + "id": 10746594984239 }, { - "best_value": 60, - "categories": [ - "Black", - "Open Top", - "Leather", - "Solid Color", - "Handbags", - "Shoulder Bags", - "Lambskin", - "Shopping Totes", - "Styles", - "Womens", - "Top Designers", - "Lambskin", - "Shopping Totes", - "Chanel" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "lambskin", - "shoulder-bags-on-sale", - "chanel-on-sale", - "black-chanel-bags", - "bags-under-1000", - "chanel-shoulder-bags", - "bags-on-sale", - "chanel", - "top-designers", - "shopping-totes", - "handbag-styles", - "chanel-bags", - "shoulder-bags", - "handbags" - ], - "description": "This is an authentic CHANEL Shiny Crumpled Calfskin Quilted Nano 31 Shopping Bag in Black. This stylish bag is crafted of padded diamond quilted lambskin leather in black with smooth leather trim in black. The bag features black handles, a long black rolled shoulder strap, and a gold Chanel CC turn lock. The top is open to a black fabric interior with zipper pockets.", - "discounted_price": 4840, - "discounted_tier": 1, - "filters": { - "bags": [ - "Handbags", - "Shoulder Bags" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Chanel" - ], - "color": [ - "Black" - ], - "material": [ - "Leather", - "Solid Color" - ], - "bag_feature": [ - "Open Top" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "Over $2000", - "condition": [ - "Giftable" - ], - "locations": [ - "Los Angeles" - ] - }, - "following_count": "55", - "id": 1581443, - "made_available_at": 1740463307, - "price": 5095, - "priced_at": 1743055205, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/c3b06f7e16bfa959690ee24334de3aa3/0af37b78e131c819442a783c35efa14b.jpg", - "thumb": "/thumb/c3b06f7e16bfa959690ee24334de3aa3/0af37b78e131c819442a783c35efa14b.jpg", - "tiny": "/tiny/c3b06f7e16bfa959690ee24334de3aa3/0af37b78e131c819442a783c35efa14b.jpg" - }, - { - "order": 2, - "path": "/thumb/c3b06f7e16bfa959690ee24334de3aa3/643dd28cd3d8f38d18454cb31c29a695.jpg", - "thumb": "/thumb/c3b06f7e16bfa959690ee24334de3aa3/643dd28cd3d8f38d18454cb31c29a695.jpg", - "tiny": "/tiny/c3b06f7e16bfa959690ee24334de3aa3/643dd28cd3d8f38d18454cb31c29a695.jpg" - } - ], - "title": "CHANEL Shiny Crumpled Calfskin Quilted Nano 31 Shopping Bag Black", - "title_without_brand": "Shiny Crumpled Calfskin Quilted Nano 31 Shopping Bag Black", - "_tags": [ - "1581443" - ], - "objectID": "1581443", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "lambskin", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "black-chanel-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "top-designers", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shopping-totes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic CHANEL Shiny Crumpled Calfskin Quilted Nano 31 Shopping Bag in Black. This stylish bag is crafted of padded diamond quilted lambskin leather in black with smooth leather trim in black. The bag features black handles, a long black rolled shoulder strap, and a gold Chanel CC turn lock. The top is open to a black fabric interior with zipper pockets.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Chanel", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Black", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1581443", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "CHANEL Shiny Crumpled Calfskin Quilted Nano 31 Shopping Bag Black", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Fendi", + "product_name": "Vitello Grace Matte Small Fendigraphy Hobo Bag White Ice", + "condition": "Excellent", + "discounted_price": 85, + "price": 1650, + "id": 10746594951471 }, { - "best_value": 0, - "categories": [ - "Reds", - "Structured", - "Beaded & Sequins", - "Leather", - "Solid Color", - "Clutch & Evening", - "Crossbody", - "Handbags", - "Shoulder Bags", - "Wallet Style", - "Styles", - "Womens", - "Valentino Garavani", - "Live Shopping with FASHIONPHILE" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoulder-bags-on-sale", - "bags-under-1000", - "bags-on-sale", - "instagram-live-shopping", - "clutch-evening", - "crossbody-bags-on-sale", - "valentino-garavani", - "wallet-style", - "handbag-styles", - "shoulder-bags", - "handbags", - "cross-body" - ], - "description": "This is an authentic VALENTINO GARAVANI Vitello Monochrome Rockstud All Over Chain Flap Crossbody Bag in Rosso Valentino. This bag is crafted of rich leather with embellished red pyramid rockstuds all over the flap and back. The bag features gold shoulder chains. The flap opens to a fabric interior with a patch pocket. ", - "discounted_price": 425, - "discounted_tier": 1, - "filters": { - "bags": [ - "Clutch & Evening", - "Crossbody", - "Handbags", - "Shoulder Bags", - "Wallet Style" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Valentino Garavani" - ], - "color": [ - "Reds" - ], - "material": [ - "Beaded & Sequins", - "Leather", - "Solid Color" - ], - "bag_feature": [ - "Structured" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$200-$500", - "condition": [ - "Shows Wear" - ], - "locations": [ - "New York" - ] - }, - "following_count": 18, - "id": 1581966, - "made_available_at": 1740437382, - "price": 450, - "priced_at": 1743026423, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/9f7ecb27db8f47845e2ee6849bc779a6.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/9f7ecb27db8f47845e2ee6849bc779a6.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/9f7ecb27db8f47845e2ee6849bc779a6.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/bbc5482d723dc740b21bb15b9e953b6e.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/bbc5482d723dc740b21bb15b9e953b6e.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/bbc5482d723dc740b21bb15b9e953b6e.jpg" - } - ], - "title": "VALENTINO GARAVANI Vitello Monochrome Rockstud All Over Chain Flap Crossbody Bag Rosso Valentino", - "title_without_brand": "Vitello Monochrome Rockstud All Over Chain Flap Crossbody Bag Rosso Valentino", - "_tags": [ - "1581966" - ], - "objectID": "1581966", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "instagram-live-shopping", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "clutch-evening", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "crossbody-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "valentino-garavani", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "wallet-style", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "cross-body", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic VALENTINO GARAVANI Vitello Monochrome Rockstud All Over Chain Flap Crossbody Bag in Rosso Valentino. This bag is crafted of rich leather with embellished red pyramid rockstuds all over the flap and back. The bag features gold shoulder chains. The flap opens to a fabric interior with a patch pocket. ", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Valentino Garavani", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Reds", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Beaded & Sequins", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1581966", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "VALENTINO GARAVANI Vitello Monochrome Rockstud All Over Chain Flap Crossbody Bag Rosso Valentino", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Chanel", + "product_name": "Cotton Floral CC Espadrille Slip On Sandals 40 Black", + "condition": "New", + "discounted_price": 45, + "price": 895, + "id": 10746594623791 }, { - "best_value": 0, - "categories": [ - "Reds", - "Structured", - "Beaded & Sequins", - "Leather", - "Solid Color", - "Clutch & Evening", - "Crossbody", - "Handbags", - "Shoulder Bags", - "Wallet Style", - "Styles", - "Womens", - "Valentino Garavani", - "Live Shopping with FASHIONPHILE" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoulder-bags-on-sale", - "bags-under-1000", - "bags-on-sale", - "instagram-live-shopping", - "clutch-evening", - "crossbody-bags-on-sale", - "valentino-garavani", - "wallet-style", - "handbag-styles", - "shoulder-bags", - "handbags", - "cross-body" - ], - "description": "This is an authentic VALENTINO GARAVANI Vitello Monochrome Rockstud All Over Chain Flap Crossbody Bag in Rosso Valentino. This bag is crafted of rich leather with embellished red pyramid rockstuds all over the flap and back. The bag features gold shoulder chains. The flap opens to a fabric interior with a patch pocket. ", - "discounted_price": 425, - "discounted_tier": 1, - "filters": { - "bags": [ - "Clutch & Evening", - "Crossbody", - "Handbags", - "Shoulder Bags", - "Wallet Style" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Valentino Garavani" - ], - "color": [ - "Reds" - ], - "material": [ - "Beaded & Sequins", - "Leather", - "Solid Color" - ], - "bag_feature": [ - "Structured" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$200-$500", - "condition": [ - "Shows Wear" - ], - "locations": [ - "New York" - ] - }, - "following_count": 18, - "id": 1581966, - "made_available_at": 1740437382, - "price": 450, - "priced_at": 1743026423, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/9f7ecb27db8f47845e2ee6849bc779a6.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/9f7ecb27db8f47845e2ee6849bc779a6.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/9f7ecb27db8f47845e2ee6849bc779a6.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/bbc5482d723dc740b21bb15b9e953b6e.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/bbc5482d723dc740b21bb15b9e953b6e.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/bbc5482d723dc740b21bb15b9e953b6e.jpg" - } - ], - "title": "VALENTINO GARAVANI Vitello Monochrome Rockstud All Over Chain Flap Crossbody Bag Rosso Valentino", - "title_without_brand": "Vitello Monochrome Rockstud All Over Chain Flap Crossbody Bag Rosso Valentino", - "_tags": [ - "1581966" - ], - "objectID": "1581966", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "instagram-live-shopping", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "clutch-evening", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "crossbody-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "valentino-garavani", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "wallet-style", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "cross-body", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic VALENTINO GARAVANI Vitello Monochrome Rockstud All Over Chain Flap Crossbody Bag in Rosso Valentino. This bag is crafted of rich leather with embellished red pyramid rockstuds all over the flap and back. The bag features gold shoulder chains. The flap opens to a fabric interior with a patch pocket. ", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Valentino Garavani", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Reds", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Beaded & Sequins", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1581966", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "VALENTINO GARAVANI Vitello Monochrome Rockstud All Over Chain Flap Crossbody Bag Rosso Valentino", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Chanel", + "product_name": "Patent Calfskin Quilted Boy L-Gusset Zip Wallet Black", + "condition": "Shows Wear", + "discounted_price": 30, + "price": 520, + "id": 10746594558255 }, { - "best_value": 0, - "categories": [ - "Reds", - "Structured", - "Beaded & Sequins", - "Leather", - "Solid Color", - "Clutch & Evening", - "Crossbody", - "Handbags", - "Shoulder Bags", - "Wallet Style", - "Styles", - "Womens", - "Valentino Garavani", - "Live Shopping with FASHIONPHILE" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoulder-bags-on-sale", - "bags-under-1000", - "bags-on-sale", - "instagram-live-shopping", - "clutch-evening", - "crossbody-bags-on-sale", - "valentino-garavani", - "wallet-style", - "handbag-styles", - "shoulder-bags", - "handbags", - "cross-body" - ], - "description": "This is an authentic VALENTINO GARAVANI Vitello Monochrome Rockstud All Over Chain Flap Crossbody Bag in Rosso Valentino. This bag is crafted of rich leather with embellished red pyramid rockstuds all over the flap and back. The bag features gold shoulder chains. The flap opens to a fabric interior with a patch pocket. ", - "discounted_price": 425, - "discounted_tier": 1, - "filters": { - "bags": [ - "Clutch & Evening", - "Crossbody", - "Handbags", - "Shoulder Bags", - "Wallet Style" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Valentino Garavani" - ], - "color": [ - "Reds" - ], - "material": [ - "Beaded & Sequins", - "Leather", - "Solid Color" - ], - "bag_feature": [ - "Structured" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$200-$500", - "condition": [ - "Shows Wear" - ], - "locations": [ - "New York" - ] - }, - "following_count": 18, - "id": 1581966, - "made_available_at": 1740437382, - "price": 450, - "priced_at": 1743026423, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/9f7ecb27db8f47845e2ee6849bc779a6.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/9f7ecb27db8f47845e2ee6849bc779a6.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/9f7ecb27db8f47845e2ee6849bc779a6.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/bbc5482d723dc740b21bb15b9e953b6e.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/bbc5482d723dc740b21bb15b9e953b6e.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/bbc5482d723dc740b21bb15b9e953b6e.jpg" - } - ], - "title": "VALENTINO GARAVANI Vitello Monochrome Rockstud All Over Chain Flap Crossbody Bag Rosso Valentino", - "title_without_brand": "Vitello Monochrome Rockstud All Over Chain Flap Crossbody Bag Rosso Valentino", - "_tags": [ - "1581966" - ], - "objectID": "1581966", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "instagram-live-shopping", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "clutch-evening", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "crossbody-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "valentino-garavani", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "wallet-style", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "cross-body", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic VALENTINO GARAVANI Vitello Monochrome Rockstud All Over Chain Flap Crossbody Bag in Rosso Valentino. This bag is crafted of rich leather with embellished red pyramid rockstuds all over the flap and back. The bag features gold shoulder chains. The flap opens to a fabric interior with a patch pocket. ", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Valentino Garavani", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Reds", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Beaded & Sequins", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1581966", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "VALENTINO GARAVANI Vitello Monochrome Rockstud All Over Chain Flap Crossbody Bag Rosso Valentino", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Chanel", + "product_name": "Lambskin Patent CC Elastic Cap Toe Ballerina Pumps 36.5 Black", + "condition": "Shows Wear", + "discounted_price": 15, + "price": 295, + "id": 10746594459951 }, { - "best_value": 500, - "categories": [ - "Black", - "Structured", - "Borders have trim detail", - "Leather", - "Solid Color", - "Crossbody", - "Shoulder Bags", - "Styles", - "General", - "Womens", - "Valentino Garavani", - "Live Shopping with FASHIONPHILE" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoulder-bags-on-sale", - "bags-under-1000", - "bags-on-sale", - "instagram-live-shopping", - "crossbody-bags-on-sale", - "valentino-garavani", - "handbag-styles", - "shoulder-bags", - "cross-body" - ], - "description": "This is an authentic VALENTINO GARAVANI Vitello Medium Rockstud Flip Lock Crossbody Bag in Black. This chic crossbody bag is beautifully crafted of smooth leather in black. The bag features a polished black studded leather shoulder strap, studded borders, and a studded switch lock for the front flap.", - "discounted_price": 945, - "discounted_tier": 1, - "filters": { - "bags": [ - "Crossbody", - "Shoulder Bags" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Valentino Garavani" - ], - "color": [ - "Black" - ], - "material": [ - "Borders have trim detail", - "Leather", - "Solid Color" - ], - "bag_feature": [ - "Structured" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$500-$1000", - "condition": [ - "Shows Wear" - ], - "locations": [ - "New York" - ] - }, - "following_count": 20, - "id": 1581993, - "made_available_at": 1740437391, - "price": 995, - "priced_at": 1743026424, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/dd70637ea6caa814fc8e0c7471b6e3df.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/dd70637ea6caa814fc8e0c7471b6e3df.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/dd70637ea6caa814fc8e0c7471b6e3df.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/907ccdfa27251787d0eccd24c1588435.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/907ccdfa27251787d0eccd24c1588435.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/907ccdfa27251787d0eccd24c1588435.jpg" - } - ], - "title": "VALENTINO GARAVANI Vitello Monochrome Medium Rockstud Flip Lock Crossbody Bag Black", - "title_without_brand": "Vitello Monochrome Medium Rockstud Flip Lock Crossbody Bag Black", - "_tags": [ - "1581993" - ], - "objectID": "1581993", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "instagram-live-shopping", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "crossbody-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "valentino-garavani", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "cross-body", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic VALENTINO GARAVANI Vitello Medium Rockstud Flip Lock Crossbody Bag in Black. This chic crossbody bag is beautifully crafted of smooth leather in black. The bag features a polished black studded leather shoulder strap, studded borders, and a studded switch lock for the front flap.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Valentino Garavani", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Black", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Borders have trim detail", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1581993", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "VALENTINO GARAVANI Vitello Monochrome Medium Rockstud Flip Lock Crossbody Bag Black", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Louis Vuitton", + "product_name": "Damier Ebene Emilie Wallet Red", + "condition": "Shows Wear", + "discounted_price": 25, + "price": 495, + "id": 10746594165039 }, { - "best_value": 500, - "categories": [ - "Black", - "Structured", - "Borders have trim detail", - "Leather", - "Solid Color", - "Crossbody", - "Shoulder Bags", - "Styles", - "General", - "Womens", - "Valentino Garavani", - "Live Shopping with FASHIONPHILE" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoulder-bags-on-sale", - "bags-under-1000", - "bags-on-sale", - "instagram-live-shopping", - "crossbody-bags-on-sale", - "valentino-garavani", - "handbag-styles", - "shoulder-bags", - "cross-body" - ], - "description": "This is an authentic VALENTINO GARAVANI Vitello Medium Rockstud Flip Lock Crossbody Bag in Black. This chic crossbody bag is beautifully crafted of smooth leather in black. The bag features a polished black studded leather shoulder strap, studded borders, and a studded switch lock for the front flap.", - "discounted_price": 945, - "discounted_tier": 1, - "filters": { - "bags": [ - "Crossbody", - "Shoulder Bags" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Valentino Garavani" - ], - "color": [ - "Black" - ], - "material": [ - "Borders have trim detail", - "Leather", - "Solid Color" - ], - "bag_feature": [ - "Structured" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$500-$1000", - "condition": [ - "Shows Wear" - ], - "locations": [ - "New York" - ] - }, - "following_count": 20, - "id": 1581993, - "made_available_at": 1740437391, - "price": 995, - "priced_at": 1743026424, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/dd70637ea6caa814fc8e0c7471b6e3df.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/dd70637ea6caa814fc8e0c7471b6e3df.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/dd70637ea6caa814fc8e0c7471b6e3df.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/907ccdfa27251787d0eccd24c1588435.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/907ccdfa27251787d0eccd24c1588435.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/907ccdfa27251787d0eccd24c1588435.jpg" - } - ], - "title": "VALENTINO GARAVANI Vitello Monochrome Medium Rockstud Flip Lock Crossbody Bag Black", - "title_without_brand": "Vitello Monochrome Medium Rockstud Flip Lock Crossbody Bag Black", - "_tags": [ - "1581993" - ], - "objectID": "1581993", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "instagram-live-shopping", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "crossbody-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "valentino-garavani", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "cross-body", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic VALENTINO GARAVANI Vitello Medium Rockstud Flip Lock Crossbody Bag in Black. This chic crossbody bag is beautifully crafted of smooth leather in black. The bag features a polished black studded leather shoulder strap, studded borders, and a studded switch lock for the front flap.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Valentino Garavani", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Black", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Borders have trim detail", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1581993", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "VALENTINO GARAVANI Vitello Monochrome Medium Rockstud Flip Lock Crossbody Bag Black", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Hermes", + "product_name": "Togo Swift 24/24 29 Rouge Pivoine Black", + "condition": "Shows Wear", + "discounted_price": 260, + "price": 4985, + "id": 10746594033967 }, { - "best_value": 500, - "categories": [ - "Black", - "Structured", - "Borders have trim detail", - "Leather", - "Solid Color", - "Crossbody", - "Shoulder Bags", - "Styles", - "General", - "Womens", - "Valentino Garavani", - "Live Shopping with FASHIONPHILE" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoulder-bags-on-sale", - "bags-under-1000", - "bags-on-sale", - "instagram-live-shopping", - "crossbody-bags-on-sale", - "valentino-garavani", - "handbag-styles", - "shoulder-bags", - "cross-body" - ], - "description": "This is an authentic VALENTINO GARAVANI Vitello Medium Rockstud Flip Lock Crossbody Bag in Black. This chic crossbody bag is beautifully crafted of smooth leather in black. The bag features a polished black studded leather shoulder strap, studded borders, and a studded switch lock for the front flap.", - "discounted_price": 945, - "discounted_tier": 1, - "filters": { - "bags": [ - "Crossbody", - "Shoulder Bags" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Valentino Garavani" - ], - "color": [ - "Black" - ], - "material": [ - "Borders have trim detail", - "Leather", - "Solid Color" - ], - "bag_feature": [ - "Structured" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$500-$1000", - "condition": [ - "Shows Wear" - ], - "locations": [ - "New York" - ] - }, - "following_count": 20, - "id": 1581993, - "made_available_at": 1740437391, - "price": 995, - "priced_at": 1743026424, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/dd70637ea6caa814fc8e0c7471b6e3df.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/dd70637ea6caa814fc8e0c7471b6e3df.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/dd70637ea6caa814fc8e0c7471b6e3df.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/907ccdfa27251787d0eccd24c1588435.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/907ccdfa27251787d0eccd24c1588435.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/907ccdfa27251787d0eccd24c1588435.jpg" - } - ], - "title": "VALENTINO GARAVANI Vitello Monochrome Medium Rockstud Flip Lock Crossbody Bag Black", - "title_without_brand": "Vitello Monochrome Medium Rockstud Flip Lock Crossbody Bag Black", - "_tags": [ - "1581993" - ], - "objectID": "1581993", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "instagram-live-shopping", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "crossbody-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "valentino-garavani", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "cross-body", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic VALENTINO GARAVANI Vitello Medium Rockstud Flip Lock Crossbody Bag in Black. This chic crossbody bag is beautifully crafted of smooth leather in black. The bag features a polished black studded leather shoulder strap, studded borders, and a studded switch lock for the front flap.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Valentino Garavani", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Black", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Borders have trim detail", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1581993", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "VALENTINO GARAVANI Vitello Monochrome Medium Rockstud Flip Lock Crossbody Bag Black", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Chanel", + "product_name": "Lambskin Quilted Yen Wallet Black", + "condition": "Shows Wear", + "discounted_price": 30, + "price": 595, + "id": 10746593870127 }, { - "best_value": 0, - "categories": [ - "Blues", - "Structured", - "Zip Top", - "Fabrics", - "Crossbody", - "Handbags", - "Shoulder Bags", - "Styles", - "General", - "Womens", - "Feeling Flirty", - "Summer Essentials", - "Chanel" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoulder-bags-on-sale", - "chanel-on-sale", - "bags-under-1000", - "chanel-shoulder-bags", - "date-night-looks", - "bags-on-sale", - "chanel", - "chanel-19-bags", - "crossbody-bags-on-sale", - "zip-top", - "handbag-styles", - "chanel-bags", - "chanel-crossbody-bags", - "summer-essentials", - "shoulder-bags", - "handbags", - "cross-body" - ], - "description": "This is an authentic CHANEL Denim Quilted Chanel 19 Round Clutch With Chain in Neon Blue. This stylish crossbody bag is crafted of quilted denim. The bag features a blue leather threaded polished multi-color chain-link shoulder strap with a leather shoulder pad and a gold Chanel CC logo on the front. The half-zip zipper opens the bag to a blue fabric interior with patch pockets.", - "discounted_price": 2465, - "discounted_tier": 1, - "filters": { - "bags": [ - "Crossbody", - "Handbags", - "Shoulder Bags" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Chanel" - ], - "color": [ - "Blues" - ], - "material": [ - "Fabrics" - ], - "bag_feature": [ - "Structured", - "Zip Top" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "Over $2000", - "condition": [ - "Excellent" - ], - "locations": [ - "Los Angeles" - ] - }, - "following_count": "43", - "id": 1582405, - "made_available_at": 1740463826, - "price": 2595, - "priced_at": 1743055206, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/c3b06f7e16bfa959690ee24334de3aa3/bc0c2eca85b524a0717a17e8289cecaf.jpg", - "thumb": "/thumb/c3b06f7e16bfa959690ee24334de3aa3/bc0c2eca85b524a0717a17e8289cecaf.jpg", - "tiny": "/tiny/c3b06f7e16bfa959690ee24334de3aa3/bc0c2eca85b524a0717a17e8289cecaf.jpg" - }, - { - "order": 2, - "path": "/thumb/eeff7bcdfcb7fdcc79627a5d4f71b512/0f1c67c04673ab6a5068b51dfd845922.jpg", - "thumb": "/thumb/eeff7bcdfcb7fdcc79627a5d4f71b512/0f1c67c04673ab6a5068b51dfd845922.jpg", - "tiny": "/tiny/eeff7bcdfcb7fdcc79627a5d4f71b512/0f1c67c04673ab6a5068b51dfd845922.jpg" - } - ], - "title": "CHANEL Denim Quilted Chanel 19 Round Clutch With Chain Neon Blue", - "title_without_brand": "Denim Quilted Chanel 19 Round Clutch With Chain Neon Blue", - "_tags": [ - "1582405" - ], - "objectID": "1582405", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "date-night-looks", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-19-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "crossbody-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "zip-top", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-crossbody-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "summer-essentials", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "cross-body", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic CHANEL Denim Quilted Chanel 19 Round Clutch With Chain in Neon Blue. This stylish crossbody bag is crafted of quilted denim. The bag features a blue leather threaded polished multi-color chain-link shoulder strap with a leather shoulder pad and a gold Chanel CC logo on the front. The half-zip zipper opens the bag to a blue fabric interior with patch pockets.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Chanel", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Blues", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Fabrics", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1582405", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "CHANEL Denim Quilted Chanel 19 Round Clutch With Chain Neon Blue", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Telfar", + "product_name": "Vegan Leather Large Shopping Bag Eggplant", + "condition": "Excellent", + "discounted_price": 15, + "price": 325, + "id": 10746593837359 }, { - "best_value": 0, - "categories": [ - "Blues", - "Structured", - "Zip Top", - "Fabrics", - "Crossbody", - "Handbags", - "Shoulder Bags", - "Styles", - "General", - "Womens", - "Feeling Flirty", - "Summer Essentials", - "Chanel" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoulder-bags-on-sale", - "chanel-on-sale", - "bags-under-1000", - "chanel-shoulder-bags", - "date-night-looks", - "bags-on-sale", - "chanel", - "chanel-19-bags", - "crossbody-bags-on-sale", - "zip-top", - "handbag-styles", - "chanel-bags", - "chanel-crossbody-bags", - "summer-essentials", - "shoulder-bags", - "handbags", - "cross-body" - ], - "description": "This is an authentic CHANEL Denim Quilted Chanel 19 Round Clutch With Chain in Neon Blue. This stylish crossbody bag is crafted of quilted denim. The bag features a blue leather threaded polished multi-color chain-link shoulder strap with a leather shoulder pad and a gold Chanel CC logo on the front. The half-zip zipper opens the bag to a blue fabric interior with patch pockets.", - "discounted_price": 2465, - "discounted_tier": 1, - "filters": { - "bags": [ - "Crossbody", - "Handbags", - "Shoulder Bags" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Chanel" - ], - "color": [ - "Blues" - ], - "material": [ - "Fabrics" - ], - "bag_feature": [ - "Structured", - "Zip Top" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "Over $2000", - "condition": [ - "Excellent" - ], - "locations": [ - "Los Angeles" - ] - }, - "following_count": "43", - "id": 1582405, - "made_available_at": 1740463826, - "price": 2595, - "priced_at": 1743055206, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/c3b06f7e16bfa959690ee24334de3aa3/bc0c2eca85b524a0717a17e8289cecaf.jpg", - "thumb": "/thumb/c3b06f7e16bfa959690ee24334de3aa3/bc0c2eca85b524a0717a17e8289cecaf.jpg", - "tiny": "/tiny/c3b06f7e16bfa959690ee24334de3aa3/bc0c2eca85b524a0717a17e8289cecaf.jpg" - }, - { - "order": 2, - "path": "/thumb/eeff7bcdfcb7fdcc79627a5d4f71b512/0f1c67c04673ab6a5068b51dfd845922.jpg", - "thumb": "/thumb/eeff7bcdfcb7fdcc79627a5d4f71b512/0f1c67c04673ab6a5068b51dfd845922.jpg", - "tiny": "/tiny/eeff7bcdfcb7fdcc79627a5d4f71b512/0f1c67c04673ab6a5068b51dfd845922.jpg" - } - ], - "title": "CHANEL Denim Quilted Chanel 19 Round Clutch With Chain Neon Blue", - "title_without_brand": "Denim Quilted Chanel 19 Round Clutch With Chain Neon Blue", - "_tags": [ - "1582405" - ], - "objectID": "1582405", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "date-night-looks", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-19-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "crossbody-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "zip-top", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-crossbody-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "summer-essentials", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "cross-body", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic CHANEL Denim Quilted Chanel 19 Round Clutch With Chain in Neon Blue. This stylish crossbody bag is crafted of quilted denim. The bag features a blue leather threaded polished multi-color chain-link shoulder strap with a leather shoulder pad and a gold Chanel CC logo on the front. The half-zip zipper opens the bag to a blue fabric interior with patch pockets.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Chanel", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Blues", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Fabrics", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1582405", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "CHANEL Denim Quilted Chanel 19 Round Clutch With Chain Neon Blue", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Bottega Veneta", + "product_name": "Nappa Intrecciato Mini Loop Camera Bag Almond", + "condition": "Shows Wear", + "discounted_price": 55, + "price": 1050, + "id": 10746593706287 }, { - "best_value": 0, - "categories": [ - "Blues", - "Structured", - "Zip Top", - "Fabrics", - "Crossbody", - "Handbags", - "Shoulder Bags", - "Styles", - "General", - "Womens", - "Feeling Flirty", - "Summer Essentials", - "Chanel" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoulder-bags-on-sale", - "chanel-on-sale", - "bags-under-1000", - "chanel-shoulder-bags", - "date-night-looks", - "bags-on-sale", - "chanel", - "chanel-19-bags", - "crossbody-bags-on-sale", - "zip-top", - "handbag-styles", - "chanel-bags", - "chanel-crossbody-bags", - "summer-essentials", - "shoulder-bags", - "handbags", - "cross-body" - ], - "description": "This is an authentic CHANEL Denim Quilted Chanel 19 Round Clutch With Chain in Neon Blue. This stylish crossbody bag is crafted of quilted denim. The bag features a blue leather threaded polished multi-color chain-link shoulder strap with a leather shoulder pad and a gold Chanel CC logo on the front. The half-zip zipper opens the bag to a blue fabric interior with patch pockets.", - "discounted_price": 2465, - "discounted_tier": 1, - "filters": { - "bags": [ - "Crossbody", - "Handbags", - "Shoulder Bags" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Chanel" - ], - "color": [ - "Blues" - ], - "material": [ - "Fabrics" - ], - "bag_feature": [ - "Structured", - "Zip Top" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "Over $2000", - "condition": [ - "Excellent" - ], - "locations": [ - "Los Angeles" - ] - }, - "following_count": "43", - "id": 1582405, - "made_available_at": 1740463826, - "price": 2595, - "priced_at": 1743055206, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/c3b06f7e16bfa959690ee24334de3aa3/bc0c2eca85b524a0717a17e8289cecaf.jpg", - "thumb": "/thumb/c3b06f7e16bfa959690ee24334de3aa3/bc0c2eca85b524a0717a17e8289cecaf.jpg", - "tiny": "/tiny/c3b06f7e16bfa959690ee24334de3aa3/bc0c2eca85b524a0717a17e8289cecaf.jpg" - }, - { - "order": 2, - "path": "/thumb/eeff7bcdfcb7fdcc79627a5d4f71b512/0f1c67c04673ab6a5068b51dfd845922.jpg", - "thumb": "/thumb/eeff7bcdfcb7fdcc79627a5d4f71b512/0f1c67c04673ab6a5068b51dfd845922.jpg", - "tiny": "/tiny/eeff7bcdfcb7fdcc79627a5d4f71b512/0f1c67c04673ab6a5068b51dfd845922.jpg" - } - ], - "title": "CHANEL Denim Quilted Chanel 19 Round Clutch With Chain Neon Blue", - "title_without_brand": "Denim Quilted Chanel 19 Round Clutch With Chain Neon Blue", - "_tags": [ - "1582405" - ], - "objectID": "1582405", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "date-night-looks", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-19-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "crossbody-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "zip-top", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-crossbody-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "summer-essentials", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "cross-body", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic CHANEL Denim Quilted Chanel 19 Round Clutch With Chain in Neon Blue. This stylish crossbody bag is crafted of quilted denim. The bag features a blue leather threaded polished multi-color chain-link shoulder strap with a leather shoulder pad and a gold Chanel CC logo on the front. The half-zip zipper opens the bag to a blue fabric interior with patch pockets.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Chanel", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Blues", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Fabrics", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1582405", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "CHANEL Denim Quilted Chanel 19 Round Clutch With Chain Neon Blue", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Louis Vuitton", + "product_name": "Vernis Vanity Jewel Case Amarante", + "condition": "Shows Wear", + "discounted_price": 50, + "price": 995, + "id": 10746593640751 }, { - "best_value": 0, - "categories": [ - "Grays", - "Structured", - "Top Handles", - "Leather", - "Solid Color", - "Handbags", - "Togo", - "Styles", - "Hard-to-Find", - "Editor's Picks", - "Kelly", - "Womens", - "Iconic Leathers", - "Hermes" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "hard-to-find", - "bags-under-1000", - "hermes-kelly", - "hermes-kelly-handbags", - "bags-on-sale", - "kelly", - "top-handles", - "hermes", - "most-wanted", - "handbag-styles", - "iconic-leathers", - "handbags", - "togo", - "hermes-on-sale", - "hermes-bags" - ], - "description": "This is an authentic HERMES Togo Kelly Retourne 25 in Etain. This chic and iconic handbag is expertly handcrafted with grained grey calfskin leather. The bag features rolled leather top handles, a short front flap with a strap closure with polished palladium hardware, including a padlock and leather-covered lock, as well as an optional shoulder strap. The top flap opens to a goatskin leather interior with zipper and patch pockets.", - "discounted_price": 20895, - "discounted_tier": 1, - "filters": { - "bags": [ - "Handbags" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Hermes" - ], - "color": [ - "Grays" - ], - "material": [ - "Leather", - "Solid Color" - ], - "bag_feature": [ - "Structured", - "Top Handles" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "Over $2000", - "condition": [ - "Shows Wear" - ], - "locations": [ - "New York" - ] - }, - "following_count": 51, - "id": 1582731, - "made_available_at": 1740437409, - "price": 21995, - "priced_at": 1743026425, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/418dc159c0cd4ecd43806a368e4ab3b7.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/418dc159c0cd4ecd43806a368e4ab3b7.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/418dc159c0cd4ecd43806a368e4ab3b7.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/2793834918cdeb88e3d9b3fd9ef2b4cf.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/2793834918cdeb88e3d9b3fd9ef2b4cf.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/2793834918cdeb88e3d9b3fd9ef2b4cf.jpg" - } - ], - "title": "HERMES Togo Kelly Retourne 25 Etain", - "title_without_brand": "Togo Kelly Retourne 25 Etain", - "_tags": [ - "1582731" - ], - "objectID": "1582731", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hard-to-find", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-kelly", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-kelly-handbags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "kelly", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "top-handles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "most-wanted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "iconic-leathers", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "togo", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-bags", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic HERMES Togo Kelly Retourne 25 in Etain. This chic and iconic handbag is expertly handcrafted with grained grey calfskin leather. The bag features rolled leather top handles, a short front flap with a strap closure with polished palladium hardware, including a padlock and leather-covered lock, as well as an optional shoulder strap. The top flap opens to a goatskin leather interior with zipper and patch pockets.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Hermes", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Grays", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1582731", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "HERMES Togo Kelly Retourne 25 Etain", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Chanel", + "product_name": "Pearl Crystal CC Heart Multi Strand Necklace Gold", + "condition": "Excellent", + "discounted_price": 70, + "price": 1305, + "id": 10547244335407 }, { - "best_value": 0, - "categories": [ - "Grays", - "Structured", - "Top Handles", - "Leather", - "Solid Color", - "Handbags", - "Togo", - "Styles", - "Hard-to-Find", - "Editor's Picks", - "Kelly", - "Womens", - "Iconic Leathers", - "Hermes" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "hard-to-find", - "bags-under-1000", - "hermes-kelly", - "hermes-kelly-handbags", - "bags-on-sale", - "kelly", - "top-handles", - "hermes", - "most-wanted", - "handbag-styles", - "iconic-leathers", - "handbags", - "togo", - "hermes-on-sale", - "hermes-bags" - ], - "description": "This is an authentic HERMES Togo Kelly Retourne 25 in Etain. This chic and iconic handbag is expertly handcrafted with grained grey calfskin leather. The bag features rolled leather top handles, a short front flap with a strap closure with polished palladium hardware, including a padlock and leather-covered lock, as well as an optional shoulder strap. The top flap opens to a goatskin leather interior with zipper and patch pockets.", - "discounted_price": 20895, - "discounted_tier": 1, - "filters": { - "bags": [ - "Handbags" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Hermes" - ], - "color": [ - "Grays" - ], - "material": [ - "Leather", - "Solid Color" - ], - "bag_feature": [ - "Structured", - "Top Handles" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "Over $2000", - "condition": [ - "Shows Wear" - ], - "locations": [ - "New York" - ] - }, - "following_count": 51, - "id": 1582731, - "made_available_at": 1740437409, - "price": 21995, - "priced_at": 1743026425, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/418dc159c0cd4ecd43806a368e4ab3b7.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/418dc159c0cd4ecd43806a368e4ab3b7.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/418dc159c0cd4ecd43806a368e4ab3b7.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/2793834918cdeb88e3d9b3fd9ef2b4cf.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/2793834918cdeb88e3d9b3fd9ef2b4cf.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/2793834918cdeb88e3d9b3fd9ef2b4cf.jpg" - } - ], - "title": "HERMES Togo Kelly Retourne 25 Etain", - "title_without_brand": "Togo Kelly Retourne 25 Etain", - "_tags": [ - "1582731" - ], - "objectID": "1582731", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hard-to-find", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-kelly", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-kelly-handbags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "kelly", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "top-handles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "most-wanted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "iconic-leathers", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "togo", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-bags", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic HERMES Togo Kelly Retourne 25 in Etain. This chic and iconic handbag is expertly handcrafted with grained grey calfskin leather. The bag features rolled leather top handles, a short front flap with a strap closure with polished palladium hardware, including a padlock and leather-covered lock, as well as an optional shoulder strap. The top flap opens to a goatskin leather interior with zipper and patch pockets.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Hermes", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Grays", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1582731", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "HERMES Togo Kelly Retourne 25 Etain", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Louis Vuitton", + "product_name": "Monogram Pochette Felicie Chain Wallet Fuchsia", + "condition": "Shows Wear", + "discounted_price": 60, + "price": 1150, + "id": 10746593378607 }, { - "best_value": 0, - "categories": [ - "Grays", - "Structured", - "Top Handles", - "Leather", - "Solid Color", - "Handbags", - "Togo", - "Styles", - "Hard-to-Find", - "Editor's Picks", - "Kelly", - "Womens", - "Iconic Leathers", - "Hermes" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "hard-to-find", - "bags-under-1000", - "hermes-kelly", - "hermes-kelly-handbags", - "bags-on-sale", - "kelly", - "top-handles", - "hermes", - "most-wanted", - "handbag-styles", - "iconic-leathers", - "handbags", - "togo", - "hermes-on-sale", - "hermes-bags" - ], - "description": "This is an authentic HERMES Togo Kelly Retourne 25 in Etain. This chic and iconic handbag is expertly handcrafted with grained grey calfskin leather. The bag features rolled leather top handles, a short front flap with a strap closure with polished palladium hardware, including a padlock and leather-covered lock, as well as an optional shoulder strap. The top flap opens to a goatskin leather interior with zipper and patch pockets.", - "discounted_price": 20895, - "discounted_tier": 1, - "filters": { - "bags": [ - "Handbags" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Hermes" - ], - "color": [ - "Grays" - ], - "material": [ - "Leather", - "Solid Color" - ], - "bag_feature": [ - "Structured", - "Top Handles" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "Over $2000", - "condition": [ - "Shows Wear" - ], - "locations": [ - "New York" - ] - }, - "following_count": 51, - "id": 1582731, - "made_available_at": 1740437409, - "price": 21995, - "priced_at": 1743026425, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/418dc159c0cd4ecd43806a368e4ab3b7.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/418dc159c0cd4ecd43806a368e4ab3b7.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/418dc159c0cd4ecd43806a368e4ab3b7.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/2793834918cdeb88e3d9b3fd9ef2b4cf.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/2793834918cdeb88e3d9b3fd9ef2b4cf.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/2793834918cdeb88e3d9b3fd9ef2b4cf.jpg" - } - ], - "title": "HERMES Togo Kelly Retourne 25 Etain", - "title_without_brand": "Togo Kelly Retourne 25 Etain", - "_tags": [ - "1582731" - ], - "objectID": "1582731", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hard-to-find", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-kelly", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-kelly-handbags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "kelly", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "top-handles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "most-wanted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "iconic-leathers", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "togo", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-bags", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic HERMES Togo Kelly Retourne 25 in Etain. This chic and iconic handbag is expertly handcrafted with grained grey calfskin leather. The bag features rolled leather top handles, a short front flap with a strap closure with polished palladium hardware, including a padlock and leather-covered lock, as well as an optional shoulder strap. The top flap opens to a goatskin leather interior with zipper and patch pockets.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Hermes", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Grays", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1582731", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "HERMES Togo Kelly Retourne 25 Etain", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Gucci", + "product_name": "GG Supreme Monogram Textured Dollar Calfskin Web Ophidia Wristlet Shoulder Bag Beige Ebony New Acero", + "condition": "Excellent", + "discounted_price": 80, + "price": 1550, + "id": 10746592657711 }, { - "best_value": 0, - "categories": [ - "Structured", - "Exotic Skins & Fur", - "Handbags", - "Shoulder Bags", - "Styles", - "Constance", - "Beige", - "Grays", - "Hermes" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoulder-bags-on-sale", - "bags-under-1000", - "hermes-constance", - "bags-on-sale", - "constance", - "hermes", - "hermes-exotics", - "hermes-constance-bags", - "handbag-styles", - "shoulder-bags", - "handbags", - "hermes-on-sale", - "hermes-bags" - ], - "description": "This is an authentic HERMES Lizard Constance 18 in Ombre. This shoulder bag is crafted of Lizard skin leather. The bag features a matching crossbody strap with gold hardware, including an H buckle on the front flap. The flap opens to a compact partitioned beige leather interior with a patch pocket.", - "discounted_price": 25645, - "discounted_tier": 1, - "filters": { - "bags": [ - "Handbags", - "Shoulder Bags" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Hermes" - ], - "color": [ - "Beige", - "Grays" - ], - "material": [ - "Exotic Skins & Fur" - ], - "bag_feature": [ - "Structured" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "Over $2000", - "condition": [ - "Giftable" - ], - "locations": [ - "New York" - ] - }, - "following_count": 128, - "id": 1582853, - "made_available_at": 1740431257, - "price": 26995, - "priced_at": 1743023860, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/65bd339ff41c1460449f1d71a978fbe4.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/65bd339ff41c1460449f1d71a978fbe4.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/65bd339ff41c1460449f1d71a978fbe4.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/f57de42054afca3085dd39b88e0ba8be.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/f57de42054afca3085dd39b88e0ba8be.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/f57de42054afca3085dd39b88e0ba8be.jpg" - } - ], - "title": "HERMES Lizard Constance 18 Ombre", - "title_without_brand": "Lizard Constance 18 Ombre", - "_tags": [ - "1582853" - ], - "objectID": "1582853", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-constance", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "constance", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-exotics", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-constance-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-bags", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic HERMES Lizard Constance 18 in Ombre. This shoulder bag is crafted of Lizard skin leather. The bag features a matching crossbody strap with gold hardware, including an H buckle on the front flap. The flap opens to a compact partitioned beige leather interior with a patch pocket.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Hermes", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Beige", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Grays", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Exotic Skins & Fur", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1582853", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "HERMES Lizard Constance 18 Ombre", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Louis Vuitton", + "product_name": "Monogram Alma PM", + "condition": "Worn", + "discounted_price": 30, + "price": 520, + "id": 10746591871279 }, { - "best_value": 0, - "categories": [ - "Structured", - "Exotic Skins & Fur", - "Handbags", - "Shoulder Bags", - "Styles", - "Constance", - "Beige", - "Grays", - "Hermes" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoulder-bags-on-sale", - "bags-under-1000", - "hermes-constance", - "bags-on-sale", - "constance", - "hermes", - "hermes-exotics", - "hermes-constance-bags", - "handbag-styles", - "shoulder-bags", - "handbags", - "hermes-on-sale", - "hermes-bags" - ], - "description": "This is an authentic HERMES Lizard Constance 18 in Ombre. This shoulder bag is crafted of Lizard skin leather. The bag features a matching crossbody strap with gold hardware, including an H buckle on the front flap. The flap opens to a compact partitioned beige leather interior with a patch pocket.", - "discounted_price": 25645, - "discounted_tier": 1, - "filters": { - "bags": [ - "Handbags", - "Shoulder Bags" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Hermes" - ], - "color": [ - "Beige", - "Grays" - ], - "material": [ - "Exotic Skins & Fur" - ], - "bag_feature": [ - "Structured" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "Over $2000", - "condition": [ - "Giftable" - ], - "locations": [ - "New York" - ] - }, - "following_count": 128, - "id": 1582853, - "made_available_at": 1740431257, - "price": 26995, - "priced_at": 1743023860, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/65bd339ff41c1460449f1d71a978fbe4.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/65bd339ff41c1460449f1d71a978fbe4.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/65bd339ff41c1460449f1d71a978fbe4.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/f57de42054afca3085dd39b88e0ba8be.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/f57de42054afca3085dd39b88e0ba8be.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/f57de42054afca3085dd39b88e0ba8be.jpg" - } - ], - "title": "HERMES Lizard Constance 18 Ombre", - "title_without_brand": "Lizard Constance 18 Ombre", - "_tags": [ - "1582853" - ], - "objectID": "1582853", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-constance", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "constance", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-exotics", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-constance-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-bags", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic HERMES Lizard Constance 18 in Ombre. This shoulder bag is crafted of Lizard skin leather. The bag features a matching crossbody strap with gold hardware, including an H buckle on the front flap. The flap opens to a compact partitioned beige leather interior with a patch pocket.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Hermes", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Beige", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Grays", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Exotic Skins & Fur", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1582853", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "HERMES Lizard Constance 18 Ombre", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Chanel", + "product_name": "Caviar Quilted Medium Boy Flap Light Pink", + "condition": "Excellent", + "discounted_price": 195, + "price": 3655, + "id": 10544865083695 }, { - "best_value": 0, - "categories": [ - "Structured", - "Exotic Skins & Fur", - "Handbags", - "Shoulder Bags", - "Styles", - "Constance", - "Beige", - "Grays", - "Hermes" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoulder-bags-on-sale", - "bags-under-1000", - "hermes-constance", - "bags-on-sale", - "constance", - "hermes", - "hermes-exotics", - "hermes-constance-bags", - "handbag-styles", - "shoulder-bags", - "handbags", - "hermes-on-sale", - "hermes-bags" - ], - "description": "This is an authentic HERMES Lizard Constance 18 in Ombre. This shoulder bag is crafted of Lizard skin leather. The bag features a matching crossbody strap with gold hardware, including an H buckle on the front flap. The flap opens to a compact partitioned beige leather interior with a patch pocket.", - "discounted_price": 25645, - "discounted_tier": 1, - "filters": { - "bags": [ - "Handbags", - "Shoulder Bags" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Hermes" - ], - "color": [ - "Beige", - "Grays" - ], - "material": [ - "Exotic Skins & Fur" - ], - "bag_feature": [ - "Structured" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "Over $2000", - "condition": [ - "Giftable" - ], - "locations": [ - "New York" - ] - }, - "following_count": 128, - "id": 1582853, - "made_available_at": 1740431257, - "price": 26995, - "priced_at": 1743023860, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/65bd339ff41c1460449f1d71a978fbe4.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/65bd339ff41c1460449f1d71a978fbe4.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/65bd339ff41c1460449f1d71a978fbe4.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/f57de42054afca3085dd39b88e0ba8be.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/f57de42054afca3085dd39b88e0ba8be.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/f57de42054afca3085dd39b88e0ba8be.jpg" - } - ], - "title": "HERMES Lizard Constance 18 Ombre", - "title_without_brand": "Lizard Constance 18 Ombre", - "_tags": [ - "1582853" - ], - "objectID": "1582853", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-constance", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "constance", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-exotics", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-constance-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-bags", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic HERMES Lizard Constance 18 in Ombre. This shoulder bag is crafted of Lizard skin leather. The bag features a matching crossbody strap with gold hardware, including an H buckle on the front flap. The flap opens to a compact partitioned beige leather interior with a patch pocket.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Hermes", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Beige", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Grays", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Exotic Skins & Fur", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1582853", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "HERMES Lizard Constance 18 Ombre", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Givenchy", + "product_name": "Box Calfskin Antigona U Crossbody Bag Black", + "condition": "Excellent", + "discounted_price": 35, + "price": 695, + "id": 10746591674671 }, { - "best_value": 740, - "categories": [ - "Must-have Mini Bags", - "Summer Essentials", - "Y2K & Today", - "Structured", - "Leather", - "Solid Color", - "Crossbody", - "Handbags", - "Shoulder Bags", - "Styles", - "Spring Style", - "Off-Duty Updates", - "Street Style Bags", - "Black", - "Womens", - "Balenciaga" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoulder-bags-on-sale", - "street-style-bags", - "bags-under-1000", - "casual", - "bags-on-sale", - "mini-bags", - "balenciaga-le-cagole-bags", - "balenciaga-bags", - "spring-style", - "balenciaga", - "y2k-icons", - "crossbody-bags-on-sale", - "balenciaga-on-sale", - "handbag-styles", - "summer-essentials", - "shoulder-bags", - "handbags", - "cross-body" - ], - "description": "This is an authentic BALENCIAGA Agneau Arena Le Cagole Mini Heart Bag in Black. This bag is crafted in black leather in the shape of a heart and features silver decorative studs and buckles. This bag also features a silver chain shoulder strap and a front zipper pocket. The top zipper opens to a black fabric interior with card slots.", - "discounted_price": 850, - "discounted_tier": 1, - "filters": { - "bags": [ - "Crossbody", - "Handbags", - "Shoulder Bags" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Balenciaga" - ], - "color": [ - "Black" - ], - "material": [ - "Leather", - "Solid Color" - ], - "bag_feature": [ - "Structured" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$500-$1000", - "condition": [ - "Excellent" - ], - "locations": [ - "New York" - ] - }, - "following_count": 68, - "id": 1583305, - "made_available_at": 1740437494, - "price": 895, - "priced_at": 1743026426, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/d7a49b3b95bb38e1e7c7193386554e3e.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/d7a49b3b95bb38e1e7c7193386554e3e.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/d7a49b3b95bb38e1e7c7193386554e3e.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/be8ab0cae5163a087fe505b8d4a52011.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/be8ab0cae5163a087fe505b8d4a52011.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/be8ab0cae5163a087fe505b8d4a52011.jpg" - } - ], - "title": "BALENCIAGA Agneau Arena Mini Le Cagole Heart Bag Black", - "title_without_brand": "Agneau Arena Mini Le Cagole Heart Bag Black", - "_tags": [ - "1583305" - ], - "objectID": "1583305", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "street-style-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "casual", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "mini-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "balenciaga-le-cagole-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "balenciaga-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "spring-style", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "balenciaga", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "y2k-icons", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "crossbody-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "balenciaga-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "summer-essentials", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "cross-body", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic BALENCIAGA Agneau Arena Le Cagole Mini Heart Bag in Black. This bag is crafted in black leather in the shape of a heart and features silver decorative studs and buckles. This bag also features a silver chain shoulder strap and a front zipper pocket. The top zipper opens to a black fabric interior with card slots.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Balenciaga", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Black", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1583305", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "BALENCIAGA Agneau Arena Mini Le Cagole Heart Bag Black", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Gucci", + "product_name": "Calfskin GG Marmont Thong Sandals 37 Perfect Pink", + "condition": "Shows Wear", + "discounted_price": 15, + "price": 325, + "id": 10746591641903 }, { - "best_value": 740, - "categories": [ - "Must-have Mini Bags", - "Summer Essentials", - "Y2K & Today", - "Structured", - "Leather", - "Solid Color", - "Crossbody", - "Handbags", - "Shoulder Bags", - "Styles", - "Spring Style", - "Off-Duty Updates", - "Street Style Bags", - "Black", - "Womens", - "Balenciaga" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoulder-bags-on-sale", - "street-style-bags", - "bags-under-1000", - "casual", - "bags-on-sale", - "mini-bags", - "balenciaga-le-cagole-bags", - "balenciaga-bags", - "spring-style", - "balenciaga", - "y2k-icons", - "crossbody-bags-on-sale", - "balenciaga-on-sale", - "handbag-styles", - "summer-essentials", - "shoulder-bags", - "handbags", - "cross-body" - ], - "description": "This is an authentic BALENCIAGA Agneau Arena Le Cagole Mini Heart Bag in Black. This bag is crafted in black leather in the shape of a heart and features silver decorative studs and buckles. This bag also features a silver chain shoulder strap and a front zipper pocket. The top zipper opens to a black fabric interior with card slots.", - "discounted_price": 850, - "discounted_tier": 1, - "filters": { - "bags": [ - "Crossbody", - "Handbags", - "Shoulder Bags" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Balenciaga" - ], - "color": [ - "Black" - ], - "material": [ - "Leather", - "Solid Color" - ], - "bag_feature": [ - "Structured" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$500-$1000", - "condition": [ - "Excellent" - ], - "locations": [ - "New York" - ] - }, - "following_count": 68, - "id": 1583305, - "made_available_at": 1740437494, - "price": 895, - "priced_at": 1743026426, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/d7a49b3b95bb38e1e7c7193386554e3e.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/d7a49b3b95bb38e1e7c7193386554e3e.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/d7a49b3b95bb38e1e7c7193386554e3e.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/be8ab0cae5163a087fe505b8d4a52011.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/be8ab0cae5163a087fe505b8d4a52011.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/be8ab0cae5163a087fe505b8d4a52011.jpg" - } - ], - "title": "BALENCIAGA Agneau Arena Mini Le Cagole Heart Bag Black", - "title_without_brand": "Agneau Arena Mini Le Cagole Heart Bag Black", - "_tags": [ - "1583305" - ], - "objectID": "1583305", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "street-style-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "casual", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "mini-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "balenciaga-le-cagole-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "balenciaga-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "spring-style", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "balenciaga", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "y2k-icons", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "crossbody-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "balenciaga-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "summer-essentials", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "cross-body", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic BALENCIAGA Agneau Arena Le Cagole Mini Heart Bag in Black. This bag is crafted in black leather in the shape of a heart and features silver decorative studs and buckles. This bag also features a silver chain shoulder strap and a front zipper pocket. The top zipper opens to a black fabric interior with card slots.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Balenciaga", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Black", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1583305", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "BALENCIAGA Agneau Arena Mini Le Cagole Heart Bag Black", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Saint Laurent", + "product_name": "Canvas Nappa Elba Moon Plus Andy Low Top Sneakers 35 Off White", + "condition": "Excellent", + "discounted_price": 20, + "price": 335, + "id": 10689615561007 }, { - "best_value": 740, - "categories": [ - "Must-have Mini Bags", - "Summer Essentials", - "Y2K & Today", - "Structured", - "Leather", - "Solid Color", - "Crossbody", - "Handbags", - "Shoulder Bags", - "Styles", - "Spring Style", - "Off-Duty Updates", - "Street Style Bags", - "Black", - "Womens", - "Balenciaga" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoulder-bags-on-sale", - "street-style-bags", - "bags-under-1000", - "casual", - "bags-on-sale", - "mini-bags", - "balenciaga-le-cagole-bags", - "balenciaga-bags", - "spring-style", - "balenciaga", - "y2k-icons", - "crossbody-bags-on-sale", - "balenciaga-on-sale", - "handbag-styles", - "summer-essentials", - "shoulder-bags", - "handbags", - "cross-body" - ], - "description": "This is an authentic BALENCIAGA Agneau Arena Le Cagole Mini Heart Bag in Black. This bag is crafted in black leather in the shape of a heart and features silver decorative studs and buckles. This bag also features a silver chain shoulder strap and a front zipper pocket. The top zipper opens to a black fabric interior with card slots.", - "discounted_price": 850, - "discounted_tier": 1, - "filters": { - "bags": [ - "Crossbody", - "Handbags", - "Shoulder Bags" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Balenciaga" - ], - "color": [ - "Black" - ], - "material": [ - "Leather", - "Solid Color" - ], - "bag_feature": [ - "Structured" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$500-$1000", - "condition": [ - "Excellent" - ], - "locations": [ - "New York" - ] - }, - "following_count": 68, - "id": 1583305, - "made_available_at": 1740437494, + "brand_name": "Louis Vuitton", + "product_name": "Empreinte Monogram Giant Multi Pochette Accessories Small Pochette Black", + "condition": "Shows Wear", + "discounted_price": 45, "price": 895, - "priced_at": 1743026426, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/d7a49b3b95bb38e1e7c7193386554e3e.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/d7a49b3b95bb38e1e7c7193386554e3e.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/d7a49b3b95bb38e1e7c7193386554e3e.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/be8ab0cae5163a087fe505b8d4a52011.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/be8ab0cae5163a087fe505b8d4a52011.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/be8ab0cae5163a087fe505b8d4a52011.jpg" - } - ], - "title": "BALENCIAGA Agneau Arena Mini Le Cagole Heart Bag Black", - "title_without_brand": "Agneau Arena Mini Le Cagole Heart Bag Black", - "_tags": [ - "1583305" - ], - "objectID": "1583305", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "street-style-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "casual", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "mini-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "balenciaga-le-cagole-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "balenciaga-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "spring-style", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "balenciaga", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "y2k-icons", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "crossbody-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "balenciaga-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "summer-essentials", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "cross-body", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic BALENCIAGA Agneau Arena Le Cagole Mini Heart Bag in Black. This bag is crafted in black leather in the shape of a heart and features silver decorative studs and buckles. This bag also features a silver chain shoulder strap and a front zipper pocket. The top zipper opens to a black fabric interior with card slots.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Balenciaga", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Black", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1583305", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "BALENCIAGA Agneau Arena Mini Le Cagole Heart Bag Black", - "matchLevel": "none", - "matchedWords": [] - } - } + "id": 10746591248687 }, { - "best_value": 0, - "categories": [ - "Black", - "Womens", - "Leather", - "Solid Color", - "Handbags", - "Shoulder Bags", - "Styles", - "General", - "Open Top", - "Soft Silhouettes", - "Cult Finds", - "Lunar New Year", - "Chanel", - "Oversized Bags" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoulder-bags-on-sale", - "chanel-22-bags", - "chanel-on-sale", - "oversized-bags", - "black-chanel-bags", - "bags-under-1000", - "chanel-shoulder-bags", - "bags-on-sale", - "chanel", - "handbag-styles", - "lunar-new-year-edit", - "chanel-bags", - "cult-finds", - "shoulder-bags", - "handbags" - ], - "description": "This is an authentic CHANEL Shiny Calfskin Quilted Large Chanel 22 in So Black. This drawstring bag is crafted of shiny diamond-stitched leather in black. This shoulder bag features a black chain threaded leather shoulder strap and black hardware. The bag is open to a black diamond stitched fabric interior with a zipper pocket and a removable pouch.", - "discounted_price": 6645, - "discounted_tier": 1, - "filters": { - "bags": [ - "Handbags", - "Shoulder Bags" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Chanel" - ], - "color": [ - "Black" - ], - "material": [ - "Leather", - "Solid Color" - ], - "bag_feature": [ - "Open Top" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "Over $2000", - "condition": [ - "New" - ], - "locations": [ - "New York" - ] - }, - "following_count": 57, - "id": 1583492, - "made_available_at": 1740437506, - "price": 6995, - "priced_at": 1743026427, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/7fa98f2eed9eada0b3da5bcfa7673376.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/7fa98f2eed9eada0b3da5bcfa7673376.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/7fa98f2eed9eada0b3da5bcfa7673376.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/b1570b7b7efa96a9c43070fdf2ff27cc.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/b1570b7b7efa96a9c43070fdf2ff27cc.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/b1570b7b7efa96a9c43070fdf2ff27cc.jpg" - } - ], - "title": "CHANEL Shiny Calfskin Quilted Large Chanel 22 So Black", - "title_without_brand": "Shiny Calfskin Quilted Large Chanel 22 So Black", - "_tags": [ - "1583492" - ], - "objectID": "1583492", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-22-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "oversized-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "black-chanel-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "lunar-new-year-edit", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "cult-finds", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic CHANEL Shiny Calfskin Quilted Large Chanel 22 in So Black. This drawstring bag is crafted of shiny diamond-stitched leather in black. This shoulder bag features a black chain threaded leather shoulder strap and black hardware. The bag is open to a black diamond stitched fabric interior with a zipper pocket and a removable pouch.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Chanel", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Black", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1583492", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "CHANEL Shiny Calfskin Quilted Large Chanel 22 So Black", - "matchLevel": "none", - "matchedWords": [] - } - } - }, - { - "best_value": 0, - "categories": [ - "Black", - "Womens", - "Leather", - "Solid Color", - "Handbags", - "Shoulder Bags", - "Styles", - "General", - "Open Top", - "Soft Silhouettes", - "Cult Finds", - "Lunar New Year", - "Chanel", - "Oversized Bags" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoulder-bags-on-sale", - "chanel-22-bags", - "chanel-on-sale", - "oversized-bags", - "black-chanel-bags", - "bags-under-1000", - "chanel-shoulder-bags", - "bags-on-sale", - "chanel", - "handbag-styles", - "lunar-new-year-edit", - "chanel-bags", - "cult-finds", - "shoulder-bags", - "handbags" - ], - "description": "This is an authentic CHANEL Shiny Calfskin Quilted Large Chanel 22 in So Black. This drawstring bag is crafted of shiny diamond-stitched leather in black. This shoulder bag features a black chain threaded leather shoulder strap and black hardware. The bag is open to a black diamond stitched fabric interior with a zipper pocket and a removable pouch.", - "discounted_price": 6645, - "discounted_tier": 1, - "filters": { - "bags": [ - "Handbags", - "Shoulder Bags" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Chanel" - ], - "color": [ - "Black" - ], - "material": [ - "Leather", - "Solid Color" - ], - "bag_feature": [ - "Open Top" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "Over $2000", - "condition": [ - "New" - ], - "locations": [ - "New York" - ] - }, - "following_count": 57, - "id": 1583492, - "made_available_at": 1740437506, - "price": 6995, - "priced_at": 1743026427, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/7fa98f2eed9eada0b3da5bcfa7673376.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/7fa98f2eed9eada0b3da5bcfa7673376.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/7fa98f2eed9eada0b3da5bcfa7673376.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/b1570b7b7efa96a9c43070fdf2ff27cc.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/b1570b7b7efa96a9c43070fdf2ff27cc.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/b1570b7b7efa96a9c43070fdf2ff27cc.jpg" - } - ], - "title": "CHANEL Shiny Calfskin Quilted Large Chanel 22 So Black", - "title_without_brand": "Shiny Calfskin Quilted Large Chanel 22 So Black", - "_tags": [ - "1583492" - ], - "objectID": "1583492", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-22-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "oversized-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "black-chanel-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "lunar-new-year-edit", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "cult-finds", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic CHANEL Shiny Calfskin Quilted Large Chanel 22 in So Black. This drawstring bag is crafted of shiny diamond-stitched leather in black. This shoulder bag features a black chain threaded leather shoulder strap and black hardware. The bag is open to a black diamond stitched fabric interior with a zipper pocket and a removable pouch.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Chanel", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Black", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1583492", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "CHANEL Shiny Calfskin Quilted Large Chanel 22 So Black", - "matchLevel": "none", - "matchedWords": [] - } - } - }, - { - "best_value": 0, - "categories": [ - "Black", - "Womens", - "Leather", - "Solid Color", - "Handbags", - "Shoulder Bags", - "Styles", - "General", - "Open Top", - "Soft Silhouettes", - "Cult Finds", - "Lunar New Year", - "Chanel", - "Oversized Bags" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoulder-bags-on-sale", - "chanel-22-bags", - "chanel-on-sale", - "oversized-bags", - "black-chanel-bags", - "bags-under-1000", - "chanel-shoulder-bags", - "bags-on-sale", - "chanel", - "handbag-styles", - "lunar-new-year-edit", - "chanel-bags", - "cult-finds", - "shoulder-bags", - "handbags" - ], - "description": "This is an authentic CHANEL Shiny Calfskin Quilted Large Chanel 22 in So Black. This drawstring bag is crafted of shiny diamond-stitched leather in black. This shoulder bag features a black chain threaded leather shoulder strap and black hardware. The bag is open to a black diamond stitched fabric interior with a zipper pocket and a removable pouch.", - "discounted_price": 6645, - "discounted_tier": 1, - "filters": { - "bags": [ - "Handbags", - "Shoulder Bags" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Chanel" - ], - "color": [ - "Black" - ], - "material": [ - "Leather", - "Solid Color" - ], - "bag_feature": [ - "Open Top" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "Over $2000", - "condition": [ - "New" - ], - "locations": [ - "New York" - ] - }, - "following_count": 57, - "id": 1583492, - "made_available_at": 1740437506, - "price": 6995, - "priced_at": 1743026427, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/7fa98f2eed9eada0b3da5bcfa7673376.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/7fa98f2eed9eada0b3da5bcfa7673376.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/7fa98f2eed9eada0b3da5bcfa7673376.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/b1570b7b7efa96a9c43070fdf2ff27cc.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/b1570b7b7efa96a9c43070fdf2ff27cc.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/b1570b7b7efa96a9c43070fdf2ff27cc.jpg" - } - ], - "title": "CHANEL Shiny Calfskin Quilted Large Chanel 22 So Black", - "title_without_brand": "Shiny Calfskin Quilted Large Chanel 22 So Black", - "_tags": [ - "1583492" - ], - "objectID": "1583492", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-22-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "oversized-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "black-chanel-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "lunar-new-year-edit", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "cult-finds", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic CHANEL Shiny Calfskin Quilted Large Chanel 22 in So Black. This drawstring bag is crafted of shiny diamond-stitched leather in black. This shoulder bag features a black chain threaded leather shoulder strap and black hardware. The bag is open to a black diamond stitched fabric interior with a zipper pocket and a removable pouch.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Chanel", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Black", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1583492", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "CHANEL Shiny Calfskin Quilted Large Chanel 22 So Black", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Louis Vuitton", + "product_name": "Monogram Tiles By The Pool Card Holder Coral", + "condition": "Excellent", + "discounted_price": 35, + "price": 650, + "id": 10746591150383 }, { - "best_value": 835, - "categories": [ - "Browns", - "Multicolor", - "Open Top", - "Womens", - "Coated Canvas", - "Handbags", - "Shoulder Bags", - "Totes", - "Monogram", - "Styles", - "Gucci", - "Live Shopping with FASHIONPHILE" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoulder-bags-on-sale", - "gucci-totes", - "gucci-shoulder-bags", - "gucci-bags-on-sale", - "bags-under-1000", - "gucci", - "gucci-bags", - "bags-on-sale", - "gucci-gg-supreme-monogram", - "instagram-live-shopping", - "gucci-monogram", - "totes-on-sale", - "totes", - "gucci-gg-supreme-monogram-bags", - "handbag-styles", - "gucci-on-sale", - "shoulder-bags", - "handbags" - ], - "description": "This is an authentic GUCCI GG Supreme Monogram Large Rajah Chain Tote in Brown. This stylish shoulder bag is finely crafted of monogram leather in brown. The shoulder bag features a prominent crystal tiger head stud on the front, red and green web striping, and gold chain-link shoulder straps with leather shoulder pads. The top opens to a beige leather interior with a matching removable pouch.", - "discounted_price": 1565, - "discounted_tier": 1, - "filters": { - "bags": [ - "Handbags", - "Shoulder Bags", - "Totes" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Gucci" - ], - "color": [ - "Browns", - "Multicolor" - ], - "material": [ - "Coated Canvas" - ], - "bag_feature": [ - "Open Top" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$1000-$2000", - "condition": [ - "Excellent" - ], - "locations": [ - "New York" - ] - }, - "following_count": 24, - "id": 1583556, - "made_available_at": 1740435346, - "price": 1650, - "priced_at": 1743026407, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/7c37c2009815dc952d7294fe5c74b841.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/7c37c2009815dc952d7294fe5c74b841.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/7c37c2009815dc952d7294fe5c74b841.jpg" - }, - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/a5e4ed9af56641ed3983576adb16a3ca.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/a5e4ed9af56641ed3983576adb16a3ca.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/a5e4ed9af56641ed3983576adb16a3ca.jpg" - } - ], - "title": "GUCCI GG Supreme Monogram Large Rajah Chain Tote Beige New Acero", - "title_without_brand": "GG Supreme Monogram Large Rajah Chain Tote Beige New Acero", - "_tags": [ - "1583556" - ], - "objectID": "1583556", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-totes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-gg-supreme-monogram", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "instagram-live-shopping", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-monogram", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "totes-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "totes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-gg-supreme-monogram-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic GUCCI GG Supreme Monogram Large Rajah Chain Tote in Brown. This stylish shoulder bag is finely crafted of monogram leather in brown. The shoulder bag features a prominent crystal tiger head stud on the front, red and green web striping, and gold chain-link shoulder straps with leather shoulder pads. The top opens to a beige leather interior with a matching removable pouch.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Gucci", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Browns", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Multicolor", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Coated Canvas", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1583556", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "GUCCI GG Supreme Monogram Large Rajah Chain Tote Beige New Acero", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Chanel", + "product_name": "Lambskin Quilted Jumbo Single Flap Blue", + "condition": "Shows Wear", + "discounted_price": 190, + "price": 3585, + "id": 10746591019311 }, { - "best_value": 835, - "categories": [ - "Browns", - "Multicolor", - "Open Top", - "Womens", - "Coated Canvas", - "Handbags", - "Shoulder Bags", - "Totes", - "Monogram", - "Styles", - "Gucci", - "Live Shopping with FASHIONPHILE" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoulder-bags-on-sale", - "gucci-totes", - "gucci-shoulder-bags", - "gucci-bags-on-sale", - "bags-under-1000", - "gucci", - "gucci-bags", - "bags-on-sale", - "gucci-gg-supreme-monogram", - "instagram-live-shopping", - "gucci-monogram", - "totes-on-sale", - "totes", - "gucci-gg-supreme-monogram-bags", - "handbag-styles", - "gucci-on-sale", - "shoulder-bags", - "handbags" - ], - "description": "This is an authentic GUCCI GG Supreme Monogram Large Rajah Chain Tote in Brown. This stylish shoulder bag is finely crafted of monogram leather in brown. The shoulder bag features a prominent crystal tiger head stud on the front, red and green web striping, and gold chain-link shoulder straps with leather shoulder pads. The top opens to a beige leather interior with a matching removable pouch.", - "discounted_price": 1565, - "discounted_tier": 1, - "filters": { - "bags": [ - "Handbags", - "Shoulder Bags", - "Totes" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Gucci" - ], - "color": [ - "Browns", - "Multicolor" - ], - "material": [ - "Coated Canvas" - ], - "bag_feature": [ - "Open Top" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$1000-$2000", - "condition": [ - "Excellent" - ], - "locations": [ - "New York" - ] - }, - "following_count": 24, - "id": 1583556, - "made_available_at": 1740435346, - "price": 1650, - "priced_at": 1743026407, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/7c37c2009815dc952d7294fe5c74b841.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/7c37c2009815dc952d7294fe5c74b841.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/7c37c2009815dc952d7294fe5c74b841.jpg" - }, - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/a5e4ed9af56641ed3983576adb16a3ca.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/a5e4ed9af56641ed3983576adb16a3ca.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/a5e4ed9af56641ed3983576adb16a3ca.jpg" - } - ], - "title": "GUCCI GG Supreme Monogram Large Rajah Chain Tote Beige New Acero", - "title_without_brand": "GG Supreme Monogram Large Rajah Chain Tote Beige New Acero", - "_tags": [ - "1583556" - ], - "objectID": "1583556", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-totes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-gg-supreme-monogram", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "instagram-live-shopping", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-monogram", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "totes-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "totes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-gg-supreme-monogram-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic GUCCI GG Supreme Monogram Large Rajah Chain Tote in Brown. This stylish shoulder bag is finely crafted of monogram leather in brown. The shoulder bag features a prominent crystal tiger head stud on the front, red and green web striping, and gold chain-link shoulder straps with leather shoulder pads. The top opens to a beige leather interior with a matching removable pouch.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Gucci", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Browns", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Multicolor", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Coated Canvas", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1583556", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "GUCCI GG Supreme Monogram Large Rajah Chain Tote Beige New Acero", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Louis Vuitton", + "product_name": "Monogram Odeon PM", + "condition": "Shows Wear", + "discounted_price": 45, + "price": 850, + "id": 10746590921007 }, { - "best_value": 835, - "categories": [ - "Browns", - "Multicolor", - "Open Top", - "Womens", - "Coated Canvas", - "Handbags", - "Shoulder Bags", - "Totes", - "Monogram", - "Styles", - "Gucci", - "Live Shopping with FASHIONPHILE" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoulder-bags-on-sale", - "gucci-totes", - "gucci-shoulder-bags", - "gucci-bags-on-sale", - "bags-under-1000", - "gucci", - "gucci-bags", - "bags-on-sale", - "gucci-gg-supreme-monogram", - "instagram-live-shopping", - "gucci-monogram", - "totes-on-sale", - "totes", - "gucci-gg-supreme-monogram-bags", - "handbag-styles", - "gucci-on-sale", - "shoulder-bags", - "handbags" - ], - "description": "This is an authentic GUCCI GG Supreme Monogram Large Rajah Chain Tote in Brown. This stylish shoulder bag is finely crafted of monogram leather in brown. The shoulder bag features a prominent crystal tiger head stud on the front, red and green web striping, and gold chain-link shoulder straps with leather shoulder pads. The top opens to a beige leather interior with a matching removable pouch.", - "discounted_price": 1565, - "discounted_tier": 1, - "filters": { - "bags": [ - "Handbags", - "Shoulder Bags", - "Totes" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Gucci" - ], - "color": [ - "Browns", - "Multicolor" - ], - "material": [ - "Coated Canvas" - ], - "bag_feature": [ - "Open Top" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$1000-$2000", - "condition": [ - "Excellent" - ], - "locations": [ - "New York" - ] - }, - "following_count": 24, - "id": 1583556, - "made_available_at": 1740435346, - "price": 1650, - "priced_at": 1743026407, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/7c37c2009815dc952d7294fe5c74b841.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/7c37c2009815dc952d7294fe5c74b841.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/7c37c2009815dc952d7294fe5c74b841.jpg" - }, - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/a5e4ed9af56641ed3983576adb16a3ca.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/a5e4ed9af56641ed3983576adb16a3ca.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/a5e4ed9af56641ed3983576adb16a3ca.jpg" - } - ], - "title": "GUCCI GG Supreme Monogram Large Rajah Chain Tote Beige New Acero", - "title_without_brand": "GG Supreme Monogram Large Rajah Chain Tote Beige New Acero", - "_tags": [ - "1583556" - ], - "objectID": "1583556", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-totes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-gg-supreme-monogram", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "instagram-live-shopping", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-monogram", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "totes-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "totes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-gg-supreme-monogram-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic GUCCI GG Supreme Monogram Large Rajah Chain Tote in Brown. This stylish shoulder bag is finely crafted of monogram leather in brown. The shoulder bag features a prominent crystal tiger head stud on the front, red and green web striping, and gold chain-link shoulder straps with leather shoulder pads. The top opens to a beige leather interior with a matching removable pouch.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Gucci", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Browns", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Multicolor", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Coated Canvas", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1583556", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "GUCCI GG Supreme Monogram Large Rajah Chain Tote Beige New Acero", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Hermes", + "product_name": "Swift Constance 18 Rose Sakura", + "condition": "Giftable", + "discounted_price": 785, + "price": 14960, + "id": 10746590855471 }, { - "best_value": 0, - "categories": [ - "Shoes", - "Leather", - "Solid Color", - "Pumps", - "Accessories", - "Silver", - "Night Out Energy", - "37", - "Gucci" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "the-event-edit", - "gucci", - "shoes-on-sale", - "pumps-shoes", - "accessories-on-sale", - "gucci-on-sale", - "shoes", - "accessories", - "gucci-shoes" - ], - "description": "This is an authentic pair of GUCCI Soft Nappa Priscilla Ankle Cuff Pumps 37 in Blue. These bold heels are crafted of metallic silver leather. It features 3.5 inch gold metal stiletto heel, pointed toe, and self-tie ankle straps.", - "discounted_price": 405, - "discounted_tier": 1, - "filters": { - "bags": [], - "jewelry": [], - "accessories": [ - "Shoes" - ], - "watches": [], - "shoes": [ - "Pumps" - ], - "brands": [ - "Gucci" - ], - "color": [ - "Silver" - ], - "material": [ - "Leather", - "Solid Color" - ], - "bag_feature": [], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [ - "37" - ], - "on_sale": [ - "5% Off" - ], - "price": "$200-$500", - "condition": [ - "Excellent" - ], - "locations": [ - "Carlsbad" - ] - }, - "following_count": 11, - "id": 1583621, - "made_available_at": 1740430855, - "price": 425, - "priced_at": 1743023853, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/4d2285429ee63b8e1417b9adc2dc633f.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/4d2285429ee63b8e1417b9adc2dc633f.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/4d2285429ee63b8e1417b9adc2dc633f.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/9a076e8fb8e2157192c611deb22bc5ee.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/9a076e8fb8e2157192c611deb22bc5ee.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/9a076e8fb8e2157192c611deb22bc5ee.jpg" - } - ], - "title": "GUCCI Nappa Fabric Priscilla Ankle Cuff Pumps 37 Electric Blue", - "title_without_brand": "Nappa Fabric Priscilla Ankle Cuff Pumps 37 Electric Blue", - "_tags": [ - "1583621" - ], - "objectID": "1583621", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "the-event-edit", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoes-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "pumps-shoes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-shoes", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic pair of GUCCI Soft Nappa Priscilla Ankle Cuff Pumps 37 in Blue. These bold heels are crafted of metallic silver leather. It features 3.5 inch gold metal stiletto heel, pointed toe, and self-tie ankle straps.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Gucci", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Silver", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1583621", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "GUCCI Nappa Fabric Priscilla Ankle Cuff Pumps 37 Electric Blue", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Louis Vuitton", + "product_name": "Monogram Multi Pochette Accessories Kaki", + "condition": "Excellent", + "discounted_price": 115, + "price": 2220, + "id": 10746590789935 }, { - "best_value": 0, - "categories": [ - "Shoes", - "Leather", - "Solid Color", - "Pumps", - "Accessories", - "Silver", - "Night Out Energy", - "37", - "Gucci" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "the-event-edit", - "gucci", - "shoes-on-sale", - "pumps-shoes", - "accessories-on-sale", - "gucci-on-sale", - "shoes", - "accessories", - "gucci-shoes" - ], - "description": "This is an authentic pair of GUCCI Soft Nappa Priscilla Ankle Cuff Pumps 37 in Blue. These bold heels are crafted of metallic silver leather. It features 3.5 inch gold metal stiletto heel, pointed toe, and self-tie ankle straps.", - "discounted_price": 405, - "discounted_tier": 1, - "filters": { - "bags": [], - "jewelry": [], - "accessories": [ - "Shoes" - ], - "watches": [], - "shoes": [ - "Pumps" - ], - "brands": [ - "Gucci" - ], - "color": [ - "Silver" - ], - "material": [ - "Leather", - "Solid Color" - ], - "bag_feature": [], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [ - "37" - ], - "on_sale": [ - "5% Off" - ], - "price": "$200-$500", - "condition": [ - "Excellent" - ], - "locations": [ - "Carlsbad" - ] - }, - "following_count": 11, - "id": 1583621, - "made_available_at": 1740430855, - "price": 425, - "priced_at": 1743023853, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/4d2285429ee63b8e1417b9adc2dc633f.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/4d2285429ee63b8e1417b9adc2dc633f.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/4d2285429ee63b8e1417b9adc2dc633f.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/9a076e8fb8e2157192c611deb22bc5ee.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/9a076e8fb8e2157192c611deb22bc5ee.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/9a076e8fb8e2157192c611deb22bc5ee.jpg" - } - ], - "title": "GUCCI Nappa Fabric Priscilla Ankle Cuff Pumps 37 Electric Blue", - "title_without_brand": "Nappa Fabric Priscilla Ankle Cuff Pumps 37 Electric Blue", - "_tags": [ - "1583621" - ], - "objectID": "1583621", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "the-event-edit", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoes-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "pumps-shoes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-shoes", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic pair of GUCCI Soft Nappa Priscilla Ankle Cuff Pumps 37 in Blue. These bold heels are crafted of metallic silver leather. It features 3.5 inch gold metal stiletto heel, pointed toe, and self-tie ankle straps.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Gucci", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Silver", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1583621", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "GUCCI Nappa Fabric Priscilla Ankle Cuff Pumps 37 Electric Blue", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Saint Laurent", + "product_name": "Canvas City Backpack Black", + "condition": "Excellent", + "discounted_price": 40, + "price": 795, + "id": 10746590626095 }, { - "best_value": 0, - "categories": [ - "Shoes", - "Leather", - "Solid Color", - "Pumps", - "Accessories", - "Silver", - "Night Out Energy", - "37", - "Gucci" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "the-event-edit", - "gucci", - "shoes-on-sale", - "pumps-shoes", - "accessories-on-sale", - "gucci-on-sale", - "shoes", - "accessories", - "gucci-shoes" - ], - "description": "This is an authentic pair of GUCCI Soft Nappa Priscilla Ankle Cuff Pumps 37 in Blue. These bold heels are crafted of metallic silver leather. It features 3.5 inch gold metal stiletto heel, pointed toe, and self-tie ankle straps.", - "discounted_price": 405, - "discounted_tier": 1, - "filters": { - "bags": [], - "jewelry": [], - "accessories": [ - "Shoes" - ], - "watches": [], - "shoes": [ - "Pumps" - ], - "brands": [ - "Gucci" - ], - "color": [ - "Silver" - ], - "material": [ - "Leather", - "Solid Color" - ], - "bag_feature": [], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [ - "37" - ], - "on_sale": [ - "5% Off" - ], - "price": "$200-$500", - "condition": [ - "Excellent" - ], - "locations": [ - "Carlsbad" - ] - }, - "following_count": 11, - "id": 1583621, - "made_available_at": 1740430855, - "price": 425, - "priced_at": 1743023853, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/4d2285429ee63b8e1417b9adc2dc633f.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/4d2285429ee63b8e1417b9adc2dc633f.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/4d2285429ee63b8e1417b9adc2dc633f.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/9a076e8fb8e2157192c611deb22bc5ee.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/9a076e8fb8e2157192c611deb22bc5ee.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/9a076e8fb8e2157192c611deb22bc5ee.jpg" - } - ], - "title": "GUCCI Nappa Fabric Priscilla Ankle Cuff Pumps 37 Electric Blue", - "title_without_brand": "Nappa Fabric Priscilla Ankle Cuff Pumps 37 Electric Blue", - "_tags": [ - "1583621" - ], - "objectID": "1583621", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "the-event-edit", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoes-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "pumps-shoes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-shoes", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic pair of GUCCI Soft Nappa Priscilla Ankle Cuff Pumps 37 in Blue. These bold heels are crafted of metallic silver leather. It features 3.5 inch gold metal stiletto heel, pointed toe, and self-tie ankle straps.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Gucci", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Silver", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1583621", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "GUCCI Nappa Fabric Priscilla Ankle Cuff Pumps 37 Electric Blue", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Valentino Garavani", + "product_name": "Patent Small Glam Lock Rockstud Flap Marine", + "condition": "Shows Wear", + "discounted_price": 25, + "price": 460, + "id": 10689559101743 }, { - "best_value": 0, - "categories": [ - "Black", - "Open Top", - "Top Handles", - "Leather", - "Solid Color", - "Handbags", - "Totes", - "Clemence", - "Styles", - "Quiet Luxury", - "Picotin", - "Womens", - "Hermes" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "hermes-picotin-bags", - "bags-under-1000", - "bags-on-sale", - "hermes-totes", - "modern-minimalist", - "totes-on-sale", - "top-handles", - "totes", - "picotin", - "hermes", - "clemence", - "handbag-styles", - "handbags", - "hermes-on-sale", - "hermes-bags" - ], - "description": "This is an authentic HERMES Taurillon Clemence Picotin Lock 22 MM in Black. This handbag is crafted of grained calfskin leather in black. It features looping leather top handles and gold hardware. The top is open to a black suede and leather interior.", - "discounted_price": 4270, - "discounted_tier": 1, - "filters": { - "bags": [ - "Handbags", - "Totes" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Hermes" - ], - "color": [ - "Black" - ], - "material": [ - "Leather", - "Solid Color" - ], - "bag_feature": [ - "Open Top", - "Top Handles" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "Over $2000", - "condition": [ - "Excellent" - ], - "locations": [ - "New York" - ] - }, - "following_count": 50, - "id": 1583645, - "made_available_at": 1740431270, - "price": 4495, - "priced_at": 1743023860, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/c926f8234fd422e1ab9cbdfb707d94f7.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/c926f8234fd422e1ab9cbdfb707d94f7.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/c926f8234fd422e1ab9cbdfb707d94f7.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/7dfca4d27757448895ae8afdba024ae6.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/7dfca4d27757448895ae8afdba024ae6.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/7dfca4d27757448895ae8afdba024ae6.jpg" - } - ], - "title": "HERMES Taurillon Clemence Picotin Lock 22 MM Black", - "title_without_brand": "Taurillon Clemence Picotin Lock 22 MM Black", - "_tags": [ - "1583645" - ], - "objectID": "1583645", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-picotin-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-totes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "modern-minimalist", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "totes-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "top-handles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "totes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "picotin", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "clemence", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-bags", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic HERMES Taurillon Clemence Picotin Lock 22 MM in Black. This handbag is crafted of grained calfskin leather in black. It features looping leather top handles and gold hardware. The top is open to a black suede and leather interior.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Hermes", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Black", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1583645", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "HERMES Taurillon Clemence Picotin Lock 22 MM Black", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Loewe", + "product_name": "Jacquard Anagram Calfskin Small Cubi Bag Pink", + "condition": "Excellent", + "discounted_price": 35, + "price": 695, + "id": 10746590298415 }, { - "best_value": 0, - "categories": [ - "Black", - "Open Top", - "Top Handles", - "Leather", - "Solid Color", - "Handbags", - "Totes", - "Clemence", - "Styles", - "Quiet Luxury", - "Picotin", - "Womens", - "Hermes" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "hermes-picotin-bags", - "bags-under-1000", - "bags-on-sale", - "hermes-totes", - "modern-minimalist", - "totes-on-sale", - "top-handles", - "totes", - "picotin", - "hermes", - "clemence", - "handbag-styles", - "handbags", - "hermes-on-sale", - "hermes-bags" - ], - "description": "This is an authentic HERMES Taurillon Clemence Picotin Lock 22 MM in Black. This handbag is crafted of grained calfskin leather in black. It features looping leather top handles and gold hardware. The top is open to a black suede and leather interior.", - "discounted_price": 4270, - "discounted_tier": 1, - "filters": { - "bags": [ - "Handbags", - "Totes" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Hermes" - ], - "color": [ - "Black" - ], - "material": [ - "Leather", - "Solid Color" - ], - "bag_feature": [ - "Open Top", - "Top Handles" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "Over $2000", - "condition": [ - "Excellent" - ], - "locations": [ - "New York" - ] - }, - "following_count": 50, - "id": 1583645, - "made_available_at": 1740431270, - "price": 4495, - "priced_at": 1743023860, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/c926f8234fd422e1ab9cbdfb707d94f7.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/c926f8234fd422e1ab9cbdfb707d94f7.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/c926f8234fd422e1ab9cbdfb707d94f7.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/7dfca4d27757448895ae8afdba024ae6.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/7dfca4d27757448895ae8afdba024ae6.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/7dfca4d27757448895ae8afdba024ae6.jpg" - } - ], - "title": "HERMES Taurillon Clemence Picotin Lock 22 MM Black", - "title_without_brand": "Taurillon Clemence Picotin Lock 22 MM Black", - "_tags": [ - "1583645" - ], - "objectID": "1583645", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-picotin-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-totes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "modern-minimalist", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "totes-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "top-handles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "totes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "picotin", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "clemence", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-bags", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic HERMES Taurillon Clemence Picotin Lock 22 MM in Black. This handbag is crafted of grained calfskin leather in black. It features looping leather top handles and gold hardware. The top is open to a black suede and leather interior.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Hermes", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Black", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1583645", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "HERMES Taurillon Clemence Picotin Lock 22 MM Black", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Christian Louboutin", + "product_name": "Nappa Inflama Sab 85 Sandals 38.5 Studio Green", + "condition": "Excellent", + "discounted_price": 25, + "price": 460, + "id": 10656529285423 }, { - "best_value": 0, - "categories": [ - "Black", - "Open Top", - "Top Handles", - "Leather", - "Solid Color", - "Handbags", - "Totes", - "Clemence", - "Styles", - "Quiet Luxury", - "Picotin", - "Womens", - "Hermes" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "hermes-picotin-bags", - "bags-under-1000", - "bags-on-sale", - "hermes-totes", - "modern-minimalist", - "totes-on-sale", - "top-handles", - "totes", - "picotin", - "hermes", - "clemence", - "handbag-styles", - "handbags", - "hermes-on-sale", - "hermes-bags" - ], - "description": "This is an authentic HERMES Taurillon Clemence Picotin Lock 22 MM in Black. This handbag is crafted of grained calfskin leather in black. It features looping leather top handles and gold hardware. The top is open to a black suede and leather interior.", - "discounted_price": 4270, - "discounted_tier": 1, - "filters": { - "bags": [ - "Handbags", - "Totes" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Hermes" - ], - "color": [ - "Black" - ], - "material": [ - "Leather", - "Solid Color" - ], - "bag_feature": [ - "Open Top", - "Top Handles" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "Over $2000", - "condition": [ - "Excellent" - ], - "locations": [ - "New York" - ] - }, - "following_count": 50, - "id": 1583645, - "made_available_at": 1740431270, - "price": 4495, - "priced_at": 1743023860, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/c926f8234fd422e1ab9cbdfb707d94f7.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/c926f8234fd422e1ab9cbdfb707d94f7.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/c926f8234fd422e1ab9cbdfb707d94f7.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/7dfca4d27757448895ae8afdba024ae6.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/7dfca4d27757448895ae8afdba024ae6.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/7dfca4d27757448895ae8afdba024ae6.jpg" - } - ], - "title": "HERMES Taurillon Clemence Picotin Lock 22 MM Black", - "title_without_brand": "Taurillon Clemence Picotin Lock 22 MM Black", - "_tags": [ - "1583645" - ], - "objectID": "1583645", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-picotin-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-totes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "modern-minimalist", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "totes-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "top-handles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "totes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "picotin", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "clemence", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-bags", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic HERMES Taurillon Clemence Picotin Lock 22 MM in Black. This handbag is crafted of grained calfskin leather in black. It features looping leather top handles and gold hardware. The top is open to a black suede and leather interior.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Hermes", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Black", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1583645", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "HERMES Taurillon Clemence Picotin Lock 22 MM Black", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Chanel", + "product_name": "Calfskin Quilted Small Cambon Messenger Beige Black", + "condition": "Shows Wear", + "discounted_price": 80, + "price": 1490, + "id": 10746589675823 }, { - "best_value": 125, - "categories": [ - "Belts", - "Black", - "Browns", - "Leather", - "Accessories", - "Solid Color", - "Togo", - "Box", - "Gifts for Her", - "75/30", - "Hermes" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "belts", - "belts-on-sale", - "gifts-for-her", - "hermes", - "accessories-on-sale", - "box", - "hermes-belts", - "hermes-accessories", - "togo", - "accessories", - "hermes-on-sale" - ], - "description": "This is an authentic HERMES Box Togo 32mm Striee H Belt size 85 in Black and Gold. This stylish belt is crafted in brown textured leather and reverses to polished leather in black, and features a gold plated striated Hermes H buckle. This is an ideal belt for an accent of luxury, from Hermes!", - "discounted_price": 805, - "discounted_tier": 1, - "filters": { - "bags": [], - "jewelry": [], - "accessories": [ - "Belts" - ], - "watches": [], - "shoes": [], - "brands": [ - "Hermes" - ], - "color": [ - "Black", - "Browns" - ], - "material": [ - "Leather", - "Solid Color" - ], - "bag_feature": [], - "ring_size": [], - "watch_size": [], - "belt_size": [ - "75/30" - ], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$500-$1000", - "condition": [ - "Excellent" - ], - "locations": [ - "New York" - ] - }, - "following_count": 26, - "id": 1583732, - "made_available_at": 1740430993, - "price": 850, - "priced_at": 1743023855, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/e383485be28ac49a7260705621d4e85c.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/e383485be28ac49a7260705621d4e85c.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/e383485be28ac49a7260705621d4e85c.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/2f636c7f896e75dc68e5d7e381373409.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/2f636c7f896e75dc68e5d7e381373409.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/2f636c7f896e75dc68e5d7e381373409.jpg" - } - ], - "title": "HERMES Box Togo 32mm Striee H Belt 75 30 Black Gold", - "title_without_brand": "Box Togo 32mm Striee H Belt 75 30 Black Gold", - "_tags": [ - "1583732" - ], - "objectID": "1583732", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "belts", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "belts-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gifts-for-her", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "box", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-belts", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-accessories", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "togo", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-on-sale", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic HERMES Box Togo 32mm Striee H Belt size 85 in Black and Gold. This stylish belt is crafted in brown textured leather and reverses to polished leather in black, and features a gold plated striated Hermes H buckle. This is an ideal belt for an accent of luxury, from Hermes!", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Hermes", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Black", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Browns", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1583732", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "HERMES Box Togo 32mm Striee H Belt 75 30 Black Gold", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Christian Dior", + "product_name": "Canvas Embroidered Studded Rainbow Shoulder Strap", + "condition": "Excellent", + "discounted_price": 25, + "price": 450, + "id": 10746589511983 }, { - "best_value": 125, - "categories": [ - "Belts", - "Black", - "Browns", - "Leather", - "Accessories", - "Solid Color", - "Togo", - "Box", - "Gifts for Her", - "75/30", - "Hermes" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "belts", - "belts-on-sale", - "gifts-for-her", - "hermes", - "accessories-on-sale", - "box", - "hermes-belts", - "hermes-accessories", - "togo", - "accessories", - "hermes-on-sale" - ], - "description": "This is an authentic HERMES Box Togo 32mm Striee H Belt size 85 in Black and Gold. This stylish belt is crafted in brown textured leather and reverses to polished leather in black, and features a gold plated striated Hermes H buckle. This is an ideal belt for an accent of luxury, from Hermes!", - "discounted_price": 805, - "discounted_tier": 1, - "filters": { - "bags": [], - "jewelry": [], - "accessories": [ - "Belts" - ], - "watches": [], - "shoes": [], - "brands": [ - "Hermes" - ], - "color": [ - "Black", - "Browns" - ], - "material": [ - "Leather", - "Solid Color" - ], - "bag_feature": [], - "ring_size": [], - "watch_size": [], - "belt_size": [ - "75/30" - ], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$500-$1000", - "condition": [ - "Excellent" - ], - "locations": [ - "New York" - ] - }, - "following_count": 26, - "id": 1583732, - "made_available_at": 1740430993, - "price": 850, - "priced_at": 1743023855, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/e383485be28ac49a7260705621d4e85c.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/e383485be28ac49a7260705621d4e85c.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/e383485be28ac49a7260705621d4e85c.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/2f636c7f896e75dc68e5d7e381373409.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/2f636c7f896e75dc68e5d7e381373409.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/2f636c7f896e75dc68e5d7e381373409.jpg" - } - ], - "title": "HERMES Box Togo 32mm Striee H Belt 75 30 Black Gold", - "title_without_brand": "Box Togo 32mm Striee H Belt 75 30 Black Gold", - "_tags": [ - "1583732" - ], - "objectID": "1583732", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "belts", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "belts-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gifts-for-her", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "box", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-belts", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-accessories", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "togo", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-on-sale", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic HERMES Box Togo 32mm Striee H Belt size 85 in Black and Gold. This stylish belt is crafted in brown textured leather and reverses to polished leather in black, and features a gold plated striated Hermes H buckle. This is an ideal belt for an accent of luxury, from Hermes!", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Hermes", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Black", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Browns", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1583732", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "HERMES Box Togo 32mm Striee H Belt 75 30 Black Gold", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Chanel", + "product_name": "Calfskin Quilted Medium Boy Flap Black", + "condition": "Shows Wear", + "discounted_price": 185, + "price": 3485, + "id": 10746569949487 }, { - "best_value": 125, - "categories": [ - "Belts", - "Black", - "Browns", - "Leather", - "Accessories", - "Solid Color", - "Togo", - "Box", - "Gifts for Her", - "75/30", - "Hermes" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "belts", - "belts-on-sale", - "gifts-for-her", - "hermes", - "accessories-on-sale", - "box", - "hermes-belts", - "hermes-accessories", - "togo", - "accessories", - "hermes-on-sale" - ], - "description": "This is an authentic HERMES Box Togo 32mm Striee H Belt size 85 in Black and Gold. This stylish belt is crafted in brown textured leather and reverses to polished leather in black, and features a gold plated striated Hermes H buckle. This is an ideal belt for an accent of luxury, from Hermes!", - "discounted_price": 805, - "discounted_tier": 1, - "filters": { - "bags": [], - "jewelry": [], - "accessories": [ - "Belts" - ], - "watches": [], - "shoes": [], - "brands": [ - "Hermes" - ], - "color": [ - "Black", - "Browns" - ], - "material": [ - "Leather", - "Solid Color" - ], - "bag_feature": [], - "ring_size": [], - "watch_size": [], - "belt_size": [ - "75/30" - ], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$500-$1000", - "condition": [ - "Excellent" - ], - "locations": [ - "New York" - ] - }, - "following_count": 26, - "id": 1583732, - "made_available_at": 1740430993, - "price": 850, - "priced_at": 1743023855, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/e383485be28ac49a7260705621d4e85c.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/e383485be28ac49a7260705621d4e85c.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/e383485be28ac49a7260705621d4e85c.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/2f636c7f896e75dc68e5d7e381373409.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/2f636c7f896e75dc68e5d7e381373409.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/2f636c7f896e75dc68e5d7e381373409.jpg" - } - ], - "title": "HERMES Box Togo 32mm Striee H Belt 75 30 Black Gold", - "title_without_brand": "Box Togo 32mm Striee H Belt 75 30 Black Gold", - "_tags": [ - "1583732" - ], - "objectID": "1583732", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "belts", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "belts-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gifts-for-her", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "box", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-belts", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-accessories", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "togo", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-on-sale", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic HERMES Box Togo 32mm Striee H Belt size 85 in Black and Gold. This stylish belt is crafted in brown textured leather and reverses to polished leather in black, and features a gold plated striated Hermes H buckle. This is an ideal belt for an accent of luxury, from Hermes!", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Hermes", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Black", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Browns", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1583732", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "HERMES Box Togo 32mm Striee H Belt 75 30 Black Gold", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Prada", + "product_name": "Nappa Quilted Medium Dynamique Tote Black", + "condition": "Excellent", + "discounted_price": 120, + "price": 2290, + "id": 10746588430639 }, { - "best_value": 1285, - "categories": [ - "Browns", - "Zip Top", - "Womens", - "Leather", - "Solid Color", - "Handbags", - "Styles", - "Over 50% off Retail", - "Bottega Veneta", - "Live Shopping with FASHIONPHILE" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "bottega-veneta-sale", - "bags-under-1000", - "bags-on-sale", - "instagram-live-shopping", - "bottega-veneta", - "bottega-veneta-bags", - "50-off-retail", - "zip-top", - "handbag-styles", - "handbags", - "bottega-veneta-bags-under-1000" - ], - "description": "This is an authentic BOTTEGA VENETA Supple Calfskin BV Twist in Rust. This ultra-popular clutch is crafted of supple calfskin leather in brown. The bag features a knotted detailing at the top and gold zip closure at the base. The zipper opens to a matching leather interior with zipper pocket.", - "discounted_price": 615, - "discounted_tier": 1, - "filters": { - "bags": [ - "Handbags" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Bottega Veneta" - ], - "color": [ - "Browns" - ], - "material": [ - "Leather", - "Solid Color" - ], - "bag_feature": [ - "Zip Top" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$500-$1000", - "condition": [ - "Excellent" - ], - "locations": [ - "New York" - ] - }, - "following_count": 38, - "id": 1583838, - "made_available_at": 1740437515, - "price": 650, - "priced_at": 1743026428, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/9eed2c5c2dc403c4d7ac97b0763498cd.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/9eed2c5c2dc403c4d7ac97b0763498cd.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/9eed2c5c2dc403c4d7ac97b0763498cd.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/e170e5fa8711a7606005da9a3bc05227.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/e170e5fa8711a7606005da9a3bc05227.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/e170e5fa8711a7606005da9a3bc05227.jpg" - } - ], - "title": "BOTTEGA VENETA Supple Calfskin BV Twist Rust", - "title_without_brand": "Supple Calfskin BV Twist Rust", - "_tags": [ - "1583838" - ], - "objectID": "1583838", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bottega-veneta-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "instagram-live-shopping", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bottega-veneta", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bottega-veneta-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "50-off-retail", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "zip-top", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bottega-veneta-bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic BOTTEGA VENETA Supple Calfskin BV Twist in Rust. This ultra-popular clutch is crafted of supple calfskin leather in brown. The bag features a knotted detailing at the top and gold zip closure at the base. The zipper opens to a matching leather interior with zipper pocket.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Bottega Veneta", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Browns", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1583838", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "BOTTEGA VENETA Supple Calfskin BV Twist Rust", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Chanel", + "product_name": "Aged Calfskin Quilted Graphic Catch Shopping Bag Black", + "condition": "Excellent", + "discounted_price": 185, + "price": 3485, + "id": 10746588397871 }, { - "best_value": 1285, - "categories": [ - "Browns", - "Zip Top", - "Womens", - "Leather", - "Solid Color", - "Handbags", - "Styles", - "Over 50% off Retail", - "Bottega Veneta", - "Live Shopping with FASHIONPHILE" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "bottega-veneta-sale", - "bags-under-1000", - "bags-on-sale", - "instagram-live-shopping", - "bottega-veneta", - "bottega-veneta-bags", - "50-off-retail", - "zip-top", - "handbag-styles", - "handbags", - "bottega-veneta-bags-under-1000" - ], - "description": "This is an authentic BOTTEGA VENETA Supple Calfskin BV Twist in Rust. This ultra-popular clutch is crafted of supple calfskin leather in brown. The bag features a knotted detailing at the top and gold zip closure at the base. The zipper opens to a matching leather interior with zipper pocket.", - "discounted_price": 615, - "discounted_tier": 1, - "filters": { - "bags": [ - "Handbags" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Bottega Veneta" - ], - "color": [ - "Browns" - ], - "material": [ - "Leather", - "Solid Color" - ], - "bag_feature": [ - "Zip Top" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$500-$1000", - "condition": [ - "Excellent" - ], - "locations": [ - "New York" - ] - }, - "following_count": 38, - "id": 1583838, - "made_available_at": 1740437515, - "price": 650, - "priced_at": 1743026428, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/9eed2c5c2dc403c4d7ac97b0763498cd.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/9eed2c5c2dc403c4d7ac97b0763498cd.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/9eed2c5c2dc403c4d7ac97b0763498cd.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/e170e5fa8711a7606005da9a3bc05227.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/e170e5fa8711a7606005da9a3bc05227.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/e170e5fa8711a7606005da9a3bc05227.jpg" - } - ], - "title": "BOTTEGA VENETA Supple Calfskin BV Twist Rust", - "title_without_brand": "Supple Calfskin BV Twist Rust", - "_tags": [ - "1583838" - ], - "objectID": "1583838", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bottega-veneta-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "instagram-live-shopping", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bottega-veneta", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bottega-veneta-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "50-off-retail", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "zip-top", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bottega-veneta-bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic BOTTEGA VENETA Supple Calfskin BV Twist in Rust. This ultra-popular clutch is crafted of supple calfskin leather in brown. The bag features a knotted detailing at the top and gold zip closure at the base. The zipper opens to a matching leather interior with zipper pocket.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Bottega Veneta", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Browns", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1583838", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "BOTTEGA VENETA Supple Calfskin BV Twist Rust", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Louis Vuitton", + "product_name": "Monogram Multi Pochette Accessories Bandouliere Shoulder Strap Black", + "condition": "Excellent", + "discounted_price": 55, + "price": 1050, + "id": 10746588365103 }, { - "best_value": 1285, - "categories": [ - "Browns", - "Zip Top", - "Womens", - "Leather", - "Solid Color", - "Handbags", - "Styles", - "Over 50% off Retail", - "Bottega Veneta", - "Live Shopping with FASHIONPHILE" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "bottega-veneta-sale", - "bags-under-1000", - "bags-on-sale", - "instagram-live-shopping", - "bottega-veneta", - "bottega-veneta-bags", - "50-off-retail", - "zip-top", - "handbag-styles", - "handbags", - "bottega-veneta-bags-under-1000" - ], - "description": "This is an authentic BOTTEGA VENETA Supple Calfskin BV Twist in Rust. This ultra-popular clutch is crafted of supple calfskin leather in brown. The bag features a knotted detailing at the top and gold zip closure at the base. The zipper opens to a matching leather interior with zipper pocket.", - "discounted_price": 615, - "discounted_tier": 1, - "filters": { - "bags": [ - "Handbags" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Bottega Veneta" - ], - "color": [ - "Browns" - ], - "material": [ - "Leather", - "Solid Color" - ], - "bag_feature": [ - "Zip Top" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$500-$1000", - "condition": [ - "Excellent" - ], - "locations": [ - "New York" - ] - }, - "following_count": 38, - "id": 1583838, - "made_available_at": 1740437515, - "price": 650, - "priced_at": 1743026428, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/9eed2c5c2dc403c4d7ac97b0763498cd.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/9eed2c5c2dc403c4d7ac97b0763498cd.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/9eed2c5c2dc403c4d7ac97b0763498cd.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/e170e5fa8711a7606005da9a3bc05227.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/e170e5fa8711a7606005da9a3bc05227.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/e170e5fa8711a7606005da9a3bc05227.jpg" - } - ], - "title": "BOTTEGA VENETA Supple Calfskin BV Twist Rust", - "title_without_brand": "Supple Calfskin BV Twist Rust", - "_tags": [ - "1583838" - ], - "objectID": "1583838", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bottega-veneta-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "instagram-live-shopping", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bottega-veneta", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bottega-veneta-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "50-off-retail", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "zip-top", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bottega-veneta-bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic BOTTEGA VENETA Supple Calfskin BV Twist in Rust. This ultra-popular clutch is crafted of supple calfskin leather in brown. The bag features a knotted detailing at the top and gold zip closure at the base. The zipper opens to a matching leather interior with zipper pocket.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Bottega Veneta", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Browns", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1583838", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "BOTTEGA VENETA Supple Calfskin BV Twist Rust", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Louis Vuitton", + "product_name": "Empreinte Monogram Giant Mini By The Pool Bumbag Blue Beige", + "condition": "Excellent", + "discounted_price": 135, + "price": 2545, + "id": 10746588332335 }, { - "best_value": 2085, - "categories": [ - "Browns", - "Structured", - "Art / Scene on Exterior", - "Coated Canvas", - "Exotic Skins & Fur", - "Handbags", - "Shoulder Bags", - "Monogram", - "Styles", - "Gifts for Her", - "Gucci", - "Over 50% off Retail", - "Live Shopping with FASHIONPHILE" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoulder-bags-on-sale", - "gucci-shoulder-bags", - "gucci-bags-on-sale", - "bags-under-1000", - "gucci", - "gucci-bags", - "bags-on-sale", - "gucci-gg-supreme-monogram", - "instagram-live-shopping", - "gucci-monogram", - "gifts-for-her", - "gucci-dionysus-bags", - "50-off-retail", - "gucci-gg-supreme-monogram-bags", - "handbag-styles", - "gucci-on-sale", - "shoulder-bags", - "handbags" - ], - "description": "This is an authentic GG Supreme Monogram Kingsnake Embroidered Medium Dionysus Shoulder Ba in Beige. This chic, one of a kind shoulder bag is crafted of traditional Gucci GG monogram supreme canvas. It has a decorative feature of an embroidered king snake and a ruthenium chain shoulder strap. The front flap opens to reveal a snakeskin flap to a front pocket and a partitioned suede interior with a central zipper compartment.", - "discounted_price": 1895, - "discounted_tier": 1, - "filters": { - "bags": [ - "Handbags", - "Shoulder Bags" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Gucci" - ], - "color": [ - "Browns" - ], - "material": [ - "Art / Scene on Exterior", - "Coated Canvas", - "Exotic Skins & Fur" - ], - "bag_feature": [ - "Structured" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$1000-$2000", - "condition": [ - "Excellent" - ], - "locations": [ - "New York" - ] - }, - "following_count": 22, - "id": 1584331, - "made_available_at": 1740433692, - "price": 1995, - "priced_at": 1743023890, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/d20c5725f0c07f9ba2f4c471e495b6f4.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/d20c5725f0c07f9ba2f4c471e495b6f4.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/d20c5725f0c07f9ba2f4c471e495b6f4.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/7490f26ed7af24b2d568ea7151f111f2.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/7490f26ed7af24b2d568ea7151f111f2.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/7490f26ed7af24b2d568ea7151f111f2.jpg" - } - ], - "title": "GUCCI GG Supreme Monogram Kingsnake Embroidered Medium Dionysus Shoulder Ba Beige", - "title_without_brand": "GG Supreme Monogram Kingsnake Embroidered Medium Dionysus Shoulder Ba Beige", - "_tags": [ - "1584331" - ], - "objectID": "1584331", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-gg-supreme-monogram", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "instagram-live-shopping", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-monogram", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gifts-for-her", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-dionysus-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "50-off-retail", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-gg-supreme-monogram-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic GG Supreme Monogram Kingsnake Embroidered Medium Dionysus Shoulder Ba in Beige. This chic, one of a kind shoulder bag is crafted of traditional Gucci GG monogram supreme canvas. It has a decorative feature of an embroidered king snake and a ruthenium chain shoulder strap. The front flap opens to reveal a snakeskin flap to a front pocket and a partitioned suede interior with a central zipper compartment.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Gucci", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Browns", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Art / Scene on Exterior", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Coated Canvas", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Exotic Skins & Fur", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1584331", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "GUCCI GG Supreme Monogram Kingsnake Embroidered Medium Dionysus Shoulder Ba Beige", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Hermes", + "product_name": "Lizard Birkin 25 Violet", + "condition": "Excellent", + "discounted_price": 2150, + "price": 40850, + "id": 10746588266799 }, { - "best_value": 2085, - "categories": [ - "Browns", - "Structured", - "Art / Scene on Exterior", - "Coated Canvas", - "Exotic Skins & Fur", - "Handbags", - "Shoulder Bags", - "Monogram", - "Styles", - "Gifts for Her", - "Gucci", - "Over 50% off Retail", - "Live Shopping with FASHIONPHILE" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoulder-bags-on-sale", - "gucci-shoulder-bags", - "gucci-bags-on-sale", - "bags-under-1000", - "gucci", - "gucci-bags", - "bags-on-sale", - "gucci-gg-supreme-monogram", - "instagram-live-shopping", - "gucci-monogram", - "gifts-for-her", - "gucci-dionysus-bags", - "50-off-retail", - "gucci-gg-supreme-monogram-bags", - "handbag-styles", - "gucci-on-sale", - "shoulder-bags", - "handbags" - ], - "description": "This is an authentic GG Supreme Monogram Kingsnake Embroidered Medium Dionysus Shoulder Ba in Beige. This chic, one of a kind shoulder bag is crafted of traditional Gucci GG monogram supreme canvas. It has a decorative feature of an embroidered king snake and a ruthenium chain shoulder strap. The front flap opens to reveal a snakeskin flap to a front pocket and a partitioned suede interior with a central zipper compartment.", - "discounted_price": 1895, - "discounted_tier": 1, - "filters": { - "bags": [ - "Handbags", - "Shoulder Bags" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Gucci" - ], - "color": [ - "Browns" - ], - "material": [ - "Art / Scene on Exterior", - "Coated Canvas", - "Exotic Skins & Fur" - ], - "bag_feature": [ - "Structured" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$1000-$2000", - "condition": [ - "Excellent" - ], - "locations": [ - "New York" - ] - }, - "following_count": 22, - "id": 1584331, - "made_available_at": 1740433692, - "price": 1995, - "priced_at": 1743023890, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/d20c5725f0c07f9ba2f4c471e495b6f4.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/d20c5725f0c07f9ba2f4c471e495b6f4.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/d20c5725f0c07f9ba2f4c471e495b6f4.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/7490f26ed7af24b2d568ea7151f111f2.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/7490f26ed7af24b2d568ea7151f111f2.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/7490f26ed7af24b2d568ea7151f111f2.jpg" - } - ], - "title": "GUCCI GG Supreme Monogram Kingsnake Embroidered Medium Dionysus Shoulder Ba Beige", - "title_without_brand": "GG Supreme Monogram Kingsnake Embroidered Medium Dionysus Shoulder Ba Beige", - "_tags": [ - "1584331" - ], - "objectID": "1584331", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-gg-supreme-monogram", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "instagram-live-shopping", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-monogram", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gifts-for-her", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-dionysus-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "50-off-retail", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-gg-supreme-monogram-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic GG Supreme Monogram Kingsnake Embroidered Medium Dionysus Shoulder Ba in Beige. This chic, one of a kind shoulder bag is crafted of traditional Gucci GG monogram supreme canvas. It has a decorative feature of an embroidered king snake and a ruthenium chain shoulder strap. The front flap opens to reveal a snakeskin flap to a front pocket and a partitioned suede interior with a central zipper compartment.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Gucci", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Browns", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Art / Scene on Exterior", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Coated Canvas", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Exotic Skins & Fur", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1584331", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "GUCCI GG Supreme Monogram Kingsnake Embroidered Medium Dionysus Shoulder Ba Beige", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Saint Laurent", + "product_name": "Raffia Round Camera Bag Beige Naturel", + "condition": "Excellent", + "discounted_price": 45, + "price": 895, + "id": 10746588102959 }, { - "best_value": 2085, - "categories": [ - "Browns", - "Structured", - "Art / Scene on Exterior", - "Coated Canvas", - "Exotic Skins & Fur", - "Handbags", - "Shoulder Bags", - "Monogram", - "Styles", - "Gifts for Her", - "Gucci", - "Over 50% off Retail", - "Live Shopping with FASHIONPHILE" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoulder-bags-on-sale", - "gucci-shoulder-bags", - "gucci-bags-on-sale", - "bags-under-1000", - "gucci", - "gucci-bags", - "bags-on-sale", - "gucci-gg-supreme-monogram", - "instagram-live-shopping", - "gucci-monogram", - "gifts-for-her", - "gucci-dionysus-bags", - "50-off-retail", - "gucci-gg-supreme-monogram-bags", - "handbag-styles", - "gucci-on-sale", - "shoulder-bags", - "handbags" - ], - "description": "This is an authentic GG Supreme Monogram Kingsnake Embroidered Medium Dionysus Shoulder Ba in Beige. This chic, one of a kind shoulder bag is crafted of traditional Gucci GG monogram supreme canvas. It has a decorative feature of an embroidered king snake and a ruthenium chain shoulder strap. The front flap opens to reveal a snakeskin flap to a front pocket and a partitioned suede interior with a central zipper compartment.", - "discounted_price": 1895, - "discounted_tier": 1, - "filters": { - "bags": [ - "Handbags", - "Shoulder Bags" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Gucci" - ], - "color": [ - "Browns" - ], - "material": [ - "Art / Scene on Exterior", - "Coated Canvas", - "Exotic Skins & Fur" - ], - "bag_feature": [ - "Structured" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$1000-$2000", - "condition": [ - "Excellent" - ], - "locations": [ - "New York" - ] - }, - "following_count": 22, - "id": 1584331, - "made_available_at": 1740433692, - "price": 1995, - "priced_at": 1743023890, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/d20c5725f0c07f9ba2f4c471e495b6f4.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/d20c5725f0c07f9ba2f4c471e495b6f4.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/d20c5725f0c07f9ba2f4c471e495b6f4.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/7490f26ed7af24b2d568ea7151f111f2.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/7490f26ed7af24b2d568ea7151f111f2.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/7490f26ed7af24b2d568ea7151f111f2.jpg" - } - ], - "title": "GUCCI GG Supreme Monogram Kingsnake Embroidered Medium Dionysus Shoulder Ba Beige", - "title_without_brand": "GG Supreme Monogram Kingsnake Embroidered Medium Dionysus Shoulder Ba Beige", - "_tags": [ - "1584331" - ], - "objectID": "1584331", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-gg-supreme-monogram", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "instagram-live-shopping", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-monogram", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gifts-for-her", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-dionysus-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "50-off-retail", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-gg-supreme-monogram-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic GG Supreme Monogram Kingsnake Embroidered Medium Dionysus Shoulder Ba in Beige. This chic, one of a kind shoulder bag is crafted of traditional Gucci GG monogram supreme canvas. It has a decorative feature of an embroidered king snake and a ruthenium chain shoulder strap. The front flap opens to reveal a snakeskin flap to a front pocket and a partitioned suede interior with a central zipper compartment.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Gucci", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Browns", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Art / Scene on Exterior", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Coated Canvas", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Exotic Skins & Fur", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1584331", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "GUCCI GG Supreme Monogram Kingsnake Embroidered Medium Dionysus Shoulder Ba Beige", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Chanel", + "product_name": "Laminated Lambskin Printed CC Dad Sandals 40 Silver Multicolor", + "condition": "Excellent", + "discounted_price": 95, + "price": 1790, + "id": 10746587971887 }, { - "best_value": 115, - "categories": [ - "Womens", - "Rings", - "Sterling Silver", - "Yellow Gold", - "Fine Jewelry", - "General", - "Jewelry", - "54/7", - "David Yurman" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "yellow-gold", - "yellow-gold-rings", - "fine-jewelry", - "sterling-silver-rings", - "giftable-jewelry", - "sterling-silver", - "david-yurman-jewelry", - "jewelry-on-sale", - "rings-on-sale", - "rings", - "jewelry", - "band-rings", - "david-yurman-rings", - "yurman" - ], - "description": "This is an authentic DAVID YURMAN Sterling Silver 14K Yellow Gold Petite Infinity Band Ring 54 7. The ring is crafted of sterling silver and 14 karat yellow gold, and features a cable motif band.", - "discounted_price": 280, - "discounted_tier": 1, - "filters": { - "bags": [], - "jewelry": [ - "Rings" - ], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "David Yurman" - ], - "color": [], - "material": [ - "Sterling Silver", - "Yellow Gold" - ], - "bag_feature": [], - "ring_size": [ - "54/7" - ], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$200-$500", - "condition": [ - "Excellent" - ], - "locations": [ - "New York" - ] - }, - "following_count": 20, - "id": 1584449, - "made_available_at": 1740437569, - "price": 295, - "priced_at": 1743026428, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/3414646652c70bc590a7f41a97806342.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/3414646652c70bc590a7f41a97806342.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/3414646652c70bc590a7f41a97806342.jpg" - }, - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/6e7d3fceca7e6d672ab3c137d8ffb047.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/6e7d3fceca7e6d672ab3c137d8ffb047.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/6e7d3fceca7e6d672ab3c137d8ffb047.jpg" - } - ], - "title": "DAVID YURMAN Sterling Silver 14K Yellow Gold Petite Infinity Band Ring 54 7", - "title_without_brand": "Sterling Silver 14K Yellow Gold Petite Infinity Band Ring 54 7", - "_tags": [ - "1584449" - ], - "objectID": "1584449", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "yellow-gold", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "yellow-gold-rings", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "fine-jewelry", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "sterling-silver-rings", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "giftable-jewelry", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "sterling-silver", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "david-yurman-jewelry", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "jewelry-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "rings-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "rings", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "jewelry", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "band-rings", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "david-yurman-rings", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "yurman", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic DAVID YURMAN Sterling Silver 14K Yellow Gold Petite Infinity Band Ring 54 7. The ring is crafted of sterling silver and 14 karat yellow gold, and features a cable motif band.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "David Yurman", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Sterling Silver", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Yellow Gold", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1584449", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "DAVID YURMAN Sterling Silver 14K Yellow Gold Petite Infinity Band Ring 54 7", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Hermes", + "product_name": "Matte Niloticus Crocodile Birkin 30 Bleu De Malte", + "condition": "Shows Wear", + "discounted_price": 2255, + "price": 42890, + "id": 10746587840815 }, { - "best_value": 115, - "categories": [ - "Womens", - "Rings", - "Sterling Silver", - "Yellow Gold", - "Fine Jewelry", - "General", - "Jewelry", - "54/7", - "David Yurman" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "yellow-gold", - "yellow-gold-rings", - "fine-jewelry", - "sterling-silver-rings", - "giftable-jewelry", - "sterling-silver", - "david-yurman-jewelry", - "jewelry-on-sale", - "rings-on-sale", - "rings", - "jewelry", - "band-rings", - "david-yurman-rings", - "yurman" - ], - "description": "This is an authentic DAVID YURMAN Sterling Silver 14K Yellow Gold Petite Infinity Band Ring 54 7. The ring is crafted of sterling silver and 14 karat yellow gold, and features a cable motif band.", - "discounted_price": 280, - "discounted_tier": 1, - "filters": { - "bags": [], - "jewelry": [ - "Rings" - ], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "David Yurman" - ], - "color": [], - "material": [ - "Sterling Silver", - "Yellow Gold" - ], - "bag_feature": [], - "ring_size": [ - "54/7" - ], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$200-$500", - "condition": [ - "Excellent" - ], - "locations": [ - "New York" - ] - }, - "following_count": 20, - "id": 1584449, - "made_available_at": 1740437569, - "price": 295, - "priced_at": 1743026428, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/3414646652c70bc590a7f41a97806342.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/3414646652c70bc590a7f41a97806342.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/3414646652c70bc590a7f41a97806342.jpg" - }, - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/6e7d3fceca7e6d672ab3c137d8ffb047.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/6e7d3fceca7e6d672ab3c137d8ffb047.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/6e7d3fceca7e6d672ab3c137d8ffb047.jpg" - } - ], - "title": "DAVID YURMAN Sterling Silver 14K Yellow Gold Petite Infinity Band Ring 54 7", - "title_without_brand": "Sterling Silver 14K Yellow Gold Petite Infinity Band Ring 54 7", - "_tags": [ - "1584449" - ], - "objectID": "1584449", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "yellow-gold", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "yellow-gold-rings", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "fine-jewelry", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "sterling-silver-rings", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "giftable-jewelry", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "sterling-silver", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "david-yurman-jewelry", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "jewelry-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "rings-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "rings", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "jewelry", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "band-rings", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "david-yurman-rings", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "yurman", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic DAVID YURMAN Sterling Silver 14K Yellow Gold Petite Infinity Band Ring 54 7. The ring is crafted of sterling silver and 14 karat yellow gold, and features a cable motif band.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "David Yurman", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Sterling Silver", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Yellow Gold", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1584449", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "DAVID YURMAN Sterling Silver 14K Yellow Gold Petite Infinity Band Ring 54 7", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Gucci", + "product_name": "Guccissima Margaux Calfskin Metal Bar Continental Flap Wallet Sasso", + "condition": "Shows Wear", + "discounted_price": 15, + "price": 250, + "id": 10746587775279 }, { - "best_value": 115, - "categories": [ - "Womens", - "Rings", - "Sterling Silver", - "Yellow Gold", - "Fine Jewelry", - "General", - "Jewelry", - "54/7", - "David Yurman" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "yellow-gold", - "yellow-gold-rings", - "fine-jewelry", - "sterling-silver-rings", - "giftable-jewelry", - "sterling-silver", - "david-yurman-jewelry", - "jewelry-on-sale", - "rings-on-sale", - "rings", - "jewelry", - "band-rings", - "david-yurman-rings", - "yurman" - ], - "description": "This is an authentic DAVID YURMAN Sterling Silver 14K Yellow Gold Petite Infinity Band Ring 54 7. The ring is crafted of sterling silver and 14 karat yellow gold, and features a cable motif band.", - "discounted_price": 280, - "discounted_tier": 1, - "filters": { - "bags": [], - "jewelry": [ - "Rings" - ], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "David Yurman" - ], - "color": [], - "material": [ - "Sterling Silver", - "Yellow Gold" - ], - "bag_feature": [], - "ring_size": [ - "54/7" - ], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$200-$500", - "condition": [ - "Excellent" - ], - "locations": [ - "New York" - ] - }, - "following_count": 20, - "id": 1584449, - "made_available_at": 1740437569, - "price": 295, - "priced_at": 1743026428, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/3414646652c70bc590a7f41a97806342.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/3414646652c70bc590a7f41a97806342.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/3414646652c70bc590a7f41a97806342.jpg" - }, - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/6e7d3fceca7e6d672ab3c137d8ffb047.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/6e7d3fceca7e6d672ab3c137d8ffb047.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/6e7d3fceca7e6d672ab3c137d8ffb047.jpg" - } - ], - "title": "DAVID YURMAN Sterling Silver 14K Yellow Gold Petite Infinity Band Ring 54 7", - "title_without_brand": "Sterling Silver 14K Yellow Gold Petite Infinity Band Ring 54 7", - "_tags": [ - "1584449" - ], - "objectID": "1584449", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "yellow-gold", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "yellow-gold-rings", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "fine-jewelry", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "sterling-silver-rings", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "giftable-jewelry", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "sterling-silver", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "david-yurman-jewelry", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "jewelry-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "rings-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "rings", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "jewelry", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "band-rings", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "david-yurman-rings", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "yurman", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic DAVID YURMAN Sterling Silver 14K Yellow Gold Petite Infinity Band Ring 54 7. The ring is crafted of sterling silver and 14 karat yellow gold, and features a cable motif band.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "David Yurman", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Sterling Silver", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Yellow Gold", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1584449", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "DAVID YURMAN Sterling Silver 14K Yellow Gold Petite Infinity Band Ring 54 7", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Chanel", + "product_name": "Crumpled Shiny Lambskin Velcro Dad Sandals 40 Beige", + "condition": "Excellent", + "discounted_price": 100, + "price": 1890, + "id": 10746587709743 }, { - "best_value": 0, - "categories": [ - "Black", - "Structured", - "Exotic Skins & Fur", - "Solid Color", - "Crossbody", - "Handbags", - "Shoulder Bags", - "Styles", - "Hard-to-Find", - "Editor's Picks", - "Off-Duty Updates", - "Constance", - "Hermes" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "hard-to-find", - "shoulder-bags-on-sale", - "bags-under-1000", - "casual", - "hermes-constance", - "bags-on-sale", - "constance", - "hermes-crossbody-bags", - "hermes", - "most-wanted", - "crossbody-bags-on-sale", - "hermes-exotics", - "hermes-constance-bags", - "handbag-styles", - "shoulder-bags", - "handbags", - "cross-body", - "hermes-on-sale", - "hermes-bags" - ], - "description": "This is an authentic HERMES Ostrich Constance 24 in Bleu Iris. This stylish shoulder bag is finely crafted of navy blue ostrich leather. The bag features a long shoulder strap with palladium-plated hardware, including an H buckle at the flap. This opens to a partitioned smooth leather interior with a zipper and patch pockets.", - "discounted_price": 18045, - "discounted_tier": 1, - "filters": { - "bags": [ - "Crossbody", - "Handbags", - "Shoulder Bags" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Hermes" - ], - "color": [ - "Black" - ], - "material": [ - "Exotic Skins & Fur", - "Solid Color" - ], - "bag_feature": [ - "Structured" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "Over $2000", - "condition": [ - "Shows Wear" - ], - "locations": [ - "New York" - ] - }, - "following_count": 45, - "id": 1584468, - "made_available_at": 1740435379, - "price": 18995, - "priced_at": 1743026409, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/b9a4fc8024111c8cced03085cb9254da.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/b9a4fc8024111c8cced03085cb9254da.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/b9a4fc8024111c8cced03085cb9254da.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/a87c2c8617c2340e26f05aa25e307d8c.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/a87c2c8617c2340e26f05aa25e307d8c.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/a87c2c8617c2340e26f05aa25e307d8c.jpg" - } - ], - "title": "HERMES Ostrich Constance 24 Bleu Iris", - "title_without_brand": "Ostrich Constance 24 Bleu Iris", - "_tags": [ - "1584468" - ], - "objectID": "1584468", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hard-to-find", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "casual", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-constance", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "constance", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-crossbody-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "most-wanted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "crossbody-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-exotics", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-constance-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "cross-body", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-bags", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic HERMES Ostrich Constance 24 in Bleu Iris. This stylish shoulder bag is finely crafted of navy blue ostrich leather. The bag features a long shoulder strap with palladium-plated hardware, including an H buckle at the flap. This opens to a partitioned smooth leather interior with a zipper and patch pockets.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Hermes", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Black", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Exotic Skins & Fur", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1584468", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "HERMES Ostrich Constance 24 Bleu Iris", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Bottega Veneta", + "product_name": "Nappa Fringe Intrecciato Knot Clutch Moro", + "condition": "Excellent", + "discounted_price": 75, + "price": 1405, + "id": 10677253046575 }, { - "best_value": 0, - "categories": [ - "Black", - "Structured", - "Exotic Skins & Fur", - "Solid Color", - "Crossbody", - "Handbags", - "Shoulder Bags", - "Styles", - "Hard-to-Find", - "Editor's Picks", - "Off-Duty Updates", - "Constance", - "Hermes" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "hard-to-find", - "shoulder-bags-on-sale", - "bags-under-1000", - "casual", - "hermes-constance", - "bags-on-sale", - "constance", - "hermes-crossbody-bags", - "hermes", - "most-wanted", - "crossbody-bags-on-sale", - "hermes-exotics", - "hermes-constance-bags", - "handbag-styles", - "shoulder-bags", - "handbags", - "cross-body", - "hermes-on-sale", - "hermes-bags" - ], - "description": "This is an authentic HERMES Ostrich Constance 24 in Bleu Iris. This stylish shoulder bag is finely crafted of navy blue ostrich leather. The bag features a long shoulder strap with palladium-plated hardware, including an H buckle at the flap. This opens to a partitioned smooth leather interior with a zipper and patch pockets.", - "discounted_price": 18045, - "discounted_tier": 1, - "filters": { - "bags": [ - "Crossbody", - "Handbags", - "Shoulder Bags" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Hermes" - ], - "color": [ - "Black" - ], - "material": [ - "Exotic Skins & Fur", - "Solid Color" - ], - "bag_feature": [ - "Structured" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "Over $2000", - "condition": [ - "Shows Wear" - ], - "locations": [ - "New York" - ] - }, - "following_count": 45, - "id": 1584468, - "made_available_at": 1740435379, - "price": 18995, - "priced_at": 1743026409, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/b9a4fc8024111c8cced03085cb9254da.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/b9a4fc8024111c8cced03085cb9254da.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/b9a4fc8024111c8cced03085cb9254da.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/a87c2c8617c2340e26f05aa25e307d8c.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/a87c2c8617c2340e26f05aa25e307d8c.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/a87c2c8617c2340e26f05aa25e307d8c.jpg" - } - ], - "title": "HERMES Ostrich Constance 24 Bleu Iris", - "title_without_brand": "Ostrich Constance 24 Bleu Iris", - "_tags": [ - "1584468" - ], - "objectID": "1584468", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hard-to-find", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "casual", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-constance", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "constance", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-crossbody-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "most-wanted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "crossbody-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-exotics", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-constance-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "cross-body", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-bags", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic HERMES Ostrich Constance 24 in Bleu Iris. This stylish shoulder bag is finely crafted of navy blue ostrich leather. The bag features a long shoulder strap with palladium-plated hardware, including an H buckle at the flap. This opens to a partitioned smooth leather interior with a zipper and patch pockets.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Hermes", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Black", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Exotic Skins & Fur", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1584468", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "HERMES Ostrich Constance 24 Bleu Iris", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Hermes", + "product_name": "Evercolor Ultrapla 24 Bag Vert Amande", + "condition": "Excellent", + "discounted_price": 145, + "price": 2790, + "id": 10746563952943 }, { - "best_value": 0, - "categories": [ - "Black", - "Structured", - "Exotic Skins & Fur", - "Solid Color", - "Crossbody", - "Handbags", - "Shoulder Bags", - "Styles", - "Hard-to-Find", - "Editor's Picks", - "Off-Duty Updates", - "Constance", - "Hermes" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "hard-to-find", - "shoulder-bags-on-sale", - "bags-under-1000", - "casual", - "hermes-constance", - "bags-on-sale", - "constance", - "hermes-crossbody-bags", - "hermes", - "most-wanted", - "crossbody-bags-on-sale", - "hermes-exotics", - "hermes-constance-bags", - "handbag-styles", - "shoulder-bags", - "handbags", - "cross-body", - "hermes-on-sale", - "hermes-bags" - ], - "description": "This is an authentic HERMES Ostrich Constance 24 in Bleu Iris. This stylish shoulder bag is finely crafted of navy blue ostrich leather. The bag features a long shoulder strap with palladium-plated hardware, including an H buckle at the flap. This opens to a partitioned smooth leather interior with a zipper and patch pockets.", - "discounted_price": 18045, - "discounted_tier": 1, - "filters": { - "bags": [ - "Crossbody", - "Handbags", - "Shoulder Bags" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Hermes" - ], - "color": [ - "Black" - ], - "material": [ - "Exotic Skins & Fur", - "Solid Color" - ], - "bag_feature": [ - "Structured" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "Over $2000", - "condition": [ - "Shows Wear" - ], - "locations": [ - "New York" - ] - }, - "following_count": 45, - "id": 1584468, - "made_available_at": 1740435379, - "price": 18995, - "priced_at": 1743026409, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/b9a4fc8024111c8cced03085cb9254da.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/b9a4fc8024111c8cced03085cb9254da.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/b9a4fc8024111c8cced03085cb9254da.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/a87c2c8617c2340e26f05aa25e307d8c.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/a87c2c8617c2340e26f05aa25e307d8c.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/a87c2c8617c2340e26f05aa25e307d8c.jpg" - } - ], - "title": "HERMES Ostrich Constance 24 Bleu Iris", - "title_without_brand": "Ostrich Constance 24 Bleu Iris", - "_tags": [ - "1584468" - ], - "objectID": "1584468", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hard-to-find", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "casual", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-constance", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "constance", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-crossbody-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "most-wanted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "crossbody-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-exotics", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-constance-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "cross-body", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-bags", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic HERMES Ostrich Constance 24 in Bleu Iris. This stylish shoulder bag is finely crafted of navy blue ostrich leather. The bag features a long shoulder strap with palladium-plated hardware, including an H buckle at the flap. This opens to a partitioned smooth leather interior with a zipper and patch pockets.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Hermes", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Black", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Exotic Skins & Fur", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1584468", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "HERMES Ostrich Constance 24 Bleu Iris", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Louis Vuitton", + "product_name": "Epi Alma PM Castillan Red", + "condition": "Shows Wear", + "discounted_price": 40, + "price": 750, + "id": 10746563756335 }, { - "best_value": 4360, - "categories": [ - "Blues", - "Structured", - "Womens", - "Leather", - "Solid Color", - "Crossbody", - "Handbags", - "Shoulder Bags", - "Boy Bag", - "Styles", - "Over 50% off Retail", - "Chanel" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoulder-bags-on-sale", - "chanel-on-sale", - "chanel-boy-bags", - "bags-under-1000", - "chanel-shoulder-bags", - "bags-on-sale", - "chanel", - "chanel-double-flap-bags", - "50-off-retail", - "crossbody-bags-on-sale", - "boy-bag", - "handbag-styles", - "chanel-bags", - "chanel-crossbody-bags", - "shoulder-bags", - "handbags", - "cross-body" - ], - "description": "This is an authentic CHANEL Calfskin Double Stitch New Medium Boy Flap in Navy Blue. This chic cross-body bag is crafted of calfskin leather with a double diamond stitch and a peripheral framed quilting. The bag features a ruthenium chain-link shoulder strap with a shoulder pad and a facing ruthenium mademoiselle CC press lock. This bag opens to a grey fabric interior with a zipper pocket.", - "discounted_price": 2940, - "discounted_tier": 1, - "filters": { - "bags": [ - "Crossbody", - "Handbags", - "Shoulder Bags" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Chanel" - ], - "color": [ - "Blues" - ], - "material": [ - "Leather", - "Solid Color" - ], - "bag_feature": [ - "Structured" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "Over $2000", - "condition": [ - "Shows Wear" - ], - "locations": [ - "New York" - ] - }, - "following_count": 30, - "id": 1584709, - "made_available_at": 1740433742, - "price": 3095, - "priced_at": 1743023890, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/6659298ce30f94e6584196e21af46f3b.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/6659298ce30f94e6584196e21af46f3b.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/6659298ce30f94e6584196e21af46f3b.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/d5059adaa7c6c5d5d9a1705fc9fc940e.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/d5059adaa7c6c5d5d9a1705fc9fc940e.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/d5059adaa7c6c5d5d9a1705fc9fc940e.jpg" - } - ], - "title": "CHANEL Calfskin Double Stitch New Medium Boy Flap Navy Blue", - "title_without_brand": "Calfskin Double Stitch New Medium Boy Flap Navy Blue", - "_tags": [ - "1584709" - ], - "objectID": "1584709", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-boy-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-double-flap-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "50-off-retail", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "crossbody-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "boy-bag", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-crossbody-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "cross-body", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic CHANEL Calfskin Double Stitch New Medium Boy Flap in Navy Blue. This chic cross-body bag is crafted of calfskin leather with a double diamond stitch and a peripheral framed quilting. The bag features a ruthenium chain-link shoulder strap with a shoulder pad and a facing ruthenium mademoiselle CC press lock. This bag opens to a grey fabric interior with a zipper pocket.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Chanel", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Blues", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1584709", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "CHANEL Calfskin Double Stitch New Medium Boy Flap Navy Blue", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Chanel", + "product_name": "Calfskin Pearl Chevron Medium Boy Flap Black", + "condition": "Shows Wear", + "discounted_price": 260, + "price": 4985, + "id": 10746563494191 }, { - "best_value": 4360, - "categories": [ - "Blues", - "Structured", - "Womens", - "Leather", - "Solid Color", - "Crossbody", - "Handbags", - "Shoulder Bags", - "Boy Bag", - "Styles", - "Over 50% off Retail", - "Chanel" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoulder-bags-on-sale", - "chanel-on-sale", - "chanel-boy-bags", - "bags-under-1000", - "chanel-shoulder-bags", - "bags-on-sale", - "chanel", - "chanel-double-flap-bags", - "50-off-retail", - "crossbody-bags-on-sale", - "boy-bag", - "handbag-styles", - "chanel-bags", - "chanel-crossbody-bags", - "shoulder-bags", - "handbags", - "cross-body" - ], - "description": "This is an authentic CHANEL Calfskin Double Stitch New Medium Boy Flap in Navy Blue. This chic cross-body bag is crafted of calfskin leather with a double diamond stitch and a peripheral framed quilting. The bag features a ruthenium chain-link shoulder strap with a shoulder pad and a facing ruthenium mademoiselle CC press lock. This bag opens to a grey fabric interior with a zipper pocket.", - "discounted_price": 2940, - "discounted_tier": 1, - "filters": { - "bags": [ - "Crossbody", - "Handbags", - "Shoulder Bags" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Chanel" - ], - "color": [ - "Blues" - ], - "material": [ - "Leather", - "Solid Color" - ], - "bag_feature": [ - "Structured" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "Over $2000", - "condition": [ - "Shows Wear" - ], - "locations": [ - "New York" - ] - }, - "following_count": 30, - "id": 1584709, - "made_available_at": 1740433742, - "price": 3095, - "priced_at": 1743023890, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/6659298ce30f94e6584196e21af46f3b.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/6659298ce30f94e6584196e21af46f3b.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/6659298ce30f94e6584196e21af46f3b.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/d5059adaa7c6c5d5d9a1705fc9fc940e.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/d5059adaa7c6c5d5d9a1705fc9fc940e.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/d5059adaa7c6c5d5d9a1705fc9fc940e.jpg" - } - ], - "title": "CHANEL Calfskin Double Stitch New Medium Boy Flap Navy Blue", - "title_without_brand": "Calfskin Double Stitch New Medium Boy Flap Navy Blue", - "_tags": [ - "1584709" - ], - "objectID": "1584709", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-boy-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-double-flap-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "50-off-retail", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "crossbody-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "boy-bag", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-crossbody-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "cross-body", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic CHANEL Calfskin Double Stitch New Medium Boy Flap in Navy Blue. This chic cross-body bag is crafted of calfskin leather with a double diamond stitch and a peripheral framed quilting. The bag features a ruthenium chain-link shoulder strap with a shoulder pad and a facing ruthenium mademoiselle CC press lock. This bag opens to a grey fabric interior with a zipper pocket.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Chanel", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Blues", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1584709", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "CHANEL Calfskin Double Stitch New Medium Boy Flap Navy Blue", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Louis Vuitton", + "product_name": "Taigarama Outdoor Slingbag Black", + "condition": "Excellent", + "discounted_price": 90, + "price": 1690, + "id": 10746562576687 }, { - "best_value": 4360, - "categories": [ - "Blues", - "Structured", - "Womens", - "Leather", - "Solid Color", - "Crossbody", - "Handbags", - "Shoulder Bags", - "Boy Bag", - "Styles", - "Over 50% off Retail", - "Chanel" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoulder-bags-on-sale", - "chanel-on-sale", - "chanel-boy-bags", - "bags-under-1000", - "chanel-shoulder-bags", - "bags-on-sale", - "chanel", - "chanel-double-flap-bags", - "50-off-retail", - "crossbody-bags-on-sale", - "boy-bag", - "handbag-styles", - "chanel-bags", - "chanel-crossbody-bags", - "shoulder-bags", - "handbags", - "cross-body" - ], - "description": "This is an authentic CHANEL Calfskin Double Stitch New Medium Boy Flap in Navy Blue. This chic cross-body bag is crafted of calfskin leather with a double diamond stitch and a peripheral framed quilting. The bag features a ruthenium chain-link shoulder strap with a shoulder pad and a facing ruthenium mademoiselle CC press lock. This bag opens to a grey fabric interior with a zipper pocket.", - "discounted_price": 2940, - "discounted_tier": 1, - "filters": { - "bags": [ - "Crossbody", - "Handbags", - "Shoulder Bags" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Chanel" - ], - "color": [ - "Blues" - ], - "material": [ - "Leather", - "Solid Color" - ], - "bag_feature": [ - "Structured" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "Over $2000", - "condition": [ - "Shows Wear" - ], - "locations": [ - "New York" - ] - }, - "following_count": 30, - "id": 1584709, - "made_available_at": 1740433742, - "price": 3095, - "priced_at": 1743023890, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/6659298ce30f94e6584196e21af46f3b.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/6659298ce30f94e6584196e21af46f3b.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/6659298ce30f94e6584196e21af46f3b.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/d5059adaa7c6c5d5d9a1705fc9fc940e.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/d5059adaa7c6c5d5d9a1705fc9fc940e.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/d5059adaa7c6c5d5d9a1705fc9fc940e.jpg" - } - ], - "title": "CHANEL Calfskin Double Stitch New Medium Boy Flap Navy Blue", - "title_without_brand": "Calfskin Double Stitch New Medium Boy Flap Navy Blue", - "_tags": [ - "1584709" - ], - "objectID": "1584709", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-boy-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-double-flap-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "50-off-retail", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "crossbody-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "boy-bag", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-crossbody-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "cross-body", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic CHANEL Calfskin Double Stitch New Medium Boy Flap in Navy Blue. This chic cross-body bag is crafted of calfskin leather with a double diamond stitch and a peripheral framed quilting. The bag features a ruthenium chain-link shoulder strap with a shoulder pad and a facing ruthenium mademoiselle CC press lock. This bag opens to a grey fabric interior with a zipper pocket.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Chanel", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Blues", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1584709", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "CHANEL Calfskin Double Stitch New Medium Boy Flap Navy Blue", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "MCM", + "product_name": "Visetos Side Stud X-Mini Stark Backpack Cognac", + "condition": "Excellent", + "discounted_price": 20, + "price": 425, + "id": 10746562150703 }, { - "best_value": 7365, - "categories": [ - "Black", - "Structured", - "Womens", - "Leather", - "Solid Color", - "Handbags", - "Shoulder Bags", - "Caviar", - "Jumbo & Maxi", - "General", - "Styles", - "Oversized Bags", - "Friends & Family Event", - "Classic & Timeless", - "Emma Roberts' FASHIONPHILE Favorites", - "Chanel", - "Over 50% off Retail" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoulder-bags-on-sale", - "chanel-on-sale", - "oversized-bags", - "jumbo-maxi", - "black-chanel-bags", - "bags-under-1000", - "emma-roberts-favorites", - "caviar", - "chanel-shoulder-bags", - "classic-accessories", - "bags-on-sale", - "chanel", - "chanel-double-flap-bags", - "50-off-retail", - "handbag-styles", - "chanel-bags", - "friends-and-family-event", - "shoulder-bags", - "handbags" - ], - "description": "This is an authentic CHANEL Caviar Quilted Maxi Double Flap in Black. This stylish shoulder bag is crafted of luxurious caviar textured leather in black. It features leather threaded polished gold chain-link shoulder straps, a rear patch pocket, and a front flap with a gold CC turn lock. The flap opens to a burgundy leather interior with patch pockets.\n", - "discounted_price": 4935, - "discounted_tier": 1, - "filters": { - "bags": [ - "Handbags", - "Shoulder Bags" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Chanel" - ], - "color": [ - "Black" - ], - "material": [ - "Leather", - "Solid Color" - ], - "bag_feature": [ - "Structured" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "Over $2000", - "condition": [ - "Shows Wear" - ], - "locations": [ - "New York" - ] - }, - "following_count": 32, - "id": 1584827, - "made_available_at": 1740435527, - "price": 5195, - "priced_at": 1743026409, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/69b35bb4d723a72f06f48cbea3279904.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/69b35bb4d723a72f06f48cbea3279904.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/69b35bb4d723a72f06f48cbea3279904.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/10b377760053f307b5ca7e92cb80082a.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/10b377760053f307b5ca7e92cb80082a.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/10b377760053f307b5ca7e92cb80082a.jpg" - } - ], - "title": "CHANEL Caviar Quilted Maxi Double Flap Black", - "title_without_brand": "Caviar Quilted Maxi Double Flap Black", - "_tags": [ - "1584827" - ], - "objectID": "1584827", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "oversized-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "jumbo-maxi", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "black-chanel-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "emma-roberts-favorites", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "caviar", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "classic-accessories", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-double-flap-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "50-off-retail", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "friends-and-family-event", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic CHANEL Caviar Quilted Maxi Double Flap in Black. This stylish shoulder bag is crafted of luxurious caviar textured leather in black. It features leather threaded polished gold chain-link shoulder straps, a rear patch pocket, and a front flap with a gold CC turn lock. The flap opens to a burgundy leather interior with patch pockets.\n", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Chanel", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Black", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1584827", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "CHANEL Caviar Quilted Maxi Double Flap Black", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Hermes", + "product_name": "Canvas Small Bride-A-Brac Pouch Natural", + "condition": "Excellent", + "discounted_price": 45, + "price": 850, + "id": 10746562085167 }, { - "best_value": 7365, - "categories": [ - "Black", - "Structured", - "Womens", - "Leather", - "Solid Color", - "Handbags", - "Shoulder Bags", - "Caviar", - "Jumbo & Maxi", - "General", - "Styles", - "Oversized Bags", - "Friends & Family Event", - "Classic & Timeless", - "Emma Roberts' FASHIONPHILE Favorites", - "Chanel", - "Over 50% off Retail" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoulder-bags-on-sale", - "chanel-on-sale", - "oversized-bags", - "jumbo-maxi", - "black-chanel-bags", - "bags-under-1000", - "emma-roberts-favorites", - "caviar", - "chanel-shoulder-bags", - "classic-accessories", - "bags-on-sale", - "chanel", - "chanel-double-flap-bags", - "50-off-retail", - "handbag-styles", - "chanel-bags", - "friends-and-family-event", - "shoulder-bags", - "handbags" - ], - "description": "This is an authentic CHANEL Caviar Quilted Maxi Double Flap in Black. This stylish shoulder bag is crafted of luxurious caviar textured leather in black. It features leather threaded polished gold chain-link shoulder straps, a rear patch pocket, and a front flap with a gold CC turn lock. The flap opens to a burgundy leather interior with patch pockets.\n", - "discounted_price": 4935, - "discounted_tier": 1, - "filters": { - "bags": [ - "Handbags", - "Shoulder Bags" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Chanel" - ], - "color": [ - "Black" - ], - "material": [ - "Leather", - "Solid Color" - ], - "bag_feature": [ - "Structured" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "Over $2000", - "condition": [ - "Shows Wear" - ], - "locations": [ - "New York" - ] - }, - "following_count": 32, - "id": 1584827, - "made_available_at": 1740435527, - "price": 5195, - "priced_at": 1743026409, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/69b35bb4d723a72f06f48cbea3279904.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/69b35bb4d723a72f06f48cbea3279904.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/69b35bb4d723a72f06f48cbea3279904.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/10b377760053f307b5ca7e92cb80082a.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/10b377760053f307b5ca7e92cb80082a.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/10b377760053f307b5ca7e92cb80082a.jpg" - } - ], - "title": "CHANEL Caviar Quilted Maxi Double Flap Black", - "title_without_brand": "Caviar Quilted Maxi Double Flap Black", - "_tags": [ - "1584827" - ], - "objectID": "1584827", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "oversized-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "jumbo-maxi", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "black-chanel-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "emma-roberts-favorites", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "caviar", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "classic-accessories", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-double-flap-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "50-off-retail", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "friends-and-family-event", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic CHANEL Caviar Quilted Maxi Double Flap in Black. This stylish shoulder bag is crafted of luxurious caviar textured leather in black. It features leather threaded polished gold chain-link shoulder straps, a rear patch pocket, and a front flap with a gold CC turn lock. The flap opens to a burgundy leather interior with patch pockets.\n", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Chanel", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Black", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1584827", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "CHANEL Caviar Quilted Maxi Double Flap Black", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Christian Dior", + "product_name": "Patent Cannage Lady Dior Card Holder Black", + "condition": "New", + "discounted_price": 20, + "price": 420, + "id": 10727649804591 }, { - "best_value": 7365, - "categories": [ - "Black", - "Structured", - "Womens", - "Leather", - "Solid Color", - "Handbags", - "Shoulder Bags", - "Caviar", - "Jumbo & Maxi", - "General", - "Styles", - "Oversized Bags", - "Friends & Family Event", - "Classic & Timeless", - "Emma Roberts' FASHIONPHILE Favorites", - "Chanel", - "Over 50% off Retail" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoulder-bags-on-sale", - "chanel-on-sale", - "oversized-bags", - "jumbo-maxi", - "black-chanel-bags", - "bags-under-1000", - "emma-roberts-favorites", - "caviar", - "chanel-shoulder-bags", - "classic-accessories", - "bags-on-sale", - "chanel", - "chanel-double-flap-bags", - "50-off-retail", - "handbag-styles", - "chanel-bags", - "friends-and-family-event", - "shoulder-bags", - "handbags" - ], - "description": "This is an authentic CHANEL Caviar Quilted Maxi Double Flap in Black. This stylish shoulder bag is crafted of luxurious caviar textured leather in black. It features leather threaded polished gold chain-link shoulder straps, a rear patch pocket, and a front flap with a gold CC turn lock. The flap opens to a burgundy leather interior with patch pockets.\n", - "discounted_price": 4935, - "discounted_tier": 1, - "filters": { - "bags": [ - "Handbags", - "Shoulder Bags" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Chanel" - ], - "color": [ - "Black" - ], - "material": [ - "Leather", - "Solid Color" - ], - "bag_feature": [ - "Structured" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "Over $2000", - "condition": [ - "Shows Wear" - ], - "locations": [ - "New York" - ] - }, - "following_count": 32, - "id": 1584827, - "made_available_at": 1740435527, - "price": 5195, - "priced_at": 1743026409, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/69b35bb4d723a72f06f48cbea3279904.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/69b35bb4d723a72f06f48cbea3279904.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/69b35bb4d723a72f06f48cbea3279904.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/10b377760053f307b5ca7e92cb80082a.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/10b377760053f307b5ca7e92cb80082a.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/10b377760053f307b5ca7e92cb80082a.jpg" - } - ], - "title": "CHANEL Caviar Quilted Maxi Double Flap Black", - "title_without_brand": "Caviar Quilted Maxi Double Flap Black", - "_tags": [ - "1584827" - ], - "objectID": "1584827", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "oversized-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "jumbo-maxi", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "black-chanel-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "emma-roberts-favorites", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "caviar", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "classic-accessories", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-double-flap-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "50-off-retail", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "friends-and-family-event", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic CHANEL Caviar Quilted Maxi Double Flap in Black. This stylish shoulder bag is crafted of luxurious caviar textured leather in black. It features leather threaded polished gold chain-link shoulder straps, a rear patch pocket, and a front flap with a gold CC turn lock. The flap opens to a burgundy leather interior with patch pockets.\n", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Chanel", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Black", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1584827", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "CHANEL Caviar Quilted Maxi Double Flap Black", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Celine", + "product_name": "Shiny Calfskin Teen Triomphe Terracotta", + "condition": "Excellent", + "discounted_price": 125, + "price": 2390, + "id": 10746561560879 }, { - "best_value": 0, - "categories": [ - "Black", - "Structured", - "Zip Top", - "Mens", - "Womens", - "Coated Canvas", - "Leather", - "Handbags", - "Men's Bags", - "Shoulder Bags", - "Travel & Luggage", - "Keepall", - "Monogram", - "General", - "Styles", - "Weekend Getaway", - "Gifts for Him", - "Top Designers", - "Louis Vuitton" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoulder-bags-on-sale", - "manbags", - "bags-under-1000", - "louis-vuitton-shoulder-bags", - "mens", - "travel-luggage", - "bags-on-sale", - "louis-vuitton-on-sale", - "weekend-getaway", - "louis-vuitton-travel-luggage", - "louis-vuitton-monogram", - "louis-vuitton", - "top-designers", - "gifts-for-him", - "zip-top", - "louis-vuitton-bags", - "handbag-styles", - "shoulder-bags", - "handbags", - "louis-vuitton-keepall-bags", - "keepall" - ], - "description": "This is an authentic LOUIS VUITTON Reverse Monogram Eclipse Keepall Bandouliere 25. This bag is crafted of classic and reverse monogram coated canvas in black and grey. It features top handles and a black nylon shoulder strap with silver hardware. The top zipper opens to a black fabric interior with a pocket.", - "discounted_price": 2370, - "discounted_tier": 1, - "filters": { - "bags": [ - "Handbags", - "Men's Bags", - "Shoulder Bags", - "Travel & Luggage" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Louis Vuitton" - ], - "color": [ - "Black" - ], - "material": [ - "Coated Canvas", - "Leather" - ], - "bag_feature": [ - "Structured", - "Zip Top" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "Over $2000", - "condition": [ - "Excellent" - ], - "locations": [ - "New York" - ] - }, - "following_count": 73, - "id": 1584866, - "made_available_at": 1740437574, - "price": 2495, - "priced_at": 1743026429, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/d3ee7623110eac05f68cbb62b1590ece.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/d3ee7623110eac05f68cbb62b1590ece.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/d3ee7623110eac05f68cbb62b1590ece.jpg" - }, - { - "order": 2, - "path": "/thumb/fb0c1a3511cd6aa055a36968f70bcc96/cfdb26929e9fc368977f7239068d301c.jpg", - "thumb": "/thumb/fb0c1a3511cd6aa055a36968f70bcc96/cfdb26929e9fc368977f7239068d301c.jpg", - "tiny": "/tiny/fb0c1a3511cd6aa055a36968f70bcc96/cfdb26929e9fc368977f7239068d301c.jpg" - } - ], - "title": "LOUIS VUITTON Reverse Monogram Eclipse Keepall Bandouliere 25", - "title_without_brand": "Reverse Monogram Eclipse Keepall Bandouliere 25", - "_tags": [ - "1584866" - ], - "objectID": "1584866", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "manbags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "mens", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "travel-luggage", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "weekend-getaway", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-travel-luggage", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-monogram", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "top-designers", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gifts-for-him", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "zip-top", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-keepall-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "keepall", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic LOUIS VUITTON Reverse Monogram Eclipse Keepall Bandouliere 25. This bag is crafted of classic and reverse monogram coated canvas in black and grey. It features top handles and a black nylon shoulder strap with silver hardware. The top zipper opens to a black fabric interior with a pocket.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Louis Vuitton", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Black", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Coated Canvas", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1584866", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "LOUIS VUITTON Reverse Monogram Eclipse Keepall Bandouliere 25", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Saint Laurent", + "product_name": "Sheepskin Matelasse Chevron Monogram Large College Satchel Dark Anthracite", + "condition": "Shows Wear", + "discounted_price": 65, + "price": 1250, + "id": 10746561397039 }, { - "best_value": 0, - "categories": [ - "Black", - "Structured", - "Zip Top", - "Mens", - "Womens", - "Coated Canvas", - "Leather", - "Handbags", - "Men's Bags", - "Shoulder Bags", - "Travel & Luggage", - "Keepall", - "Monogram", - "General", - "Styles", - "Weekend Getaway", - "Gifts for Him", - "Top Designers", - "Louis Vuitton" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoulder-bags-on-sale", - "manbags", - "bags-under-1000", - "louis-vuitton-shoulder-bags", - "mens", - "travel-luggage", - "bags-on-sale", - "louis-vuitton-on-sale", - "weekend-getaway", - "louis-vuitton-travel-luggage", - "louis-vuitton-monogram", - "louis-vuitton", - "top-designers", - "gifts-for-him", - "zip-top", - "louis-vuitton-bags", - "handbag-styles", - "shoulder-bags", - "handbags", - "louis-vuitton-keepall-bags", - "keepall" - ], - "description": "This is an authentic LOUIS VUITTON Reverse Monogram Eclipse Keepall Bandouliere 25. This bag is crafted of classic and reverse monogram coated canvas in black and grey. It features top handles and a black nylon shoulder strap with silver hardware. The top zipper opens to a black fabric interior with a pocket.", - "discounted_price": 2370, - "discounted_tier": 1, - "filters": { - "bags": [ - "Handbags", - "Men's Bags", - "Shoulder Bags", - "Travel & Luggage" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Louis Vuitton" - ], - "color": [ - "Black" - ], - "material": [ - "Coated Canvas", - "Leather" - ], - "bag_feature": [ - "Structured", - "Zip Top" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "Over $2000", - "condition": [ - "Excellent" - ], - "locations": [ - "New York" - ] - }, - "following_count": 73, - "id": 1584866, - "made_available_at": 1740437574, - "price": 2495, - "priced_at": 1743026429, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/d3ee7623110eac05f68cbb62b1590ece.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/d3ee7623110eac05f68cbb62b1590ece.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/d3ee7623110eac05f68cbb62b1590ece.jpg" - }, - { - "order": 2, - "path": "/thumb/fb0c1a3511cd6aa055a36968f70bcc96/cfdb26929e9fc368977f7239068d301c.jpg", - "thumb": "/thumb/fb0c1a3511cd6aa055a36968f70bcc96/cfdb26929e9fc368977f7239068d301c.jpg", - "tiny": "/tiny/fb0c1a3511cd6aa055a36968f70bcc96/cfdb26929e9fc368977f7239068d301c.jpg" - } - ], - "title": "LOUIS VUITTON Reverse Monogram Eclipse Keepall Bandouliere 25", - "title_without_brand": "Reverse Monogram Eclipse Keepall Bandouliere 25", - "_tags": [ - "1584866" - ], - "objectID": "1584866", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "manbags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "mens", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "travel-luggage", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "weekend-getaway", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-travel-luggage", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-monogram", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "top-designers", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gifts-for-him", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "zip-top", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-keepall-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "keepall", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic LOUIS VUITTON Reverse Monogram Eclipse Keepall Bandouliere 25. This bag is crafted of classic and reverse monogram coated canvas in black and grey. It features top handles and a black nylon shoulder strap with silver hardware. The top zipper opens to a black fabric interior with a pocket.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Louis Vuitton", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Black", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Coated Canvas", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1584866", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "LOUIS VUITTON Reverse Monogram Eclipse Keepall Bandouliere 25", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Chanel", + "product_name": "Metallic Lambskin Small Golden CC Boy Flap Dark Gold", + "condition": "Shows Wear", + "discounted_price": 155, + "price": 2990, + "id": 10746560774447 }, { - "best_value": 0, - "categories": [ - "Black", - "Structured", - "Zip Top", - "Mens", - "Womens", - "Coated Canvas", - "Leather", - "Handbags", - "Men's Bags", - "Shoulder Bags", - "Travel & Luggage", - "Keepall", - "Monogram", - "General", - "Styles", - "Weekend Getaway", - "Gifts for Him", - "Top Designers", - "Louis Vuitton" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoulder-bags-on-sale", - "manbags", - "bags-under-1000", - "louis-vuitton-shoulder-bags", - "mens", - "travel-luggage", - "bags-on-sale", - "louis-vuitton-on-sale", - "weekend-getaway", - "louis-vuitton-travel-luggage", - "louis-vuitton-monogram", - "louis-vuitton", - "top-designers", - "gifts-for-him", - "zip-top", - "louis-vuitton-bags", - "handbag-styles", - "shoulder-bags", - "handbags", - "louis-vuitton-keepall-bags", - "keepall" - ], - "description": "This is an authentic LOUIS VUITTON Reverse Monogram Eclipse Keepall Bandouliere 25. This bag is crafted of classic and reverse monogram coated canvas in black and grey. It features top handles and a black nylon shoulder strap with silver hardware. The top zipper opens to a black fabric interior with a pocket.", - "discounted_price": 2370, - "discounted_tier": 1, - "filters": { - "bags": [ - "Handbags", - "Men's Bags", - "Shoulder Bags", - "Travel & Luggage" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Louis Vuitton" - ], - "color": [ - "Black" - ], - "material": [ - "Coated Canvas", - "Leather" - ], - "bag_feature": [ - "Structured", - "Zip Top" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "Over $2000", - "condition": [ - "Excellent" - ], - "locations": [ - "New York" - ] - }, - "following_count": 73, - "id": 1584866, - "made_available_at": 1740437574, - "price": 2495, - "priced_at": 1743026429, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/d3ee7623110eac05f68cbb62b1590ece.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/d3ee7623110eac05f68cbb62b1590ece.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/d3ee7623110eac05f68cbb62b1590ece.jpg" - }, - { - "order": 2, - "path": "/thumb/fb0c1a3511cd6aa055a36968f70bcc96/cfdb26929e9fc368977f7239068d301c.jpg", - "thumb": "/thumb/fb0c1a3511cd6aa055a36968f70bcc96/cfdb26929e9fc368977f7239068d301c.jpg", - "tiny": "/tiny/fb0c1a3511cd6aa055a36968f70bcc96/cfdb26929e9fc368977f7239068d301c.jpg" - } - ], - "title": "LOUIS VUITTON Reverse Monogram Eclipse Keepall Bandouliere 25", - "title_without_brand": "Reverse Monogram Eclipse Keepall Bandouliere 25", - "_tags": [ - "1584866" - ], - "objectID": "1584866", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "manbags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "mens", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "travel-luggage", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "weekend-getaway", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-travel-luggage", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-monogram", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "top-designers", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gifts-for-him", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "zip-top", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-keepall-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "keepall", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic LOUIS VUITTON Reverse Monogram Eclipse Keepall Bandouliere 25. This bag is crafted of classic and reverse monogram coated canvas in black and grey. It features top handles and a black nylon shoulder strap with silver hardware. The top zipper opens to a black fabric interior with a pocket.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Louis Vuitton", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Black", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Coated Canvas", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1584866", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "LOUIS VUITTON Reverse Monogram Eclipse Keepall Bandouliere 25", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Hermes", + "product_name": "Togo Birkin 25 Etain", + "condition": "Shows Wear", + "discounted_price": 995, + "price": 18905, + "id": 10746560708911 }, { - "best_value": 1330, - "categories": [ - "Grays", - "Structured", - "Zip Top", - "Womens", - "Leather", - "Handbags", - "Shoulder Bags", - "General", - "Styles", - "Chloe", - "Over 50% off Retail" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoulder-bags-on-sale", - "bags-under-1000", - "bags-on-sale", - "50-off-retail", - "zip-top", - "handbag-styles", - "shoulder-bags", - "handbags", - "chloe" - ], - "description": "This is an authentic CHLOE Calfskin Suede Medium Roy Bag in Motty Grey. This stylish handbag is crafted of smooth calfskin and suede leather in taupe. It features signature large rings on either side, a short carry strap, and a long leather adjustable shoulder strap. The top zipper opens to a spacious beige canvas fabric interior with pockets.", - "discounted_price": 520, - "discounted_tier": 1, - "filters": { - "bags": [ - "Handbags", - "Shoulder Bags" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Chloe" - ], - "color": [ - "Grays" - ], - "material": [ - "Leather" - ], - "bag_feature": [ - "Structured", - "Zip Top" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$500-$1000", - "condition": [ - "Shows Wear" - ], - "locations": [ - "New York" - ] - }, - "following_count": 10, - "id": 1584969, - "made_available_at": 1740435535, - "price": 550, - "priced_at": 1743026410, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/8405e587af70addc2636e2dc012205ee.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/8405e587af70addc2636e2dc012205ee.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/8405e587af70addc2636e2dc012205ee.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/ad12836a08d9c01d011760b86f86deb7.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/ad12836a08d9c01d011760b86f86deb7.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/ad12836a08d9c01d011760b86f86deb7.jpg" - } - ], - "title": "CHLOE Calfskin Suede Medium Roy Bag Motty Grey", - "title_without_brand": "Calfskin Suede Medium Roy Bag Motty Grey", - "_tags": [ - "1584969" - ], - "objectID": "1584969", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "50-off-retail", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "zip-top", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chloe", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic CHLOE Calfskin Suede Medium Roy Bag in Motty Grey. This stylish handbag is crafted of smooth calfskin and suede leather in taupe. It features signature large rings on either side, a short carry strap, and a long leather adjustable shoulder strap. The top zipper opens to a spacious beige canvas fabric interior with pockets.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Chloe", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Grays", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1584969", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "CHLOE Calfskin Suede Medium Roy Bag Motty Grey", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Louis Vuitton", + "product_name": "Taurillon Capucines BB Black", + "condition": "Shows Wear", + "discounted_price": 170, + "price": 3245, + "id": 10746560250159 }, { - "best_value": 1330, - "categories": [ - "Grays", - "Structured", - "Zip Top", - "Womens", - "Leather", - "Handbags", - "Shoulder Bags", - "General", - "Styles", - "Chloe", - "Over 50% off Retail" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoulder-bags-on-sale", - "bags-under-1000", - "bags-on-sale", - "50-off-retail", - "zip-top", - "handbag-styles", - "shoulder-bags", - "handbags", - "chloe" - ], - "description": "This is an authentic CHLOE Calfskin Suede Medium Roy Bag in Motty Grey. This stylish handbag is crafted of smooth calfskin and suede leather in taupe. It features signature large rings on either side, a short carry strap, and a long leather adjustable shoulder strap. The top zipper opens to a spacious beige canvas fabric interior with pockets.", - "discounted_price": 520, - "discounted_tier": 1, - "filters": { - "bags": [ - "Handbags", - "Shoulder Bags" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Chloe" - ], - "color": [ - "Grays" - ], - "material": [ - "Leather" - ], - "bag_feature": [ - "Structured", - "Zip Top" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$500-$1000", - "condition": [ - "Shows Wear" - ], - "locations": [ - "New York" - ] - }, - "following_count": 10, - "id": 1584969, - "made_available_at": 1740435535, - "price": 550, - "priced_at": 1743026410, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/8405e587af70addc2636e2dc012205ee.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/8405e587af70addc2636e2dc012205ee.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/8405e587af70addc2636e2dc012205ee.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/ad12836a08d9c01d011760b86f86deb7.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/ad12836a08d9c01d011760b86f86deb7.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/ad12836a08d9c01d011760b86f86deb7.jpg" - } - ], - "title": "CHLOE Calfskin Suede Medium Roy Bag Motty Grey", - "title_without_brand": "Calfskin Suede Medium Roy Bag Motty Grey", - "_tags": [ - "1584969" - ], - "objectID": "1584969", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "50-off-retail", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "zip-top", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chloe", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic CHLOE Calfskin Suede Medium Roy Bag in Motty Grey. This stylish handbag is crafted of smooth calfskin and suede leather in taupe. It features signature large rings on either side, a short carry strap, and a long leather adjustable shoulder strap. The top zipper opens to a spacious beige canvas fabric interior with pockets.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Chloe", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Grays", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1584969", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "CHLOE Calfskin Suede Medium Roy Bag Motty Grey", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Christian Louboutin", + "product_name": "Crosta Alligator Embossed Mens Penny No Back Flat 42.5 Black", + "condition": "Excellent", + "discounted_price": 30, + "price": 575, + "id": 10746559988015 }, { - "best_value": 1330, - "categories": [ - "Grays", - "Structured", - "Zip Top", - "Womens", - "Leather", - "Handbags", - "Shoulder Bags", - "General", - "Styles", - "Chloe", - "Over 50% off Retail" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoulder-bags-on-sale", - "bags-under-1000", - "bags-on-sale", - "50-off-retail", - "zip-top", - "handbag-styles", - "shoulder-bags", - "handbags", - "chloe" - ], - "description": "This is an authentic CHLOE Calfskin Suede Medium Roy Bag in Motty Grey. This stylish handbag is crafted of smooth calfskin and suede leather in taupe. It features signature large rings on either side, a short carry strap, and a long leather adjustable shoulder strap. The top zipper opens to a spacious beige canvas fabric interior with pockets.", - "discounted_price": 520, - "discounted_tier": 1, - "filters": { - "bags": [ - "Handbags", - "Shoulder Bags" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Chloe" - ], - "color": [ - "Grays" - ], - "material": [ - "Leather" - ], - "bag_feature": [ - "Structured", - "Zip Top" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$500-$1000", - "condition": [ - "Shows Wear" - ], - "locations": [ - "New York" - ] - }, - "following_count": 10, - "id": 1584969, - "made_available_at": 1740435535, - "price": 550, - "priced_at": 1743026410, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/8405e587af70addc2636e2dc012205ee.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/8405e587af70addc2636e2dc012205ee.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/8405e587af70addc2636e2dc012205ee.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/ad12836a08d9c01d011760b86f86deb7.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/ad12836a08d9c01d011760b86f86deb7.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/ad12836a08d9c01d011760b86f86deb7.jpg" - } - ], - "title": "CHLOE Calfskin Suede Medium Roy Bag Motty Grey", - "title_without_brand": "Calfskin Suede Medium Roy Bag Motty Grey", - "_tags": [ - "1584969" - ], - "objectID": "1584969", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "50-off-retail", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "zip-top", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chloe", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic CHLOE Calfskin Suede Medium Roy Bag in Motty Grey. This stylish handbag is crafted of smooth calfskin and suede leather in taupe. It features signature large rings on either side, a short carry strap, and a long leather adjustable shoulder strap. The top zipper opens to a spacious beige canvas fabric interior with pockets.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Chloe", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Grays", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1584969", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "CHLOE Calfskin Suede Medium Roy Bag Motty Grey", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Saint Laurent", + "product_name": "Smooth Calfskin Monogram Kate Belt Bag Deep Marine Black", + "condition": "Excellent", + "discounted_price": 45, + "price": 830, + "id": 10721863270703 }, { - "best_value": 1550, - "categories": [ - "Multicolor", - "Whites", - "Structured", - "Top Handles", - "Art / Scene on Exterior", - "Leather", - "Handbags", - "Shoulder Bags", - "Styles", - "Womens", - "Gucci", - "Over 50% off Retail", - "Live Shopping with FASHIONPHILE" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoulder-bags-on-sale", - "gucci-shoulder-bags", - "gucci-bags-on-sale", - "bags-under-1000", - "gucci", - "gucci-bags", - "bags-on-sale", - "instagram-live-shopping", - "top-handles", - "50-off-retail", - "handbag-styles", - "gucci-on-sale", - "shoulder-bags", - "handbags" - ], - "description": "This is an authentic GUCCI Calfskin Embroidered Small Sylvie Shoulder Bag in White. This shoulder bag is crafted of smooth white calfskin leather and features a prominent front detailed with a central nylon red and blue web stripe and signature floral embroidering. There is a gold chain with a buckle closure that accents the front of the bag and comes with two optional shoulder straps. The front flap opens to a camel microfiber interior with a patch and zipper pocket.", - "discounted_price": 1040, - "discounted_tier": 1, - "filters": { - "bags": [ - "Handbags", - "Shoulder Bags" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Gucci" - ], - "color": [ - "Multicolor", - "Whites" - ], - "material": [ - "Art / Scene on Exterior", - "Leather" - ], - "bag_feature": [ - "Structured", - "Top Handles" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$1000-$2000", - "condition": [ - "Excellent" - ], - "locations": [ - "Carlsbad" - ] - }, - "following_count": 11, - "id": 1584998, - "made_available_at": 1740430336, - "price": 1095, - "priced_at": 1743019211, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/eeff7bcdfcb7fdcc79627a5d4f71b512/320cabf805d08cb9defaafe94d125e5c.jpg", - "thumb": "/thumb/eeff7bcdfcb7fdcc79627a5d4f71b512/320cabf805d08cb9defaafe94d125e5c.jpg", - "tiny": "/tiny/eeff7bcdfcb7fdcc79627a5d4f71b512/320cabf805d08cb9defaafe94d125e5c.jpg" - }, - { - "order": 2, - "path": "/thumb/eeff7bcdfcb7fdcc79627a5d4f71b512/7a6211a20db544f26ed85ab585c86657.jpg", - "thumb": "/thumb/eeff7bcdfcb7fdcc79627a5d4f71b512/7a6211a20db544f26ed85ab585c86657.jpg", - "tiny": "/tiny/eeff7bcdfcb7fdcc79627a5d4f71b512/7a6211a20db544f26ed85ab585c86657.jpg" - } - ], - "title": "GUCCI Calfskin Embroidered Small Sylvie Shoulder Bag White", - "title_without_brand": "Calfskin Embroidered Small Sylvie Shoulder Bag White", - "_tags": [ - "1584998" - ], - "objectID": "1584998", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "instagram-live-shopping", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "top-handles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "50-off-retail", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic GUCCI Calfskin Embroidered Small Sylvie Shoulder Bag in White. This shoulder bag is crafted of smooth white calfskin leather and features a prominent front detailed with a central nylon red and blue web stripe and signature floral embroidering. There is a gold chain with a buckle closure that accents the front of the bag and comes with two optional shoulder straps. The front flap opens to a camel microfiber interior with a patch and zipper pocket.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Gucci", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Multicolor", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Whites", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Art / Scene on Exterior", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1584998", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "GUCCI Calfskin Embroidered Small Sylvie Shoulder Bag White", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Prada", + "product_name": "Tessuto Nylon Saffiano Briefcase Black", + "condition": "Shows Wear", + "discounted_price": 35, + "price": 650, + "id": 10745860915503 }, { - "best_value": 1550, - "categories": [ - "Multicolor", - "Whites", - "Structured", - "Top Handles", - "Art / Scene on Exterior", - "Leather", - "Handbags", - "Shoulder Bags", - "Styles", - "Womens", - "Gucci", - "Over 50% off Retail", - "Live Shopping with FASHIONPHILE" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoulder-bags-on-sale", - "gucci-shoulder-bags", - "gucci-bags-on-sale", - "bags-under-1000", - "gucci", - "gucci-bags", - "bags-on-sale", - "instagram-live-shopping", - "top-handles", - "50-off-retail", - "handbag-styles", - "gucci-on-sale", - "shoulder-bags", - "handbags" - ], - "description": "This is an authentic GUCCI Calfskin Embroidered Small Sylvie Shoulder Bag in White. This shoulder bag is crafted of smooth white calfskin leather and features a prominent front detailed with a central nylon red and blue web stripe and signature floral embroidering. There is a gold chain with a buckle closure that accents the front of the bag and comes with two optional shoulder straps. The front flap opens to a camel microfiber interior with a patch and zipper pocket.", - "discounted_price": 1040, - "discounted_tier": 1, - "filters": { - "bags": [ - "Handbags", - "Shoulder Bags" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Gucci" - ], - "color": [ - "Multicolor", - "Whites" - ], - "material": [ - "Art / Scene on Exterior", - "Leather" - ], - "bag_feature": [ - "Structured", - "Top Handles" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$1000-$2000", - "condition": [ - "Excellent" - ], - "locations": [ - "Carlsbad" - ] - }, - "following_count": 11, - "id": 1584998, - "made_available_at": 1740430336, - "price": 1095, - "priced_at": 1743019211, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/eeff7bcdfcb7fdcc79627a5d4f71b512/320cabf805d08cb9defaafe94d125e5c.jpg", - "thumb": "/thumb/eeff7bcdfcb7fdcc79627a5d4f71b512/320cabf805d08cb9defaafe94d125e5c.jpg", - "tiny": "/tiny/eeff7bcdfcb7fdcc79627a5d4f71b512/320cabf805d08cb9defaafe94d125e5c.jpg" - }, - { - "order": 2, - "path": "/thumb/eeff7bcdfcb7fdcc79627a5d4f71b512/7a6211a20db544f26ed85ab585c86657.jpg", - "thumb": "/thumb/eeff7bcdfcb7fdcc79627a5d4f71b512/7a6211a20db544f26ed85ab585c86657.jpg", - "tiny": "/tiny/eeff7bcdfcb7fdcc79627a5d4f71b512/7a6211a20db544f26ed85ab585c86657.jpg" - } - ], - "title": "GUCCI Calfskin Embroidered Small Sylvie Shoulder Bag White", - "title_without_brand": "Calfskin Embroidered Small Sylvie Shoulder Bag White", - "_tags": [ - "1584998" - ], - "objectID": "1584998", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "instagram-live-shopping", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "top-handles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "50-off-retail", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic GUCCI Calfskin Embroidered Small Sylvie Shoulder Bag in White. This shoulder bag is crafted of smooth white calfskin leather and features a prominent front detailed with a central nylon red and blue web stripe and signature floral embroidering. There is a gold chain with a buckle closure that accents the front of the bag and comes with two optional shoulder straps. The front flap opens to a camel microfiber interior with a patch and zipper pocket.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Gucci", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Multicolor", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Whites", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Art / Scene on Exterior", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1584998", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "GUCCI Calfskin Embroidered Small Sylvie Shoulder Bag White", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Chanel", + "product_name": "Tweed Aged Calfskin Quilted Casual Style Hobo Beige", + "condition": "Shows Wear", + "discounted_price": 95, + "price": 1755, + "id": 10547251806511 }, { - "best_value": 1550, - "categories": [ - "Multicolor", - "Whites", - "Structured", - "Top Handles", - "Art / Scene on Exterior", - "Leather", - "Handbags", - "Shoulder Bags", - "Styles", - "Womens", - "Gucci", - "Over 50% off Retail", - "Live Shopping with FASHIONPHILE" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoulder-bags-on-sale", - "gucci-shoulder-bags", - "gucci-bags-on-sale", - "bags-under-1000", - "gucci", - "gucci-bags", - "bags-on-sale", - "instagram-live-shopping", - "top-handles", - "50-off-retail", - "handbag-styles", - "gucci-on-sale", - "shoulder-bags", - "handbags" - ], - "description": "This is an authentic GUCCI Calfskin Embroidered Small Sylvie Shoulder Bag in White. This shoulder bag is crafted of smooth white calfskin leather and features a prominent front detailed with a central nylon red and blue web stripe and signature floral embroidering. There is a gold chain with a buckle closure that accents the front of the bag and comes with two optional shoulder straps. The front flap opens to a camel microfiber interior with a patch and zipper pocket.", - "discounted_price": 1040, - "discounted_tier": 1, - "filters": { - "bags": [ - "Handbags", - "Shoulder Bags" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Gucci" - ], - "color": [ - "Multicolor", - "Whites" - ], - "material": [ - "Art / Scene on Exterior", - "Leather" - ], - "bag_feature": [ - "Structured", - "Top Handles" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$1000-$2000", - "condition": [ - "Excellent" - ], - "locations": [ - "Carlsbad" - ] - }, - "following_count": 11, - "id": 1584998, - "made_available_at": 1740430336, - "price": 1095, - "priced_at": 1743019211, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/eeff7bcdfcb7fdcc79627a5d4f71b512/320cabf805d08cb9defaafe94d125e5c.jpg", - "thumb": "/thumb/eeff7bcdfcb7fdcc79627a5d4f71b512/320cabf805d08cb9defaafe94d125e5c.jpg", - "tiny": "/tiny/eeff7bcdfcb7fdcc79627a5d4f71b512/320cabf805d08cb9defaafe94d125e5c.jpg" - }, - { - "order": 2, - "path": "/thumb/eeff7bcdfcb7fdcc79627a5d4f71b512/7a6211a20db544f26ed85ab585c86657.jpg", - "thumb": "/thumb/eeff7bcdfcb7fdcc79627a5d4f71b512/7a6211a20db544f26ed85ab585c86657.jpg", - "tiny": "/tiny/eeff7bcdfcb7fdcc79627a5d4f71b512/7a6211a20db544f26ed85ab585c86657.jpg" - } - ], - "title": "GUCCI Calfskin Embroidered Small Sylvie Shoulder Bag White", - "title_without_brand": "Calfskin Embroidered Small Sylvie Shoulder Bag White", - "_tags": [ - "1584998" - ], - "objectID": "1584998", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "instagram-live-shopping", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "top-handles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "50-off-retail", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic GUCCI Calfskin Embroidered Small Sylvie Shoulder Bag in White. This shoulder bag is crafted of smooth white calfskin leather and features a prominent front detailed with a central nylon red and blue web stripe and signature floral embroidering. There is a gold chain with a buckle closure that accents the front of the bag and comes with two optional shoulder straps. The front flap opens to a camel microfiber interior with a patch and zipper pocket.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Gucci", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Multicolor", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Whites", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Art / Scene on Exterior", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1584998", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "GUCCI Calfskin Embroidered Small Sylvie Shoulder Bag White", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Gucci", + "product_name": "X ADIDAS Textured Dollar Calfskin Web Trefoil Mini Horsebit 1955 Shoulder Bag Navy Blue Red", + "condition": "Excellent", + "discounted_price": 55, + "price": 1020, + "id": 10547236503855 }, { - "best_value": 0, - "categories": [ - "Belts", - "Browns", - "Reds", - "Womens", - "Leather", - "Epsom", - "Swift", - "Accessories", - "Monogram Masterpieces", - "80/32", - "Hermes", - "Vintage Finds" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "belts", - "vintage", - "belts-on-sale", - "love-logos", - "hermes", - "epsom", - "swift", - "accessories-on-sale", - "hermes-belts", - "hermes-accessories", - "accessories", - "hermes-on-sale" - ], - "description": "This is an authentic HERMES Swift Epsom 30mm H Belt 68 in Gold and Brique. This stylish reversible belt is crafted of polished calfskin leather in red, with epsom leather in brown on the other side and a gold plated Hermes H buckle.", - "discounted_price": 470, - "discounted_tier": 1, - "filters": { - "bags": [], - "jewelry": [], - "accessories": [ - "Belts" - ], - "watches": [], - "shoes": [], - "brands": [ - "Hermes" - ], - "color": [ - "Browns", - "Reds" - ], - "material": [ - "Leather" - ], - "bag_feature": [], - "ring_size": [], - "watch_size": [], - "belt_size": [ - "80/32" - ], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$200-$500", - "condition": [ - "Shows Wear" - ], - "locations": [ - "New York" - ] - }, - "following_count": 21, - "id": 1585060, - "made_available_at": 1740432809, - "price": 495, - "priced_at": 1743023870, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/c41386b4bb93f75e035ee1da925a7cb2.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/c41386b4bb93f75e035ee1da925a7cb2.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/c41386b4bb93f75e035ee1da925a7cb2.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/cecdea2cecec0d244674b5813619d7f2.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/cecdea2cecec0d244674b5813619d7f2.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/cecdea2cecec0d244674b5813619d7f2.jpg" - } - ], - "title": "HERMES Swift Epsom 30mm H Belt 68 80/32 Gold Brique", - "title_without_brand": "Swift Epsom 30mm H Belt 68 80/32 Gold Brique", - "_tags": [ - "1585060" - ], - "objectID": "1585060", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "belts", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "vintage", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "belts-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "love-logos", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "epsom", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "swift", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-belts", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-accessories", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-on-sale", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic HERMES Swift Epsom 30mm H Belt 68 in Gold and Brique. This stylish reversible belt is crafted of polished calfskin leather in red, with epsom leather in brown on the other side and a gold plated Hermes H buckle.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Hermes", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Browns", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Reds", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1585060", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "HERMES Swift Epsom 30mm H Belt 68 80/32 Gold Brique", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Bottega Veneta", + "product_name": "Nappa Intrecciato Medium Cabat Multicolor", + "condition": "Shows Wear", + "discounted_price": 95, + "price": 1755, + "id": 10695870021935 }, { - "best_value": 0, - "categories": [ - "Belts", - "Browns", - "Reds", - "Womens", - "Leather", - "Epsom", - "Swift", - "Accessories", - "Monogram Masterpieces", - "80/32", - "Hermes", - "Vintage Finds" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "belts", - "vintage", - "belts-on-sale", - "love-logos", - "hermes", - "epsom", - "swift", - "accessories-on-sale", - "hermes-belts", - "hermes-accessories", - "accessories", - "hermes-on-sale" - ], - "description": "This is an authentic HERMES Swift Epsom 30mm H Belt 68 in Gold and Brique. This stylish reversible belt is crafted of polished calfskin leather in red, with epsom leather in brown on the other side and a gold plated Hermes H buckle.", - "discounted_price": 470, - "discounted_tier": 1, - "filters": { - "bags": [], - "jewelry": [], - "accessories": [ - "Belts" - ], - "watches": [], - "shoes": [], - "brands": [ - "Hermes" - ], - "color": [ - "Browns", - "Reds" - ], - "material": [ - "Leather" - ], - "bag_feature": [], - "ring_size": [], - "watch_size": [], - "belt_size": [ - "80/32" - ], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$200-$500", - "condition": [ - "Shows Wear" - ], - "locations": [ - "New York" - ] - }, - "following_count": 21, - "id": 1585060, - "made_available_at": 1740432809, - "price": 495, - "priced_at": 1743023870, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/c41386b4bb93f75e035ee1da925a7cb2.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/c41386b4bb93f75e035ee1da925a7cb2.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/c41386b4bb93f75e035ee1da925a7cb2.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/cecdea2cecec0d244674b5813619d7f2.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/cecdea2cecec0d244674b5813619d7f2.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/cecdea2cecec0d244674b5813619d7f2.jpg" - } - ], - "title": "HERMES Swift Epsom 30mm H Belt 68 80/32 Gold Brique", - "title_without_brand": "Swift Epsom 30mm H Belt 68 80/32 Gold Brique", - "_tags": [ - "1585060" - ], - "objectID": "1585060", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "belts", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "vintage", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "belts-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "love-logos", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "epsom", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "swift", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-belts", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-accessories", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-on-sale", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic HERMES Swift Epsom 30mm H Belt 68 in Gold and Brique. This stylish reversible belt is crafted of polished calfskin leather in red, with epsom leather in brown on the other side and a gold plated Hermes H buckle.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Hermes", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Browns", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Reds", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1585060", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "HERMES Swift Epsom 30mm H Belt 68 80/32 Gold Brique", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Louis Vuitton", + "product_name": "Epi Key Pouch Castillan Red", + "condition": "Excellent", + "discounted_price": 20, + "price": 330, + "id": 10559247679791 }, { - "best_value": 0, - "categories": [ - "Belts", - "Browns", - "Reds", - "Womens", - "Leather", - "Epsom", - "Swift", - "Accessories", - "Monogram Masterpieces", - "80/32", - "Hermes", - "Vintage Finds" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "belts", - "vintage", - "belts-on-sale", - "love-logos", - "hermes", - "epsom", - "swift", - "accessories-on-sale", - "hermes-belts", - "hermes-accessories", - "accessories", - "hermes-on-sale" - ], - "description": "This is an authentic HERMES Swift Epsom 30mm H Belt 68 in Gold and Brique. This stylish reversible belt is crafted of polished calfskin leather in red, with epsom leather in brown on the other side and a gold plated Hermes H buckle.", - "discounted_price": 470, - "discounted_tier": 1, - "filters": { - "bags": [], - "jewelry": [], - "accessories": [ - "Belts" - ], - "watches": [], - "shoes": [], - "brands": [ - "Hermes" - ], - "color": [ - "Browns", - "Reds" - ], - "material": [ - "Leather" - ], - "bag_feature": [], - "ring_size": [], - "watch_size": [], - "belt_size": [ - "80/32" - ], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$200-$500", - "condition": [ - "Shows Wear" - ], - "locations": [ - "New York" - ] - }, - "following_count": 21, - "id": 1585060, - "made_available_at": 1740432809, - "price": 495, - "priced_at": 1743023870, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/c41386b4bb93f75e035ee1da925a7cb2.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/c41386b4bb93f75e035ee1da925a7cb2.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/c41386b4bb93f75e035ee1da925a7cb2.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/cecdea2cecec0d244674b5813619d7f2.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/cecdea2cecec0d244674b5813619d7f2.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/cecdea2cecec0d244674b5813619d7f2.jpg" - } - ], - "title": "HERMES Swift Epsom 30mm H Belt 68 80/32 Gold Brique", - "title_without_brand": "Swift Epsom 30mm H Belt 68 80/32 Gold Brique", - "_tags": [ - "1585060" - ], - "objectID": "1585060", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "belts", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "vintage", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "belts-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "love-logos", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "epsom", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "swift", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-belts", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-accessories", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-on-sale", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic HERMES Swift Epsom 30mm H Belt 68 in Gold and Brique. This stylish reversible belt is crafted of polished calfskin leather in red, with epsom leather in brown on the other side and a gold plated Hermes H buckle.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Hermes", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Browns", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Reds", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1585060", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "HERMES Swift Epsom 30mm H Belt 68 80/32 Gold Brique", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Louis Vuitton", + "product_name": "Monogram Multi Pochette Accessories Bandouliere Shoulder Strap Rose Clair", + "condition": "Excellent", + "discounted_price": 60, + "price": 1135, + "id": 10684181283119 }, { - "best_value": 195, - "categories": [ - "Sunglasses", - "Accessories", - "Browns", - "Summer Essentials", - "Gucci" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "gucci-sunglasses", - "gucci", - "accessories-on-sale", - "sunglasses", - "gucci-on-sale", - "summer-essentials", - "sunglasses-on-sale", - "accessories" - ], - "description": "This is an authentic pair of GUCCI Acetate Round Sunglasses GG1081S in Tortoise. These bold sunglasses have thick tortoise frames with dark grey lenses. They feature a polished gold Gucci logo at the temples.", - "discounted_price": 310, - "discounted_tier": 1, - "filters": { - "bags": [], - "jewelry": [], - "accessories": [ - "Sunglasses" - ], - "watches": [], - "shoes": [], - "brands": [ - "Gucci" - ], - "color": [ - "Browns" - ], - "material": [], - "bag_feature": [], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$200-$500", - "condition": [ - "Shows Wear" - ], - "locations": [ - "New York" - ] - }, - "following_count": 9, - "id": 1585079, - "made_available_at": 1740430018, - "price": 325, - "priced_at": 1743019209, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/754aad99e304aa937c6158ec798d5496.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/754aad99e304aa937c6158ec798d5496.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/754aad99e304aa937c6158ec798d5496.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/ac558e4c3726e3dbb59bb5e5947c932c.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/ac558e4c3726e3dbb59bb5e5947c932c.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/ac558e4c3726e3dbb59bb5e5947c932c.jpg" - } - ], - "title": "GUCCI Acetate Round Sunglasses GG1081S Tortoise", - "title_without_brand": "Acetate Round Sunglasses GG1081S Tortoise", - "_tags": [ - "1585079" - ], - "objectID": "1585079", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-sunglasses", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "sunglasses", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "summer-essentials", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "sunglasses-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic pair of GUCCI Acetate Round Sunglasses GG1081S in Tortoise. These bold sunglasses have thick tortoise frames with dark grey lenses. They feature a polished gold Gucci logo at the temples.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Gucci", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Browns", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1585079", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "GUCCI Acetate Round Sunglasses GG1081S Tortoise", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Miu Miu", + "product_name": "X NEW BALANCE Denim Marmorizzato 574 Sneakers 38.5 Cognac", + "condition": "Excellent", + "discounted_price": 35, + "price": 660, + "id": 10656526991663 }, { - "best_value": 195, - "categories": [ - "Sunglasses", - "Accessories", - "Browns", - "Summer Essentials", - "Gucci" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "gucci-sunglasses", - "gucci", - "accessories-on-sale", - "sunglasses", - "gucci-on-sale", - "summer-essentials", - "sunglasses-on-sale", - "accessories" - ], - "description": "This is an authentic pair of GUCCI Acetate Round Sunglasses GG1081S in Tortoise. These bold sunglasses have thick tortoise frames with dark grey lenses. They feature a polished gold Gucci logo at the temples.", - "discounted_price": 310, - "discounted_tier": 1, - "filters": { - "bags": [], - "jewelry": [], - "accessories": [ - "Sunglasses" - ], - "watches": [], - "shoes": [], - "brands": [ - "Gucci" - ], - "color": [ - "Browns" - ], - "material": [], - "bag_feature": [], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$200-$500", - "condition": [ - "Shows Wear" - ], - "locations": [ - "New York" - ] - }, - "following_count": 9, - "id": 1585079, - "made_available_at": 1740430018, - "price": 325, - "priced_at": 1743019209, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/754aad99e304aa937c6158ec798d5496.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/754aad99e304aa937c6158ec798d5496.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/754aad99e304aa937c6158ec798d5496.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/ac558e4c3726e3dbb59bb5e5947c932c.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/ac558e4c3726e3dbb59bb5e5947c932c.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/ac558e4c3726e3dbb59bb5e5947c932c.jpg" - } - ], - "title": "GUCCI Acetate Round Sunglasses GG1081S Tortoise", - "title_without_brand": "Acetate Round Sunglasses GG1081S Tortoise", - "_tags": [ - "1585079" - ], - "objectID": "1585079", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-sunglasses", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "sunglasses", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "summer-essentials", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "sunglasses-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic pair of GUCCI Acetate Round Sunglasses GG1081S in Tortoise. These bold sunglasses have thick tortoise frames with dark grey lenses. They feature a polished gold Gucci logo at the temples.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Gucci", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Browns", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1585079", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "GUCCI Acetate Round Sunglasses GG1081S Tortoise", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Prada", + "product_name": "Foam Rubber Metal Triangle Logo Womens Monolith 55mm Cage Sandals 39 Mela", + "condition": "Excellent", + "discounted_price": 35, + "price": 660, + "id": 10684240757039 }, { - "best_value": 195, - "categories": [ - "Sunglasses", - "Accessories", - "Browns", - "Summer Essentials", - "Gucci" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "gucci-sunglasses", - "gucci", - "accessories-on-sale", - "sunglasses", - "gucci-on-sale", - "summer-essentials", - "sunglasses-on-sale", - "accessories" - ], - "description": "This is an authentic pair of GUCCI Acetate Round Sunglasses GG1081S in Tortoise. These bold sunglasses have thick tortoise frames with dark grey lenses. They feature a polished gold Gucci logo at the temples.", - "discounted_price": 310, - "discounted_tier": 1, - "filters": { - "bags": [], - "jewelry": [], - "accessories": [ - "Sunglasses" - ], - "watches": [], - "shoes": [], - "brands": [ - "Gucci" - ], - "color": [ - "Browns" - ], - "material": [], - "bag_feature": [], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$200-$500", - "condition": [ - "Shows Wear" - ], - "locations": [ - "New York" - ] - }, - "following_count": 9, - "id": 1585079, - "made_available_at": 1740430018, - "price": 325, - "priced_at": 1743019209, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/754aad99e304aa937c6158ec798d5496.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/754aad99e304aa937c6158ec798d5496.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/754aad99e304aa937c6158ec798d5496.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/ac558e4c3726e3dbb59bb5e5947c932c.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/ac558e4c3726e3dbb59bb5e5947c932c.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/ac558e4c3726e3dbb59bb5e5947c932c.jpg" - } - ], - "title": "GUCCI Acetate Round Sunglasses GG1081S Tortoise", - "title_without_brand": "Acetate Round Sunglasses GG1081S Tortoise", - "_tags": [ - "1585079" - ], - "objectID": "1585079", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-sunglasses", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "sunglasses", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "summer-essentials", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "sunglasses-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic pair of GUCCI Acetate Round Sunglasses GG1081S in Tortoise. These bold sunglasses have thick tortoise frames with dark grey lenses. They feature a polished gold Gucci logo at the temples.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Gucci", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Browns", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1585079", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "GUCCI Acetate Round Sunglasses GG1081S Tortoise", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Chanel", + "product_name": "Patent Quilted Timeless Clutch Purple", + "condition": "Shows Wear", + "discounted_price": 100, + "price": 1895, + "id": 10548222427439 }, { - "best_value": 300, - "categories": [ - "Browns", - "Top Handles", - "Zip Top", - "Womens", - "Coated Canvas", - "Crossbody", - "Handbags", - "Shoulder Bags", - "Limited Edition", - "Monogram", - "Speedy", - "Styles", - "Loud Luxury", - "Louis Vuitton" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoulder-bags-on-sale", - "speedy", - "bags-under-1000", - "louis-vuitton-shoulder-bags", - "louis-vuitton-monogram-bags", - "louis-vuitton-speedy-handbags", - "bags-on-sale", - "louis-vuitton-crossbody-bags", - "louis-vuitton-on-sale", - "louis-vuitton-monogram", - "louis-vuitton", - "top-handles", - "crossbody-bags-on-sale", - "zip-top", - "louis-vuitton-bags", - "handbag-styles", - "le", - "loud-luxury", - "shoulder-bags", - "handbags", - "cross-body" - ], - "description": "This is an authentic LOUIS VUITTON Reverse Monogram Giant Speedy Bandouliere 30. This classic tote is crafted of signature Louis Vuitton monogram toile canvas. The shoulder bag features vachetta cowhide leather rolled top handles, and polished brass hardware. The top opens to a black fabric interior with a hanging zipper pocket.", - "discounted_price": 1610, - "discounted_tier": 1, - "filters": { - "bags": [ - "Crossbody", - "Handbags", - "Shoulder Bags" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Louis Vuitton" - ], - "color": [ - "Browns" - ], - "material": [ - "Coated Canvas" - ], - "bag_feature": [ - "Top Handles", - "Zip Top" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$1000-$2000", - "condition": [ - "Worn" - ], - "locations": [ - "New York" - ] - }, - "following_count": 57, - "id": 1585086, - "made_available_at": 1740437633, - "price": 1695, - "priced_at": 1743026430, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/9fa99c621faaaf00f4f4660c98572ad7.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/9fa99c621faaaf00f4f4660c98572ad7.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/9fa99c621faaaf00f4f4660c98572ad7.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/181ad56c7dddabca51a9874a8b346618.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/181ad56c7dddabca51a9874a8b346618.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/181ad56c7dddabca51a9874a8b346618.jpg" - } - ], - "title": "LOUIS VUITTON Reverse Monogram Giant Speedy Bandouliere 30", - "title_without_brand": "Reverse Monogram Giant Speedy Bandouliere 30", - "_tags": [ - "1585086" - ], - "objectID": "1585086", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "speedy", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-monogram-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-speedy-handbags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-crossbody-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-monogram", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "top-handles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "crossbody-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "zip-top", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "le", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "loud-luxury", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "cross-body", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic LOUIS VUITTON Reverse Monogram Giant Speedy Bandouliere 30. This classic tote is crafted of signature Louis Vuitton monogram toile canvas. The shoulder bag features vachetta cowhide leather rolled top handles, and polished brass hardware. The top opens to a black fabric interior with a hanging zipper pocket.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Louis Vuitton", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Browns", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Coated Canvas", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1585086", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "LOUIS VUITTON Reverse Monogram Giant Speedy Bandouliere 30", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Dolce & Gabbana", + "product_name": "Calfskin Micro 58 Miss Sicily Satchel Brown", + "condition": "Excellent", + "discounted_price": 20, + "price": 375, + "id": 10589929832751 }, { - "best_value": 300, - "categories": [ - "Browns", - "Top Handles", - "Zip Top", - "Womens", - "Coated Canvas", - "Crossbody", - "Handbags", - "Shoulder Bags", - "Limited Edition", - "Monogram", - "Speedy", - "Styles", - "Loud Luxury", - "Louis Vuitton" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoulder-bags-on-sale", - "speedy", - "bags-under-1000", - "louis-vuitton-shoulder-bags", - "louis-vuitton-monogram-bags", - "louis-vuitton-speedy-handbags", - "bags-on-sale", - "louis-vuitton-crossbody-bags", - "louis-vuitton-on-sale", - "louis-vuitton-monogram", - "louis-vuitton", - "top-handles", - "crossbody-bags-on-sale", - "zip-top", - "louis-vuitton-bags", - "handbag-styles", - "le", - "loud-luxury", - "shoulder-bags", - "handbags", - "cross-body" - ], - "description": "This is an authentic LOUIS VUITTON Reverse Monogram Giant Speedy Bandouliere 30. This classic tote is crafted of signature Louis Vuitton monogram toile canvas. The shoulder bag features vachetta cowhide leather rolled top handles, and polished brass hardware. The top opens to a black fabric interior with a hanging zipper pocket.", - "discounted_price": 1610, - "discounted_tier": 1, - "filters": { - "bags": [ - "Crossbody", - "Handbags", - "Shoulder Bags" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Louis Vuitton" - ], - "color": [ - "Browns" - ], - "material": [ - "Coated Canvas" - ], - "bag_feature": [ - "Top Handles", - "Zip Top" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$1000-$2000", - "condition": [ - "Worn" - ], - "locations": [ - "New York" - ] - }, - "following_count": 57, - "id": 1585086, - "made_available_at": 1740437633, - "price": 1695, - "priced_at": 1743026430, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/9fa99c621faaaf00f4f4660c98572ad7.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/9fa99c621faaaf00f4f4660c98572ad7.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/9fa99c621faaaf00f4f4660c98572ad7.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/181ad56c7dddabca51a9874a8b346618.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/181ad56c7dddabca51a9874a8b346618.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/181ad56c7dddabca51a9874a8b346618.jpg" - } - ], - "title": "LOUIS VUITTON Reverse Monogram Giant Speedy Bandouliere 30", - "title_without_brand": "Reverse Monogram Giant Speedy Bandouliere 30", - "_tags": [ - "1585086" - ], - "objectID": "1585086", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "speedy", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-monogram-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-speedy-handbags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-crossbody-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-monogram", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "top-handles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "crossbody-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "zip-top", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "le", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "loud-luxury", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "cross-body", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic LOUIS VUITTON Reverse Monogram Giant Speedy Bandouliere 30. This classic tote is crafted of signature Louis Vuitton monogram toile canvas. The shoulder bag features vachetta cowhide leather rolled top handles, and polished brass hardware. The top opens to a black fabric interior with a hanging zipper pocket.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Louis Vuitton", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Browns", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Coated Canvas", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1585086", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "LOUIS VUITTON Reverse Monogram Giant Speedy Bandouliere 30", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Chopard", + "product_name": "Stainless Steel 5 Diamond 26mm Happy Sport Quartz Watch Pink", + "condition": "Shows Wear", + "discounted_price": 115, + "price": 2180, + "id": 10656798966063 }, { - "best_value": 300, - "categories": [ - "Browns", - "Top Handles", - "Zip Top", - "Womens", - "Coated Canvas", - "Crossbody", - "Handbags", - "Shoulder Bags", - "Limited Edition", - "Monogram", - "Speedy", - "Styles", - "Loud Luxury", - "Louis Vuitton" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoulder-bags-on-sale", - "speedy", - "bags-under-1000", - "louis-vuitton-shoulder-bags", - "louis-vuitton-monogram-bags", - "louis-vuitton-speedy-handbags", - "bags-on-sale", - "louis-vuitton-crossbody-bags", - "louis-vuitton-on-sale", - "louis-vuitton-monogram", - "louis-vuitton", - "top-handles", - "crossbody-bags-on-sale", - "zip-top", - "louis-vuitton-bags", - "handbag-styles", - "le", - "loud-luxury", - "shoulder-bags", - "handbags", - "cross-body" - ], - "description": "This is an authentic LOUIS VUITTON Reverse Monogram Giant Speedy Bandouliere 30. This classic tote is crafted of signature Louis Vuitton monogram toile canvas. The shoulder bag features vachetta cowhide leather rolled top handles, and polished brass hardware. The top opens to a black fabric interior with a hanging zipper pocket.", - "discounted_price": 1610, - "discounted_tier": 1, - "filters": { - "bags": [ - "Crossbody", - "Handbags", - "Shoulder Bags" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Louis Vuitton" - ], - "color": [ - "Browns" - ], - "material": [ - "Coated Canvas" - ], - "bag_feature": [ - "Top Handles", - "Zip Top" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$1000-$2000", - "condition": [ - "Worn" - ], - "locations": [ - "New York" - ] - }, - "following_count": 57, - "id": 1585086, - "made_available_at": 1740437633, - "price": 1695, - "priced_at": 1743026430, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/9fa99c621faaaf00f4f4660c98572ad7.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/9fa99c621faaaf00f4f4660c98572ad7.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/9fa99c621faaaf00f4f4660c98572ad7.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/181ad56c7dddabca51a9874a8b346618.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/181ad56c7dddabca51a9874a8b346618.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/181ad56c7dddabca51a9874a8b346618.jpg" - } - ], - "title": "LOUIS VUITTON Reverse Monogram Giant Speedy Bandouliere 30", - "title_without_brand": "Reverse Monogram Giant Speedy Bandouliere 30", - "_tags": [ - "1585086" - ], - "objectID": "1585086", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "speedy", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-monogram-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-speedy-handbags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-crossbody-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-monogram", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "top-handles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "crossbody-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "zip-top", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "le", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "loud-luxury", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "cross-body", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic LOUIS VUITTON Reverse Monogram Giant Speedy Bandouliere 30. This classic tote is crafted of signature Louis Vuitton monogram toile canvas. The shoulder bag features vachetta cowhide leather rolled top handles, and polished brass hardware. The top opens to a black fabric interior with a hanging zipper pocket.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Louis Vuitton", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Browns", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Coated Canvas", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1585086", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "LOUIS VUITTON Reverse Monogram Giant Speedy Bandouliere 30", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "David Yurman", + "product_name": "Sterling Silver 14K Yellow Gold Amethyst 5mm Cable Classics Petite Color Bracelet", + "condition": "Excellent", + "discounted_price": 25, + "price": 425, + "id": 10683284717871 }, { - "best_value": 60, - "categories": [ - "Wallets", - "Black", - "Womens", - "Leather", - "Solid Color", - "Caviar", - "Accessories", - "General", - "Zip Top", - "Structured", - "Chanel" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "chanel-on-sale", - "caviar", - "chanel", - "chanel-wallets", - "wallets-on-sale", - "accessories-on-sale", - "zip-top", - "wallets", - "accessories" - ], - "description": "This is an authentic CHANEL Caviar Quilted Classic Zipped Coin Purse in Black. This petite wallet is crafted of black caviar leather and features a wrap-around polished silver zipper with a CC logo on the front. The zipper opens to a partitioned burgundy fabric interior.", - "discounted_price": 615, - "discounted_tier": 1, - "filters": { - "bags": [], - "jewelry": [], - "accessories": [ - "Wallets" - ], - "watches": [], - "shoes": [], - "brands": [ - "Chanel" - ], - "color": [ - "Black" - ], - "material": [ - "Leather", - "Solid Color" - ], - "bag_feature": [ - "Zip Top", - "Structured" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$500-$1000", - "condition": [ - "Shows Wear" - ], - "locations": [ - "New York" - ] - }, - "following_count": 51, - "id": 1585212, - "made_available_at": 1740435582, - "price": 650, - "priced_at": 1743026411, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/b8257efff544a75f9b52b9c8b038b13e.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/b8257efff544a75f9b52b9c8b038b13e.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/b8257efff544a75f9b52b9c8b038b13e.jpg" - }, - { - "order": 3, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/6ca355ed3b49f79e173d6fb9391a4898.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/6ca355ed3b49f79e173d6fb9391a4898.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/6ca355ed3b49f79e173d6fb9391a4898.jpg" - } - ], - "title": "CHANEL Caviar Quilted Classic Zipped Coin Purse Black", - "title_without_brand": "Caviar Quilted Classic Zipped Coin Purse Black", - "_tags": [ - "1585212" - ], - "objectID": "1585212", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "caviar", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-wallets", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "wallets-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "zip-top", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "wallets", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic CHANEL Caviar Quilted Classic Zipped Coin Purse in Black. This petite wallet is crafted of black caviar leather and features a wrap-around polished silver zipper with a CC logo on the front. The zipper opens to a partitioned burgundy fabric interior.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Chanel", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Black", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1585212", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "CHANEL Caviar Quilted Classic Zipped Coin Purse Black", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Louis Vuitton", + "product_name": "Epi Monceau Black", + "condition": "Shows Wear", + "discounted_price": 40, + "price": 755, + "id": 10586171736367 }, { - "best_value": 60, - "categories": [ - "Wallets", - "Black", - "Womens", - "Leather", - "Solid Color", - "Caviar", - "Accessories", - "General", - "Zip Top", - "Structured", - "Chanel" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "chanel-on-sale", - "caviar", - "chanel", - "chanel-wallets", - "wallets-on-sale", - "accessories-on-sale", - "zip-top", - "wallets", - "accessories" - ], - "description": "This is an authentic CHANEL Caviar Quilted Classic Zipped Coin Purse in Black. This petite wallet is crafted of black caviar leather and features a wrap-around polished silver zipper with a CC logo on the front. The zipper opens to a partitioned burgundy fabric interior.", - "discounted_price": 615, - "discounted_tier": 1, - "filters": { - "bags": [], - "jewelry": [], - "accessories": [ - "Wallets" - ], - "watches": [], - "shoes": [], - "brands": [ - "Chanel" - ], - "color": [ - "Black" - ], - "material": [ - "Leather", - "Solid Color" - ], - "bag_feature": [ - "Zip Top", - "Structured" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$500-$1000", - "condition": [ - "Shows Wear" - ], - "locations": [ - "New York" - ] - }, - "following_count": 51, - "id": 1585212, - "made_available_at": 1740435582, - "price": 650, - "priced_at": 1743026411, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/b8257efff544a75f9b52b9c8b038b13e.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/b8257efff544a75f9b52b9c8b038b13e.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/b8257efff544a75f9b52b9c8b038b13e.jpg" - }, - { - "order": 3, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/6ca355ed3b49f79e173d6fb9391a4898.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/6ca355ed3b49f79e173d6fb9391a4898.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/6ca355ed3b49f79e173d6fb9391a4898.jpg" - } - ], - "title": "CHANEL Caviar Quilted Classic Zipped Coin Purse Black", - "title_without_brand": "Caviar Quilted Classic Zipped Coin Purse Black", - "_tags": [ - "1585212" - ], - "objectID": "1585212", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "caviar", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-wallets", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "wallets-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "zip-top", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "wallets", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic CHANEL Caviar Quilted Classic Zipped Coin Purse in Black. This petite wallet is crafted of black caviar leather and features a wrap-around polished silver zipper with a CC logo on the front. The zipper opens to a partitioned burgundy fabric interior.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Chanel", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Black", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1585212", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "CHANEL Caviar Quilted Classic Zipped Coin Purse Black", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Hermes", + "product_name": "Togo Birkin 35 Rose Pourpre", + "condition": "Shows Wear", + "discounted_price": 500, + "price": 9495, + "id": 10678266233135 }, { - "best_value": 60, - "categories": [ - "Wallets", - "Black", - "Womens", - "Leather", - "Solid Color", - "Caviar", - "Accessories", - "General", - "Zip Top", - "Structured", - "Chanel" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "chanel-on-sale", - "caviar", - "chanel", - "chanel-wallets", - "wallets-on-sale", - "accessories-on-sale", - "zip-top", - "wallets", - "accessories" - ], - "description": "This is an authentic CHANEL Caviar Quilted Classic Zipped Coin Purse in Black. This petite wallet is crafted of black caviar leather and features a wrap-around polished silver zipper with a CC logo on the front. The zipper opens to a partitioned burgundy fabric interior.", - "discounted_price": 615, - "discounted_tier": 1, - "filters": { - "bags": [], - "jewelry": [], - "accessories": [ - "Wallets" - ], - "watches": [], - "shoes": [], - "brands": [ - "Chanel" - ], - "color": [ - "Black" - ], - "material": [ - "Leather", - "Solid Color" - ], - "bag_feature": [ - "Zip Top", - "Structured" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$500-$1000", - "condition": [ - "Shows Wear" - ], - "locations": [ - "New York" - ] - }, - "following_count": 51, - "id": 1585212, - "made_available_at": 1740435582, - "price": 650, - "priced_at": 1743026411, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/b8257efff544a75f9b52b9c8b038b13e.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/b8257efff544a75f9b52b9c8b038b13e.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/b8257efff544a75f9b52b9c8b038b13e.jpg" - }, - { - "order": 3, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/6ca355ed3b49f79e173d6fb9391a4898.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/6ca355ed3b49f79e173d6fb9391a4898.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/6ca355ed3b49f79e173d6fb9391a4898.jpg" - } - ], - "title": "CHANEL Caviar Quilted Classic Zipped Coin Purse Black", - "title_without_brand": "Caviar Quilted Classic Zipped Coin Purse Black", - "_tags": [ - "1585212" - ], - "objectID": "1585212", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "caviar", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-wallets", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "wallets-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "zip-top", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "wallets", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic CHANEL Caviar Quilted Classic Zipped Coin Purse in Black. This petite wallet is crafted of black caviar leather and features a wrap-around polished silver zipper with a CC logo on the front. The zipper opens to a partitioned burgundy fabric interior.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Chanel", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Black", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1585212", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "CHANEL Caviar Quilted Classic Zipped Coin Purse Black", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Louis Vuitton", + "product_name": "Monogram Loop", + "condition": "Excellent", + "discounted_price": 120, + "price": 2290, + "id": 10745005441327 }, { - "best_value": 1000, - "categories": [ - "Structured", - "Leather", - "Solid Color", - "Crossbody", - "Handbags", - "Styles", - "Browns", - "Shoulder Bags", - "Womens", - "Saint Laurent", - "Over 50% off Retail", - "Live Shopping with FASHIONPHILE" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoulder-bags-on-sale", - "ysl", - "saint-laurent-shoulder-bags", - "bags-under-1000", - "saint-laurent-sale", - "bags-on-sale", - "instagram-live-shopping", - "50-off-retail", - "crossbody-bags-on-sale", - "saint-laurent-bags", - "handbag-styles", - "shoulder-bags", - "saint-laurent-bags-under-1000", - "handbags", - "cross-body", - "saint-laurent-crossbody-bags" - ], - "description": "This is an authentic SAINT LAURENT Smooth Calfskin North South Kaia Satchel in Vintage Brown. This ultra-stylish shoulder bag is finely crafted of smooth calfskin leather. This features an adjustable leather shoulder strap, a front flap with a gold YSL logo. The flap opens to a matching interior with card slots.", - "discounted_price": 850, - "discounted_tier": 1, - "filters": { - "bags": [ - "Crossbody", - "Handbags", - "Shoulder Bags" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Saint Laurent" - ], - "color": [ - "Browns" - ], - "material": [ - "Leather", - "Solid Color" - ], - "bag_feature": [ - "Structured" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$500-$1000", - "condition": [ - "Excellent" - ], - "locations": [ - "New York" - ] - }, - "following_count": 63, - "id": 1585263, - "made_available_at": 1740433768, - "price": 895, - "priced_at": 1743023891, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/907830a3e0f3902db94620653ad1969f.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/907830a3e0f3902db94620653ad1969f.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/907830a3e0f3902db94620653ad1969f.jpg" - }, - { - "order": 2, - "path": "/thumb/fb0c1a3511cd6aa055a36968f70bcc96/5938ae96b29b1cb4f8e82e9f8fea759a.jpg", - "thumb": "/thumb/fb0c1a3511cd6aa055a36968f70bcc96/5938ae96b29b1cb4f8e82e9f8fea759a.jpg", - "tiny": "/tiny/fb0c1a3511cd6aa055a36968f70bcc96/5938ae96b29b1cb4f8e82e9f8fea759a.jpg" - } - ], - "title": "SAINT LAURENT Smooth Calfskin North South Kaia Satchel Vintage Brown", - "title_without_brand": "Smooth Calfskin North South Kaia Satchel Vintage Brown", - "_tags": [ - "1585263" - ], - "objectID": "1585263", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "ysl", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "saint-laurent-shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "saint-laurent-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "instagram-live-shopping", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "50-off-retail", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "crossbody-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "saint-laurent-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "saint-laurent-bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "cross-body", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "saint-laurent-crossbody-bags", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic SAINT LAURENT Smooth Calfskin North South Kaia Satchel in Vintage Brown. This ultra-stylish shoulder bag is finely crafted of smooth calfskin leather. This features an adjustable leather shoulder strap, a front flap with a gold YSL logo. The flap opens to a matching interior with card slots.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Saint Laurent", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Browns", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1585263", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "SAINT LAURENT Smooth Calfskin North South Kaia Satchel Vintage Brown", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Celine", + "product_name": "Drummed Calfskin Micro Luggage Red", + "condition": "Shows Wear", + "discounted_price": 60, + "price": 1090, + "id": 10744386879791 }, { - "best_value": 1000, - "categories": [ - "Structured", - "Leather", - "Solid Color", - "Crossbody", - "Handbags", - "Styles", - "Browns", - "Shoulder Bags", - "Womens", - "Saint Laurent", - "Over 50% off Retail", - "Live Shopping with FASHIONPHILE" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoulder-bags-on-sale", - "ysl", - "saint-laurent-shoulder-bags", - "bags-under-1000", - "saint-laurent-sale", - "bags-on-sale", - "instagram-live-shopping", - "50-off-retail", - "crossbody-bags-on-sale", - "saint-laurent-bags", - "handbag-styles", - "shoulder-bags", - "saint-laurent-bags-under-1000", - "handbags", - "cross-body", - "saint-laurent-crossbody-bags" - ], - "description": "This is an authentic SAINT LAURENT Smooth Calfskin North South Kaia Satchel in Vintage Brown. This ultra-stylish shoulder bag is finely crafted of smooth calfskin leather. This features an adjustable leather shoulder strap, a front flap with a gold YSL logo. The flap opens to a matching interior with card slots.", - "discounted_price": 850, - "discounted_tier": 1, - "filters": { - "bags": [ - "Crossbody", - "Handbags", - "Shoulder Bags" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Saint Laurent" - ], - "color": [ - "Browns" - ], - "material": [ - "Leather", - "Solid Color" - ], - "bag_feature": [ - "Structured" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$500-$1000", - "condition": [ - "Excellent" - ], - "locations": [ - "New York" - ] - }, - "following_count": 63, - "id": 1585263, - "made_available_at": 1740433768, - "price": 895, - "priced_at": 1743023891, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/907830a3e0f3902db94620653ad1969f.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/907830a3e0f3902db94620653ad1969f.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/907830a3e0f3902db94620653ad1969f.jpg" - }, - { - "order": 2, - "path": "/thumb/fb0c1a3511cd6aa055a36968f70bcc96/5938ae96b29b1cb4f8e82e9f8fea759a.jpg", - "thumb": "/thumb/fb0c1a3511cd6aa055a36968f70bcc96/5938ae96b29b1cb4f8e82e9f8fea759a.jpg", - "tiny": "/tiny/fb0c1a3511cd6aa055a36968f70bcc96/5938ae96b29b1cb4f8e82e9f8fea759a.jpg" - } - ], - "title": "SAINT LAURENT Smooth Calfskin North South Kaia Satchel Vintage Brown", - "title_without_brand": "Smooth Calfskin North South Kaia Satchel Vintage Brown", - "_tags": [ - "1585263" - ], - "objectID": "1585263", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "ysl", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "saint-laurent-shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "saint-laurent-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "instagram-live-shopping", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "50-off-retail", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "crossbody-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "saint-laurent-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "saint-laurent-bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "cross-body", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "saint-laurent-crossbody-bags", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic SAINT LAURENT Smooth Calfskin North South Kaia Satchel in Vintage Brown. This ultra-stylish shoulder bag is finely crafted of smooth calfskin leather. This features an adjustable leather shoulder strap, a front flap with a gold YSL logo. The flap opens to a matching interior with card slots.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Saint Laurent", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Browns", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1585263", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "SAINT LAURENT Smooth Calfskin North South Kaia Satchel Vintage Brown", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Burberry", + "product_name": "E-Canvas Check Jett Backpack Navy Blue", + "condition": "Shows Wear", + "discounted_price": 25, + "price": 450, + "id": 10744286839087 }, { - "best_value": 1000, - "categories": [ - "Structured", - "Leather", - "Solid Color", - "Crossbody", - "Handbags", - "Styles", - "Browns", - "Shoulder Bags", - "Womens", - "Saint Laurent", - "Over 50% off Retail", - "Live Shopping with FASHIONPHILE" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoulder-bags-on-sale", - "ysl", - "saint-laurent-shoulder-bags", - "bags-under-1000", - "saint-laurent-sale", - "bags-on-sale", - "instagram-live-shopping", - "50-off-retail", - "crossbody-bags-on-sale", - "saint-laurent-bags", - "handbag-styles", - "shoulder-bags", - "saint-laurent-bags-under-1000", - "handbags", - "cross-body", - "saint-laurent-crossbody-bags" - ], - "description": "This is an authentic SAINT LAURENT Smooth Calfskin North South Kaia Satchel in Vintage Brown. This ultra-stylish shoulder bag is finely crafted of smooth calfskin leather. This features an adjustable leather shoulder strap, a front flap with a gold YSL logo. The flap opens to a matching interior with card slots.", - "discounted_price": 850, - "discounted_tier": 1, - "filters": { - "bags": [ - "Crossbody", - "Handbags", - "Shoulder Bags" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Saint Laurent" - ], - "color": [ - "Browns" - ], - "material": [ - "Leather", - "Solid Color" - ], - "bag_feature": [ - "Structured" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$500-$1000", - "condition": [ - "Excellent" - ], - "locations": [ - "New York" - ] - }, - "following_count": 63, - "id": 1585263, - "made_available_at": 1740433768, - "price": 895, - "priced_at": 1743023891, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/907830a3e0f3902db94620653ad1969f.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/907830a3e0f3902db94620653ad1969f.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/907830a3e0f3902db94620653ad1969f.jpg" - }, - { - "order": 2, - "path": "/thumb/fb0c1a3511cd6aa055a36968f70bcc96/5938ae96b29b1cb4f8e82e9f8fea759a.jpg", - "thumb": "/thumb/fb0c1a3511cd6aa055a36968f70bcc96/5938ae96b29b1cb4f8e82e9f8fea759a.jpg", - "tiny": "/tiny/fb0c1a3511cd6aa055a36968f70bcc96/5938ae96b29b1cb4f8e82e9f8fea759a.jpg" - } - ], - "title": "SAINT LAURENT Smooth Calfskin North South Kaia Satchel Vintage Brown", - "title_without_brand": "Smooth Calfskin North South Kaia Satchel Vintage Brown", - "_tags": [ - "1585263" - ], - "objectID": "1585263", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "ysl", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "saint-laurent-shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "saint-laurent-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "instagram-live-shopping", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "50-off-retail", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "crossbody-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "saint-laurent-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "saint-laurent-bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "cross-body", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "saint-laurent-crossbody-bags", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic SAINT LAURENT Smooth Calfskin North South Kaia Satchel in Vintage Brown. This ultra-stylish shoulder bag is finely crafted of smooth calfskin leather. This features an adjustable leather shoulder strap, a front flap with a gold YSL logo. The flap opens to a matching interior with card slots.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Saint Laurent", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Browns", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1585263", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "SAINT LAURENT Smooth Calfskin North South Kaia Satchel Vintage Brown", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Chanel", + "product_name": "Lambskin Quilted Medium Double Flap Black White", + "condition": "Shows Wear", + "discounted_price": 420, + "price": 7975, + "id": 10744324063535 }, { - "best_value": 1680, - "categories": [ - "Wallets", - "Pink", - "Structured", - "Leather", - "Solid Color", - "Accessories", - "Gifts for Her", - "Hermes" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "hermes-wallets", - "gifts-for-her", - "wallets-on-sale", - "hermes", - "accessories-on-sale", - "wallets", - "accessories", - "hermes-on-sale" - ], - "description": "This is an authentic HERMES Evercolor Constance Long Wallet in Rose Azalee. This stylish wallet is crafted of fine calfskin leather in pink, with a rear flat pocket. The crossover flap opens with a prominent palladium Hermes H lock to a partitioned matching leather interior with card slots, patch pockets, and a zipper compartment.", - "discounted_price": 2845, - "discounted_tier": 1, - "filters": { - "bags": [], - "jewelry": [], - "accessories": [ - "Wallets" - ], - "watches": [], - "shoes": [], - "brands": [ - "Hermes" - ], - "color": [ - "Pink" - ], - "material": [ - "Leather", - "Solid Color" - ], - "bag_feature": [ - "Structured" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "Over $2000", - "condition": [ - "Excellent" - ], - "locations": [ - "New York" - ] - }, - "following_count": 26, - "id": 1585452, - "made_available_at": 1740435596, - "price": 2995, - "priced_at": 1743026411, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/ebe47d203adf4dbaa83e8a66af8b5e3b.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/ebe47d203adf4dbaa83e8a66af8b5e3b.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/ebe47d203adf4dbaa83e8a66af8b5e3b.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/ec52e482587a97022162451816bac058.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/ec52e482587a97022162451816bac058.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/ec52e482587a97022162451816bac058.jpg" - } - ], - "title": "HERMES Evercolor Constance Long Wallet Rose Azalee", - "title_without_brand": "Evercolor Constance Long Wallet Rose Azalee", - "_tags": [ - "1585452" - ], - "objectID": "1585452", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-wallets", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gifts-for-her", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "wallets-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "wallets", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-on-sale", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic HERMES Evercolor Constance Long Wallet in Rose Azalee. This stylish wallet is crafted of fine calfskin leather in pink, with a rear flat pocket. The crossover flap opens with a prominent palladium Hermes H lock to a partitioned matching leather interior with card slots, patch pockets, and a zipper compartment.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Hermes", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Pink", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1585452", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "HERMES Evercolor Constance Long Wallet Rose Azalee", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Bottega Veneta", + "product_name": "Nappa Intrecciato Buddy Bag White", + "condition": "Excellent", + "discounted_price": 115, + "price": 2190, + "id": 10744323539247 }, { - "best_value": 1680, - "categories": [ - "Wallets", - "Pink", - "Structured", - "Leather", - "Solid Color", - "Accessories", - "Gifts for Her", - "Hermes" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "hermes-wallets", - "gifts-for-her", - "wallets-on-sale", - "hermes", - "accessories-on-sale", - "wallets", - "accessories", - "hermes-on-sale" - ], - "description": "This is an authentic HERMES Evercolor Constance Long Wallet in Rose Azalee. This stylish wallet is crafted of fine calfskin leather in pink, with a rear flat pocket. The crossover flap opens with a prominent palladium Hermes H lock to a partitioned matching leather interior with card slots, patch pockets, and a zipper compartment.", - "discounted_price": 2845, - "discounted_tier": 1, - "filters": { - "bags": [], - "jewelry": [], - "accessories": [ - "Wallets" - ], - "watches": [], - "shoes": [], - "brands": [ - "Hermes" - ], - "color": [ - "Pink" - ], - "material": [ - "Leather", - "Solid Color" - ], - "bag_feature": [ - "Structured" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "Over $2000", - "condition": [ - "Excellent" - ], - "locations": [ - "New York" - ] - }, - "following_count": 26, - "id": 1585452, - "made_available_at": 1740435596, - "price": 2995, - "priced_at": 1743026411, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/ebe47d203adf4dbaa83e8a66af8b5e3b.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/ebe47d203adf4dbaa83e8a66af8b5e3b.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/ebe47d203adf4dbaa83e8a66af8b5e3b.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/ec52e482587a97022162451816bac058.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/ec52e482587a97022162451816bac058.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/ec52e482587a97022162451816bac058.jpg" - } - ], - "title": "HERMES Evercolor Constance Long Wallet Rose Azalee", - "title_without_brand": "Evercolor Constance Long Wallet Rose Azalee", - "_tags": [ - "1585452" - ], - "objectID": "1585452", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-wallets", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gifts-for-her", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "wallets-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "wallets", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-on-sale", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic HERMES Evercolor Constance Long Wallet in Rose Azalee. This stylish wallet is crafted of fine calfskin leather in pink, with a rear flat pocket. The crossover flap opens with a prominent palladium Hermes H lock to a partitioned matching leather interior with card slots, patch pockets, and a zipper compartment.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Hermes", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Pink", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1585452", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "HERMES Evercolor Constance Long Wallet Rose Azalee", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Gucci", + "product_name": "Monogram Jumbo GG Textured Dollar Calfskin Web Medium Duffle Bag Camel Ebony", + "condition": "Excellent", + "discounted_price": 110, + "price": 2090, + "id": 10744976834863 }, { - "best_value": 1680, - "categories": [ - "Wallets", - "Pink", - "Structured", - "Leather", - "Solid Color", - "Accessories", - "Gifts for Her", - "Hermes" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "hermes-wallets", - "gifts-for-her", - "wallets-on-sale", - "hermes", - "accessories-on-sale", - "wallets", - "accessories", - "hermes-on-sale" - ], - "description": "This is an authentic HERMES Evercolor Constance Long Wallet in Rose Azalee. This stylish wallet is crafted of fine calfskin leather in pink, with a rear flat pocket. The crossover flap opens with a prominent palladium Hermes H lock to a partitioned matching leather interior with card slots, patch pockets, and a zipper compartment.", - "discounted_price": 2845, - "discounted_tier": 1, - "filters": { - "bags": [], - "jewelry": [], - "accessories": [ - "Wallets" - ], - "watches": [], - "shoes": [], - "brands": [ - "Hermes" - ], - "color": [ - "Pink" - ], - "material": [ - "Leather", - "Solid Color" - ], - "bag_feature": [ - "Structured" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "Over $2000", - "condition": [ - "Excellent" - ], - "locations": [ - "New York" - ] - }, - "following_count": 26, - "id": 1585452, - "made_available_at": 1740435596, - "price": 2995, - "priced_at": 1743026411, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/ebe47d203adf4dbaa83e8a66af8b5e3b.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/ebe47d203adf4dbaa83e8a66af8b5e3b.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/ebe47d203adf4dbaa83e8a66af8b5e3b.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/ec52e482587a97022162451816bac058.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/ec52e482587a97022162451816bac058.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/ec52e482587a97022162451816bac058.jpg" - } - ], - "title": "HERMES Evercolor Constance Long Wallet Rose Azalee", - "title_without_brand": "Evercolor Constance Long Wallet Rose Azalee", - "_tags": [ - "1585452" - ], - "objectID": "1585452", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-wallets", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gifts-for-her", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "wallets-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "wallets", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-on-sale", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic HERMES Evercolor Constance Long Wallet in Rose Azalee. This stylish wallet is crafted of fine calfskin leather in pink, with a rear flat pocket. The crossover flap opens with a prominent palladium Hermes H lock to a partitioned matching leather interior with card slots, patch pockets, and a zipper compartment.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Hermes", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Pink", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1585452", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "HERMES Evercolor Constance Long Wallet Rose Azalee", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Celine", + "product_name": "Shiny Calfskin Stripes Small C Bag Black", + "condition": "Shows Wear", + "discounted_price": 40, + "price": 750, + "id": 10744407327023 }, { - "best_value": 870, - "categories": [ - "Browns", - "Top Handles", - "Coated Canvas", - "Crossbody", - "Handbags", - "Shoulder Bags", - "Monogram", - "Styles", - "Totes", - "General", - "Womens", - "Open Top", - "Leather", - "Maxi Bags", - "Louis Vuitton" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoulder-bags-on-sale", - "bags-under-1000", - "louis-vuitton-shoulder-bags", - "louis-vuitton-monogram-bags", - "bags-on-sale", - "louis-vuitton-crossbody-bags", - "louis-vuitton-on-sale", - "totes-on-sale", - "louis-vuitton-monogram", - "louis-vuitton", - "top-handles", - "totes", - "maxi-bags", - "crossbody-bags-on-sale", - "louis-vuitton-bags", - "handbag-styles", - "shoulder-bags", - "handbags", - "cross-body", - "louis-vuitton-totes" - ], - "description": "LOUIS VUITTON Monogram Macassar Weekend Tote GM. This bag is crafted of classic Louis Vuitton monogram toile canvas with cowhide leather trim in black. The bag features black strap handles, an optional canvas shoulder strap, black hardware and a front pocket. The top opens a natural canvas interior with a monogram snap-in pochette.", - "discounted_price": 1990, - "discounted_tier": 1, - "filters": { - "bags": [ - "Crossbody", - "Handbags", - "Shoulder Bags", - "Totes" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Louis Vuitton" - ], - "color": [ - "Browns" - ], - "material": [ - "Coated Canvas", - "Leather" - ], - "bag_feature": [ - "Top Handles", - "Open Top" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$1000-$2000", - "condition": [ - "Shows Wear" - ], - "locations": [ - "New York" - ] - }, - "following_count": 34, - "id": 1585501, - "made_available_at": 1740431867, - "price": 2095, - "priced_at": 1743023867, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/ab667d6fd3a9d604ab2c8ceed964fc91.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/ab667d6fd3a9d604ab2c8ceed964fc91.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/ab667d6fd3a9d604ab2c8ceed964fc91.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/0560f867ccbc7f79a4e8b2f67336b192.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/0560f867ccbc7f79a4e8b2f67336b192.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/0560f867ccbc7f79a4e8b2f67336b192.jpg" - } - ], - "title": "LOUIS VUITTON Monogram Macassar Weekend Tote GM", - "title_without_brand": "Monogram Macassar Weekend Tote GM", - "_tags": [ - "1585501" - ], - "objectID": "1585501", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-monogram-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-crossbody-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "totes-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-monogram", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "top-handles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "totes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "maxi-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "crossbody-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "cross-body", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-totes", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "LOUIS VUITTON Monogram Macassar Weekend Tote GM. This bag is crafted of classic Louis Vuitton monogram toile canvas with cowhide leather trim in black. The bag features black strap handles, an optional canvas shoulder strap, black hardware and a front pocket. The top opens a natural canvas interior with a monogram snap-in pochette.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Louis Vuitton", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Browns", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Coated Canvas", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1585501", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "LOUIS VUITTON Monogram Macassar Weekend Tote GM", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Chanel", + "product_name": "Caviar Quilted Large Flap Wallet Black", + "condition": "Shows Wear", + "discounted_price": 50, + "price": 995, + "id": 10744393171247 }, { - "best_value": 870, - "categories": [ - "Browns", - "Top Handles", - "Coated Canvas", - "Crossbody", - "Handbags", - "Shoulder Bags", - "Monogram", - "Styles", - "Totes", - "General", - "Womens", - "Open Top", - "Leather", - "Maxi Bags", - "Louis Vuitton" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoulder-bags-on-sale", - "bags-under-1000", - "louis-vuitton-shoulder-bags", - "louis-vuitton-monogram-bags", - "bags-on-sale", - "louis-vuitton-crossbody-bags", - "louis-vuitton-on-sale", - "totes-on-sale", - "louis-vuitton-monogram", - "louis-vuitton", - "top-handles", - "totes", - "maxi-bags", - "crossbody-bags-on-sale", - "louis-vuitton-bags", - "handbag-styles", - "shoulder-bags", - "handbags", - "cross-body", - "louis-vuitton-totes" - ], - "description": "LOUIS VUITTON Monogram Macassar Weekend Tote GM. This bag is crafted of classic Louis Vuitton monogram toile canvas with cowhide leather trim in black. The bag features black strap handles, an optional canvas shoulder strap, black hardware and a front pocket. The top opens a natural canvas interior with a monogram snap-in pochette.", - "discounted_price": 1990, - "discounted_tier": 1, - "filters": { - "bags": [ - "Crossbody", - "Handbags", - "Shoulder Bags", - "Totes" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Louis Vuitton" - ], - "color": [ - "Browns" - ], - "material": [ - "Coated Canvas", - "Leather" - ], - "bag_feature": [ - "Top Handles", - "Open Top" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$1000-$2000", - "condition": [ - "Shows Wear" - ], - "locations": [ - "New York" - ] - }, - "following_count": 34, - "id": 1585501, - "made_available_at": 1740431867, - "price": 2095, - "priced_at": 1743023867, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/ab667d6fd3a9d604ab2c8ceed964fc91.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/ab667d6fd3a9d604ab2c8ceed964fc91.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/ab667d6fd3a9d604ab2c8ceed964fc91.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/0560f867ccbc7f79a4e8b2f67336b192.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/0560f867ccbc7f79a4e8b2f67336b192.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/0560f867ccbc7f79a4e8b2f67336b192.jpg" - } - ], - "title": "LOUIS VUITTON Monogram Macassar Weekend Tote GM", - "title_without_brand": "Monogram Macassar Weekend Tote GM", - "_tags": [ - "1585501" - ], - "objectID": "1585501", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-monogram-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-crossbody-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "totes-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-monogram", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "top-handles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "totes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "maxi-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "crossbody-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "cross-body", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-totes", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "LOUIS VUITTON Monogram Macassar Weekend Tote GM. This bag is crafted of classic Louis Vuitton monogram toile canvas with cowhide leather trim in black. The bag features black strap handles, an optional canvas shoulder strap, black hardware and a front pocket. The top opens a natural canvas interior with a monogram snap-in pochette.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Louis Vuitton", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Browns", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Coated Canvas", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1585501", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "LOUIS VUITTON Monogram Macassar Weekend Tote GM", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Chanel", + "product_name": "Grained Vegetal Calfskin Small Urban Shopping Tote Black", + "condition": "Shows Wear", + "discounted_price": 135, + "price": 2590, + "id": 10744388387119 }, { - "best_value": 870, - "categories": [ - "Browns", - "Top Handles", - "Coated Canvas", - "Crossbody", - "Handbags", - "Shoulder Bags", - "Monogram", - "Styles", - "Totes", - "General", - "Womens", - "Open Top", - "Leather", - "Maxi Bags", - "Louis Vuitton" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoulder-bags-on-sale", - "bags-under-1000", - "louis-vuitton-shoulder-bags", - "louis-vuitton-monogram-bags", - "bags-on-sale", - "louis-vuitton-crossbody-bags", - "louis-vuitton-on-sale", - "totes-on-sale", - "louis-vuitton-monogram", - "louis-vuitton", - "top-handles", - "totes", - "maxi-bags", - "crossbody-bags-on-sale", - "louis-vuitton-bags", - "handbag-styles", - "shoulder-bags", - "handbags", - "cross-body", - "louis-vuitton-totes" - ], - "description": "LOUIS VUITTON Monogram Macassar Weekend Tote GM. This bag is crafted of classic Louis Vuitton monogram toile canvas with cowhide leather trim in black. The bag features black strap handles, an optional canvas shoulder strap, black hardware and a front pocket. The top opens a natural canvas interior with a monogram snap-in pochette.", - "discounted_price": 1990, - "discounted_tier": 1, - "filters": { - "bags": [ - "Crossbody", - "Handbags", - "Shoulder Bags", - "Totes" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Louis Vuitton" - ], - "color": [ - "Browns" - ], - "material": [ - "Coated Canvas", - "Leather" - ], - "bag_feature": [ - "Top Handles", - "Open Top" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$1000-$2000", - "condition": [ - "Shows Wear" - ], - "locations": [ - "New York" - ] - }, - "following_count": 34, - "id": 1585501, - "made_available_at": 1740431867, - "price": 2095, - "priced_at": 1743023867, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/ab667d6fd3a9d604ab2c8ceed964fc91.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/ab667d6fd3a9d604ab2c8ceed964fc91.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/ab667d6fd3a9d604ab2c8ceed964fc91.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/0560f867ccbc7f79a4e8b2f67336b192.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/0560f867ccbc7f79a4e8b2f67336b192.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/0560f867ccbc7f79a4e8b2f67336b192.jpg" - } - ], - "title": "LOUIS VUITTON Monogram Macassar Weekend Tote GM", - "title_without_brand": "Monogram Macassar Weekend Tote GM", - "_tags": [ - "1585501" - ], - "objectID": "1585501", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-monogram-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-crossbody-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "totes-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-monogram", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "top-handles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "totes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "maxi-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "crossbody-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "cross-body", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-totes", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "LOUIS VUITTON Monogram Macassar Weekend Tote GM. This bag is crafted of classic Louis Vuitton monogram toile canvas with cowhide leather trim in black. The bag features black strap handles, an optional canvas shoulder strap, black hardware and a front pocket. The top opens a natural canvas interior with a monogram snap-in pochette.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Louis Vuitton", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Browns", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Coated Canvas", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1585501", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "LOUIS VUITTON Monogram Macassar Weekend Tote GM", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Louis Vuitton", + "product_name": "Taiga Kendall PM Epicea", + "condition": "Shows Wear", + "discounted_price": 35, + "price": 675, + "id": 10656648331567 }, { - "best_value": 0, - "categories": [ - "Shoes", - "Fabrics", - "Sneakers", - "Accessories", - "General", - "Mens", - "Travel Essentials", - "Sporty & Chic", - "Friends & Family Event", - "Grays", - "Greens", - "Gifts for Him", - "9", - "Fendi" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "fendi-on-sale", - "mens", - "shoes-on-sale", - "travel-essentials", - "fendi-shoes", - "sneakers-shoes", - "gifts-for-him", - "accessories-on-sale", - "shoes", - "friends-and-family-event", - "fendi", - "accessories" - ], - "description": "This is an authentic FENDI Fabric Calfskin Rubber Transparent Mens Fendi Flow Low Top Sneakers size 9 in Grigio and Ultra White. These sneakers are crafted of rubber and transparent fabric in grey. These are stylish sneakers that feature a round toe, white laces, and rubber soles.", - "discounted_price": 375, - "discounted_tier": 1, - "filters": { - "bags": [], - "jewelry": [], - "accessories": [ - "Shoes" - ], - "watches": [], - "shoes": [ - "Sneakers" - ], - "brands": [ - "Fendi" - ], - "color": [ - "Grays", - "Greens" - ], - "material": [ - "Fabrics" - ], - "bag_feature": [], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [ - "9" - ], - "on_sale": [ - "5% Off" - ], - "price": "$200-$500", - "condition": [ - "Excellent" - ], - "locations": [ - "Carlsbad" - ] - }, - "following_count": 13, - "id": 1585611, - "made_available_at": 1740430902, - "price": 395, - "priced_at": 1743023854, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/b6fdc153f71cdcbc390f501dbafd5355.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/b6fdc153f71cdcbc390f501dbafd5355.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/b6fdc153f71cdcbc390f501dbafd5355.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/1bddb684ce2169f9f6cecce12c3c318d.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/1bddb684ce2169f9f6cecce12c3c318d.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/1bddb684ce2169f9f6cecce12c3c318d.jpg" - } - ], - "title": "FENDI Fabric Calfskin Rubber Transparent Mens Fendi Flow Low Top Sneakers 9 Grigio Ultra White", - "title_without_brand": "Fabric Calfskin Rubber Transparent Mens Fendi Flow Low Top Sneakers 9 Grigio Ultra White", - "_tags": [ - "1585611" - ], - "objectID": "1585611", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "fendi-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "mens", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoes-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "travel-essentials", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "fendi-shoes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "sneakers-shoes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gifts-for-him", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "friends-and-family-event", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "fendi", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic FENDI Fabric Calfskin Rubber Transparent Mens Fendi Flow Low Top Sneakers size 9 in Grigio and Ultra White. These sneakers are crafted of rubber and transparent fabric in grey. These are stylish sneakers that feature a round toe, white laces, and rubber soles.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Fendi", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Grays", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Greens", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Fabrics", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1585611", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "FENDI Fabric Calfskin Rubber Transparent Mens Fendi Flow Low Top Sneakers 9 Grigio Ultra White", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Louis Vuitton", + "product_name": "Taurillon Bandouliere Shoulder Strap Black", + "condition": "Shows Wear", + "discounted_price": 40, + "price": 725, + "id": 10545693393199 }, { - "best_value": 0, - "categories": [ - "Shoes", - "Fabrics", - "Sneakers", - "Accessories", - "General", - "Mens", - "Travel Essentials", - "Sporty & Chic", - "Friends & Family Event", - "Grays", - "Greens", - "Gifts for Him", - "9", - "Fendi" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "fendi-on-sale", - "mens", - "shoes-on-sale", - "travel-essentials", - "fendi-shoes", - "sneakers-shoes", - "gifts-for-him", - "accessories-on-sale", - "shoes", - "friends-and-family-event", - "fendi", - "accessories" - ], - "description": "This is an authentic FENDI Fabric Calfskin Rubber Transparent Mens Fendi Flow Low Top Sneakers size 9 in Grigio and Ultra White. These sneakers are crafted of rubber and transparent fabric in grey. These are stylish sneakers that feature a round toe, white laces, and rubber soles.", - "discounted_price": 375, - "discounted_tier": 1, - "filters": { - "bags": [], - "jewelry": [], - "accessories": [ - "Shoes" - ], - "watches": [], - "shoes": [ - "Sneakers" - ], - "brands": [ - "Fendi" - ], - "color": [ - "Grays", - "Greens" - ], - "material": [ - "Fabrics" - ], - "bag_feature": [], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [ - "9" - ], - "on_sale": [ - "5% Off" - ], - "price": "$200-$500", - "condition": [ - "Excellent" - ], - "locations": [ - "Carlsbad" - ] - }, - "following_count": 13, - "id": 1585611, - "made_available_at": 1740430902, - "price": 395, - "priced_at": 1743023854, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/b6fdc153f71cdcbc390f501dbafd5355.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/b6fdc153f71cdcbc390f501dbafd5355.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/b6fdc153f71cdcbc390f501dbafd5355.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/1bddb684ce2169f9f6cecce12c3c318d.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/1bddb684ce2169f9f6cecce12c3c318d.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/1bddb684ce2169f9f6cecce12c3c318d.jpg" - } - ], - "title": "FENDI Fabric Calfskin Rubber Transparent Mens Fendi Flow Low Top Sneakers 9 Grigio Ultra White", - "title_without_brand": "Fabric Calfskin Rubber Transparent Mens Fendi Flow Low Top Sneakers 9 Grigio Ultra White", - "_tags": [ - "1585611" - ], - "objectID": "1585611", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "fendi-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "mens", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoes-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "travel-essentials", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "fendi-shoes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "sneakers-shoes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gifts-for-him", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "friends-and-family-event", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "fendi", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic FENDI Fabric Calfskin Rubber Transparent Mens Fendi Flow Low Top Sneakers size 9 in Grigio and Ultra White. These sneakers are crafted of rubber and transparent fabric in grey. These are stylish sneakers that feature a round toe, white laces, and rubber soles.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Fendi", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Grays", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Greens", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Fabrics", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1585611", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "FENDI Fabric Calfskin Rubber Transparent Mens Fendi Flow Low Top Sneakers 9 Grigio Ultra White", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Louis Vuitton", + "product_name": "Damier Azur Croisette", + "condition": "Shows Wear", + "discounted_price": 90, + "price": 1690, + "id": 10744352014639 }, { - "best_value": 0, - "categories": [ - "Shoes", - "Fabrics", - "Sneakers", - "Accessories", - "General", - "Mens", - "Travel Essentials", - "Sporty & Chic", - "Friends & Family Event", - "Grays", - "Greens", - "Gifts for Him", - "9", - "Fendi" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "fendi-on-sale", - "mens", - "shoes-on-sale", - "travel-essentials", - "fendi-shoes", - "sneakers-shoes", - "gifts-for-him", - "accessories-on-sale", - "shoes", - "friends-and-family-event", - "fendi", - "accessories" - ], - "description": "This is an authentic FENDI Fabric Calfskin Rubber Transparent Mens Fendi Flow Low Top Sneakers size 9 in Grigio and Ultra White. These sneakers are crafted of rubber and transparent fabric in grey. These are stylish sneakers that feature a round toe, white laces, and rubber soles.", - "discounted_price": 375, - "discounted_tier": 1, - "filters": { - "bags": [], - "jewelry": [], - "accessories": [ - "Shoes" - ], - "watches": [], - "shoes": [ - "Sneakers" - ], - "brands": [ - "Fendi" - ], - "color": [ - "Grays", - "Greens" - ], - "material": [ - "Fabrics" - ], - "bag_feature": [], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [ - "9" - ], - "on_sale": [ - "5% Off" - ], - "price": "$200-$500", - "condition": [ - "Excellent" - ], - "locations": [ - "Carlsbad" - ] - }, - "following_count": 13, - "id": 1585611, - "made_available_at": 1740430902, + "brand_name": "Chanel", + "product_name": "Patent Calfskin Quilted Brilliant Zip Coin Purse Wallet Black", + "condition": "Shows Wear", + "discounted_price": 20, "price": 395, - "priced_at": 1743023854, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/b6fdc153f71cdcbc390f501dbafd5355.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/b6fdc153f71cdcbc390f501dbafd5355.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/b6fdc153f71cdcbc390f501dbafd5355.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/1bddb684ce2169f9f6cecce12c3c318d.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/1bddb684ce2169f9f6cecce12c3c318d.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/1bddb684ce2169f9f6cecce12c3c318d.jpg" - } - ], - "title": "FENDI Fabric Calfskin Rubber Transparent Mens Fendi Flow Low Top Sneakers 9 Grigio Ultra White", - "title_without_brand": "Fabric Calfskin Rubber Transparent Mens Fendi Flow Low Top Sneakers 9 Grigio Ultra White", - "_tags": [ - "1585611" - ], - "objectID": "1585611", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "fendi-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "mens", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoes-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "travel-essentials", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "fendi-shoes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "sneakers-shoes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gifts-for-him", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "friends-and-family-event", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "fendi", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic FENDI Fabric Calfskin Rubber Transparent Mens Fendi Flow Low Top Sneakers size 9 in Grigio and Ultra White. These sneakers are crafted of rubber and transparent fabric in grey. These are stylish sneakers that feature a round toe, white laces, and rubber soles.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Fendi", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Grays", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Greens", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Fabrics", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1585611", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "FENDI Fabric Calfskin Rubber Transparent Mens Fendi Flow Low Top Sneakers 9 Grigio Ultra White", - "matchLevel": "none", - "matchedWords": [] - } - } - }, - { - "best_value": 1020, - "categories": [ - "Open Top", - "Structured", - "Top Handles", - "Womens", - "Leather", - "Solid Color", - "Handbags", - "Totes", - "General", - "Styles", - "Yellows", - "Loewe" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "bags-under-1000", - "bags-on-sale", - "loewe", - "totes-on-sale", - "top-handles", - "totes", - "yellows", - "handbag-styles", - "handbags" - ], - "description": "This is an authentic LOEWE Calfskin Mini Gate Tote. This chic crossbody is crafted of calfskin leather in mustard yellow. The bag features leather strap handles, an optional shoulder strap, and a knotted detail on the front. The top is open to a brown suede interior with patch pockets", - "discounted_price": 1230, - "discounted_tier": 1, - "filters": { - "bags": [ - "Handbags", - "Totes" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Loewe" - ], - "color": [ - "Yellows" - ], - "material": [ - "Leather", - "Solid Color" - ], - "bag_feature": [ - "Open Top", - "Structured", - "Top Handles" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$1000-$2000", - "condition": [ - "Excellent" - ], - "locations": [ - "New York" - ] - }, - "following_count": 80, - "id": 1585790, - "made_available_at": 1740433802, - "price": 1295, - "priced_at": 1743023892, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/a15eaca97d4b8184fd5125e89f19724e.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/a15eaca97d4b8184fd5125e89f19724e.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/a15eaca97d4b8184fd5125e89f19724e.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/756afadfd0652f0a3cec6e089f34ce14.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/756afadfd0652f0a3cec6e089f34ce14.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/756afadfd0652f0a3cec6e089f34ce14.jpg" - } - ], - "title": "LOEWE Calfskin Mini Gate Tote Mustard Yellow", - "title_without_brand": "Calfskin Mini Gate Tote Mustard Yellow", - "_tags": [ - "1585790" - ], - "objectID": "1585790", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "loewe", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "totes-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "top-handles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "totes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "yellows", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic LOEWE Calfskin Mini Gate Tote. This chic crossbody is crafted of calfskin leather in mustard yellow. The bag features leather strap handles, an optional shoulder strap, and a knotted detail on the front. The top is open to a brown suede interior with patch pockets", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Loewe", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Yellows", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1585790", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "LOEWE Calfskin Mini Gate Tote Mustard Yellow", - "matchLevel": "none", - "matchedWords": [] - } - } + "id": 10744347099439 }, { - "best_value": 1020, - "categories": [ - "Open Top", - "Structured", - "Top Handles", - "Womens", - "Leather", - "Solid Color", - "Handbags", - "Totes", - "General", - "Styles", - "Yellows", - "Loewe" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "bags-under-1000", - "bags-on-sale", - "loewe", - "totes-on-sale", - "top-handles", - "totes", - "yellows", - "handbag-styles", - "handbags" - ], - "description": "This is an authentic LOEWE Calfskin Mini Gate Tote. This chic crossbody is crafted of calfskin leather in mustard yellow. The bag features leather strap handles, an optional shoulder strap, and a knotted detail on the front. The top is open to a brown suede interior with patch pockets", - "discounted_price": 1230, - "discounted_tier": 1, - "filters": { - "bags": [ - "Handbags", - "Totes" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Loewe" - ], - "color": [ - "Yellows" - ], - "material": [ - "Leather", - "Solid Color" - ], - "bag_feature": [ - "Open Top", - "Structured", - "Top Handles" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$1000-$2000", - "condition": [ - "Excellent" - ], - "locations": [ - "New York" - ] - }, - "following_count": 80, - "id": 1585790, - "made_available_at": 1740433802, - "price": 1295, - "priced_at": 1743023892, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/a15eaca97d4b8184fd5125e89f19724e.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/a15eaca97d4b8184fd5125e89f19724e.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/a15eaca97d4b8184fd5125e89f19724e.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/756afadfd0652f0a3cec6e089f34ce14.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/756afadfd0652f0a3cec6e089f34ce14.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/756afadfd0652f0a3cec6e089f34ce14.jpg" - } - ], - "title": "LOEWE Calfskin Mini Gate Tote Mustard Yellow", - "title_without_brand": "Calfskin Mini Gate Tote Mustard Yellow", - "_tags": [ - "1585790" - ], - "objectID": "1585790", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "loewe", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "totes-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "top-handles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "totes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "yellows", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic LOEWE Calfskin Mini Gate Tote. This chic crossbody is crafted of calfskin leather in mustard yellow. The bag features leather strap handles, an optional shoulder strap, and a knotted detail on the front. The top is open to a brown suede interior with patch pockets", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Loewe", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Yellows", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1585790", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "LOEWE Calfskin Mini Gate Tote Mustard Yellow", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Gucci", + "product_name": "Textured Calfskin Medium Betty Chain Wallet Blossom", + "condition": "Excellent", + "discounted_price": 30, + "price": 530, + "id": 10689581580591 }, { - "best_value": 1020, - "categories": [ - "Open Top", - "Structured", - "Top Handles", - "Womens", - "Leather", - "Solid Color", - "Handbags", - "Totes", - "General", - "Styles", - "Yellows", - "Loewe" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "bags-under-1000", - "bags-on-sale", - "loewe", - "totes-on-sale", - "top-handles", - "totes", - "yellows", - "handbag-styles", - "handbags" - ], - "description": "This is an authentic LOEWE Calfskin Mini Gate Tote. This chic crossbody is crafted of calfskin leather in mustard yellow. The bag features leather strap handles, an optional shoulder strap, and a knotted detail on the front. The top is open to a brown suede interior with patch pockets", - "discounted_price": 1230, - "discounted_tier": 1, - "filters": { - "bags": [ - "Handbags", - "Totes" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Loewe" - ], - "color": [ - "Yellows" - ], - "material": [ - "Leather", - "Solid Color" - ], - "bag_feature": [ - "Open Top", - "Structured", - "Top Handles" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$1000-$2000", - "condition": [ - "Excellent" - ], - "locations": [ - "New York" - ] - }, - "following_count": 80, - "id": 1585790, - "made_available_at": 1740433802, - "price": 1295, - "priced_at": 1743023892, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/a15eaca97d4b8184fd5125e89f19724e.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/a15eaca97d4b8184fd5125e89f19724e.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/a15eaca97d4b8184fd5125e89f19724e.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/756afadfd0652f0a3cec6e089f34ce14.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/756afadfd0652f0a3cec6e089f34ce14.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/756afadfd0652f0a3cec6e089f34ce14.jpg" - } - ], - "title": "LOEWE Calfskin Mini Gate Tote Mustard Yellow", - "title_without_brand": "Calfskin Mini Gate Tote Mustard Yellow", - "_tags": [ - "1585790" - ], - "objectID": "1585790", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "loewe", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "totes-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "top-handles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "totes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "yellows", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic LOEWE Calfskin Mini Gate Tote. This chic crossbody is crafted of calfskin leather in mustard yellow. The bag features leather strap handles, an optional shoulder strap, and a knotted detail on the front. The top is open to a brown suede interior with patch pockets", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Loewe", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Yellows", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1585790", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "LOEWE Calfskin Mini Gate Tote Mustard Yellow", - "matchLevel": "none", - "matchedWords": [] - } - } - }, - { - "best_value": 905, - "categories": [ - "Black", - "Structured", - "Leather", - "Solid Color", - "Shoulder Bags", - "Caviar", - "Styles", - "General", - "Womens", - "Crossbody", - "Handbags", - "Emma Roberts' FASHIONPHILE Favorites", - "Editor's Picks", - "Iconic Leathers", - "Top Designers", - "Chanel" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoulder-bags-on-sale", - "chanel-on-sale", - "black-chanel-bags", - "bags-under-1000", - "emma-roberts-favorites", - "caviar", - "chanel-shoulder-bags", - "bags-on-sale", - "chanel", - "chanel-double-flap-bags", - "top-designers", - "most-wanted", - "crossbody-bags-on-sale", - "handbag-styles", - "chanel-bags", - "chanel-crossbody-bags", - "shoulder-bags", - "iconic-leathers", - "handbags", - "cross-body" - ], - "description": "This is an authentic CHANEL Caviar Quilted Small Double Flap in Black. This chic shoulder bag is crafted of diamond quilted caviar leather in black. The bag features a gold chain link leather threaded shoulder strap and front flap with a gold Chanel CC turn lock. The flap opens to an inner flap and a burgundy leather interior with patch pockets.", - "discounted_price": 9495, - "discounted_tier": 1, - "filters": { - "bags": [ - "Shoulder Bags", - "Crossbody", - "Handbags" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Chanel" - ], - "color": [ - "Black" - ], - "material": [ - "Leather", - "Solid Color" - ], - "bag_feature": [ - "Structured" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "Over $2000", - "condition": [ - "Excellent" - ], - "locations": [ - "New York" - ] - }, - "following_count": 62, - "id": 1585878, - "made_available_at": 1740433823, - "price": 9995, - "priced_at": 1743023892, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/1efb6b7eb65fc0f446d707af6b4973af.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/1efb6b7eb65fc0f446d707af6b4973af.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/1efb6b7eb65fc0f446d707af6b4973af.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/527bebd0b94b015edabf31b64da20aeb.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/527bebd0b94b015edabf31b64da20aeb.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/527bebd0b94b015edabf31b64da20aeb.jpg" - } - ], - "title": "CHANEL Caviar Quilted Small Double Flap Black", - "title_without_brand": "Caviar Quilted Small Double Flap Black", - "_tags": [ - "1585878" - ], - "objectID": "1585878", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "black-chanel-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "emma-roberts-favorites", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "caviar", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-double-flap-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "top-designers", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "most-wanted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "crossbody-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-crossbody-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "iconic-leathers", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "cross-body", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic CHANEL Caviar Quilted Small Double Flap in Black. This chic shoulder bag is crafted of diamond quilted caviar leather in black. The bag features a gold chain link leather threaded shoulder strap and front flap with a gold Chanel CC turn lock. The flap opens to an inner flap and a burgundy leather interior with patch pockets.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Chanel", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Black", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1585878", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "CHANEL Caviar Quilted Small Double Flap Black", - "matchLevel": "none", - "matchedWords": [] - } - } - }, - { - "best_value": 905, - "categories": [ - "Black", - "Structured", - "Leather", - "Solid Color", - "Shoulder Bags", - "Caviar", - "Styles", - "General", - "Womens", - "Crossbody", - "Handbags", - "Emma Roberts' FASHIONPHILE Favorites", - "Editor's Picks", - "Iconic Leathers", - "Top Designers", - "Chanel" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoulder-bags-on-sale", - "chanel-on-sale", - "black-chanel-bags", - "bags-under-1000", - "emma-roberts-favorites", - "caviar", - "chanel-shoulder-bags", - "bags-on-sale", - "chanel", - "chanel-double-flap-bags", - "top-designers", - "most-wanted", - "crossbody-bags-on-sale", - "handbag-styles", - "chanel-bags", - "chanel-crossbody-bags", - "shoulder-bags", - "iconic-leathers", - "handbags", - "cross-body" - ], - "description": "This is an authentic CHANEL Caviar Quilted Small Double Flap in Black. This chic shoulder bag is crafted of diamond quilted caviar leather in black. The bag features a gold chain link leather threaded shoulder strap and front flap with a gold Chanel CC turn lock. The flap opens to an inner flap and a burgundy leather interior with patch pockets.", - "discounted_price": 9495, - "discounted_tier": 1, - "filters": { - "bags": [ - "Shoulder Bags", - "Crossbody", - "Handbags" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Chanel" - ], - "color": [ - "Black" - ], - "material": [ - "Leather", - "Solid Color" - ], - "bag_feature": [ - "Structured" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "Over $2000", - "condition": [ - "Excellent" - ], - "locations": [ - "New York" - ] - }, - "following_count": 62, - "id": 1585878, - "made_available_at": 1740433823, - "price": 9995, - "priced_at": 1743023892, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/1efb6b7eb65fc0f446d707af6b4973af.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/1efb6b7eb65fc0f446d707af6b4973af.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/1efb6b7eb65fc0f446d707af6b4973af.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/527bebd0b94b015edabf31b64da20aeb.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/527bebd0b94b015edabf31b64da20aeb.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/527bebd0b94b015edabf31b64da20aeb.jpg" - } - ], - "title": "CHANEL Caviar Quilted Small Double Flap Black", - "title_without_brand": "Caviar Quilted Small Double Flap Black", - "_tags": [ - "1585878" - ], - "objectID": "1585878", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "black-chanel-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "emma-roberts-favorites", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "caviar", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-double-flap-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "top-designers", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "most-wanted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "crossbody-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-crossbody-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "iconic-leathers", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "cross-body", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic CHANEL Caviar Quilted Small Double Flap in Black. This chic shoulder bag is crafted of diamond quilted caviar leather in black. The bag features a gold chain link leather threaded shoulder strap and front flap with a gold Chanel CC turn lock. The flap opens to an inner flap and a burgundy leather interior with patch pockets.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Chanel", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Black", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1585878", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "CHANEL Caviar Quilted Small Double Flap Black", - "matchLevel": "none", - "matchedWords": [] - } - } - }, - { - "best_value": 905, - "categories": [ - "Black", - "Structured", - "Leather", - "Solid Color", - "Shoulder Bags", - "Caviar", - "Styles", - "General", - "Womens", - "Crossbody", - "Handbags", - "Emma Roberts' FASHIONPHILE Favorites", - "Editor's Picks", - "Iconic Leathers", - "Top Designers", - "Chanel" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoulder-bags-on-sale", - "chanel-on-sale", - "black-chanel-bags", - "bags-under-1000", - "emma-roberts-favorites", - "caviar", - "chanel-shoulder-bags", - "bags-on-sale", - "chanel", - "chanel-double-flap-bags", - "top-designers", - "most-wanted", - "crossbody-bags-on-sale", - "handbag-styles", - "chanel-bags", - "chanel-crossbody-bags", - "shoulder-bags", - "iconic-leathers", - "handbags", - "cross-body" - ], - "description": "This is an authentic CHANEL Caviar Quilted Small Double Flap in Black. This chic shoulder bag is crafted of diamond quilted caviar leather in black. The bag features a gold chain link leather threaded shoulder strap and front flap with a gold Chanel CC turn lock. The flap opens to an inner flap and a burgundy leather interior with patch pockets.", - "discounted_price": 9495, - "discounted_tier": 1, - "filters": { - "bags": [ - "Shoulder Bags", - "Crossbody", - "Handbags" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Chanel" - ], - "color": [ - "Black" - ], - "material": [ - "Leather", - "Solid Color" - ], - "bag_feature": [ - "Structured" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "Over $2000", - "condition": [ - "Excellent" - ], - "locations": [ - "New York" - ] - }, - "following_count": 62, - "id": 1585878, - "made_available_at": 1740433823, - "price": 9995, - "priced_at": 1743023892, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/1efb6b7eb65fc0f446d707af6b4973af.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/1efb6b7eb65fc0f446d707af6b4973af.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/1efb6b7eb65fc0f446d707af6b4973af.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/527bebd0b94b015edabf31b64da20aeb.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/527bebd0b94b015edabf31b64da20aeb.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/527bebd0b94b015edabf31b64da20aeb.jpg" - } - ], - "title": "CHANEL Caviar Quilted Small Double Flap Black", - "title_without_brand": "Caviar Quilted Small Double Flap Black", - "_tags": [ - "1585878" - ], - "objectID": "1585878", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "black-chanel-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "emma-roberts-favorites", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "caviar", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-double-flap-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "top-designers", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "most-wanted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "crossbody-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-crossbody-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "iconic-leathers", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "cross-body", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic CHANEL Caviar Quilted Small Double Flap in Black. This chic shoulder bag is crafted of diamond quilted caviar leather in black. The bag features a gold chain link leather threaded shoulder strap and front flap with a gold Chanel CC turn lock. The flap opens to an inner flap and a burgundy leather interior with patch pockets.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Chanel", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Black", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1585878", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "CHANEL Caviar Quilted Small Double Flap Black", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Burberry", + "product_name": "Haymarket Check Colours Small Lorne Bucket Crossbody Poppy Red", + "condition": "Shows Wear", + "discounted_price": 35, + "price": 695, + "id": 10744331469103 }, { - "best_value": 295, - "categories": [ - "Leather", - "Limited Edition", - "Accessories", - "Greens", - "Household Items", - "Agendas", - "Solid Color", - "Taiga", - "Womens", - "Mens", - "Louis Vuitton", - "Vintage Finds" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "household-items", - "taiga", - "mens", - "vintage", - "agendas", - "louis-vuitton-on-sale", - "louis-vuitton", - "accessories-on-sale", - "le", - "accessories" - ], - "description": "This is an authentic LOUIS VUITTON Taiga Document Case in Epicea. This stylish document case is finely crafted of dark hunter green taiga leather. The document case opens to a green cross-grain leather interior.", - "discounted_price": 375, - "discounted_tier": 1, - "filters": { - "bags": [], - "jewelry": [], - "accessories": [ - "Household Items", - "Agendas" - ], - "watches": [], - "shoes": [], - "brands": [ - "Louis Vuitton" - ], - "color": [ - "Greens" - ], - "material": [ - "Leather", - "Solid Color" - ], - "bag_feature": [], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$200-$500", - "condition": [ - "Shows Wear" - ], - "locations": [ - "New York" - ] - }, - "following_count": 7, - "id": 1585984, - "made_available_at": 1740432848, - "price": 395, - "priced_at": 1743023870, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/67779bd42adfa51011483ebca38ec59d.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/67779bd42adfa51011483ebca38ec59d.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/67779bd42adfa51011483ebca38ec59d.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/7c682d5985cb37b2b81ee79165f4f2f0.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/7c682d5985cb37b2b81ee79165f4f2f0.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/7c682d5985cb37b2b81ee79165f4f2f0.jpg" - } - ], - "title": "LOUIS VUITTON Taiga Document Case Epicea", - "title_without_brand": "Taiga Document Case Epicea", - "_tags": [ - "1585984" - ], - "objectID": "1585984", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "household-items", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "taiga", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "mens", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "vintage", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "agendas", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "le", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic LOUIS VUITTON Taiga Document Case in Epicea. This stylish document case is finely crafted of dark hunter green taiga leather. The document case opens to a green cross-grain leather interior.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Louis Vuitton", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Greens", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1585984", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "LOUIS VUITTON Taiga Document Case Epicea", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Louis Vuitton", + "product_name": "LV X YK Epi Infinity Dots Twist Shoulder Bag MM Black", + "condition": "Excellent", + "discounted_price": 180, + "price": 3385, + "id": 10744327930159 }, { - "best_value": 295, - "categories": [ - "Leather", - "Limited Edition", - "Accessories", - "Greens", - "Household Items", - "Agendas", - "Solid Color", - "Taiga", - "Womens", - "Mens", - "Louis Vuitton", - "Vintage Finds" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "household-items", - "taiga", - "mens", - "vintage", - "agendas", - "louis-vuitton-on-sale", - "louis-vuitton", - "accessories-on-sale", - "le", - "accessories" - ], - "description": "This is an authentic LOUIS VUITTON Taiga Document Case in Epicea. This stylish document case is finely crafted of dark hunter green taiga leather. The document case opens to a green cross-grain leather interior.", - "discounted_price": 375, - "discounted_tier": 1, - "filters": { - "bags": [], - "jewelry": [], - "accessories": [ - "Household Items", - "Agendas" - ], - "watches": [], - "shoes": [], - "brands": [ - "Louis Vuitton" - ], - "color": [ - "Greens" - ], - "material": [ - "Leather", - "Solid Color" - ], - "bag_feature": [], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$200-$500", - "condition": [ - "Shows Wear" - ], - "locations": [ - "New York" - ] - }, - "following_count": 7, - "id": 1585984, - "made_available_at": 1740432848, - "price": 395, - "priced_at": 1743023870, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/67779bd42adfa51011483ebca38ec59d.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/67779bd42adfa51011483ebca38ec59d.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/67779bd42adfa51011483ebca38ec59d.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/7c682d5985cb37b2b81ee79165f4f2f0.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/7c682d5985cb37b2b81ee79165f4f2f0.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/7c682d5985cb37b2b81ee79165f4f2f0.jpg" - } - ], - "title": "LOUIS VUITTON Taiga Document Case Epicea", - "title_without_brand": "Taiga Document Case Epicea", - "_tags": [ - "1585984" - ], - "objectID": "1585984", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "household-items", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "taiga", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "mens", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "vintage", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "agendas", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "le", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic LOUIS VUITTON Taiga Document Case in Epicea. This stylish document case is finely crafted of dark hunter green taiga leather. The document case opens to a green cross-grain leather interior.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Louis Vuitton", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Greens", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1585984", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "LOUIS VUITTON Taiga Document Case Epicea", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Louis Vuitton", + "product_name": "Monogram Side Trunk PM", + "condition": "Excellent", + "discounted_price": 180, + "price": 3370, + "id": 10564484890927 }, { - "best_value": 295, - "categories": [ - "Leather", - "Limited Edition", - "Accessories", - "Greens", - "Household Items", - "Agendas", - "Solid Color", - "Taiga", - "Womens", - "Mens", - "Louis Vuitton", - "Vintage Finds" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "household-items", - "taiga", - "mens", - "vintage", - "agendas", - "louis-vuitton-on-sale", - "louis-vuitton", - "accessories-on-sale", - "le", - "accessories" - ], - "description": "This is an authentic LOUIS VUITTON Taiga Document Case in Epicea. This stylish document case is finely crafted of dark hunter green taiga leather. The document case opens to a green cross-grain leather interior.", - "discounted_price": 375, - "discounted_tier": 1, - "filters": { - "bags": [], - "jewelry": [], - "accessories": [ - "Household Items", - "Agendas" - ], - "watches": [], - "shoes": [], - "brands": [ - "Louis Vuitton" - ], - "color": [ - "Greens" - ], - "material": [ - "Leather", - "Solid Color" - ], - "bag_feature": [], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$200-$500", - "condition": [ - "Shows Wear" - ], - "locations": [ - "New York" - ] - }, - "following_count": 7, - "id": 1585984, - "made_available_at": 1740432848, - "price": 395, - "priced_at": 1743023870, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/67779bd42adfa51011483ebca38ec59d.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/67779bd42adfa51011483ebca38ec59d.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/67779bd42adfa51011483ebca38ec59d.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/7c682d5985cb37b2b81ee79165f4f2f0.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/7c682d5985cb37b2b81ee79165f4f2f0.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/7c682d5985cb37b2b81ee79165f4f2f0.jpg" - } - ], - "title": "LOUIS VUITTON Taiga Document Case Epicea", - "title_without_brand": "Taiga Document Case Epicea", - "_tags": [ - "1585984" - ], - "objectID": "1585984", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "household-items", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "taiga", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "mens", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "vintage", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "agendas", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "le", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic LOUIS VUITTON Taiga Document Case in Epicea. This stylish document case is finely crafted of dark hunter green taiga leather. The document case opens to a green cross-grain leather interior.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Louis Vuitton", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Greens", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1585984", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "LOUIS VUITTON Taiga Document Case Epicea", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Chanel", + "product_name": "Lambskin Quilted Mini Crown Box Bag Pink", + "condition": "Shows Wear", + "discounted_price": 140, + "price": 2610, + "id": 10546156142895 }, { - "best_value": 0, - "categories": [ - "Pink", - "Top Handles", - "Zip Top", - "Art / Scene on Exterior", - "Fabrics", - "Leather", - "Handbags", - "Shoulder Bags", - "Styles", - "Chanel", - "Live Shopping with FASHIONPHILE" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoulder-bags-on-sale", - "chanel-on-sale", - "chanel-top-handle-bags", - "bags-under-1000", - "chanel-shoulder-bags", - "bags-on-sale", - "chanel", - "instagram-live-shopping", - "top-handles", - "zip-top", - "handbag-styles", - "chanel-bags", - "shoulder-bags", - "handbags" - ], - "description": "This is an authentic CHANEL Nylon Small Travel Tote in Pink. This chic tote is crafted of nylon CC logo jacquard fabric in pink. It features leather top handles and gold hardware. The top opens to a beige fabric interior with zipper pockets.", - "discounted_price": 520, - "discounted_tier": 1, - "filters": { - "bags": [ - "Handbags", - "Shoulder Bags" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Chanel" - ], - "color": [ - "Pink" - ], - "material": [ - "Art / Scene on Exterior", - "Fabrics", - "Leather" - ], - "bag_feature": [ - "Top Handles", - "Zip Top" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$500-$1000", - "condition": [ - "Shows Wear" - ], - "locations": [ - "New York" - ] - }, - "following_count": 16, - "id": 1586323, - "made_available_at": 1740435632, - "price": 550, - "priced_at": 1743026412, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/4f227bbcd3f91d50d83a88bedfccc27a.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/4f227bbcd3f91d50d83a88bedfccc27a.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/4f227bbcd3f91d50d83a88bedfccc27a.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/55cb78fbfb530736037b14bd240e90a6.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/55cb78fbfb530736037b14bd240e90a6.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/55cb78fbfb530736037b14bd240e90a6.jpg" - } - ], - "title": "CHANEL Nylon Small Travel Tote Pink", - "title_without_brand": "Nylon Small Travel Tote Pink", - "_tags": [ - "1586323" - ], - "objectID": "1586323", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-top-handle-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "instagram-live-shopping", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "top-handles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "zip-top", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic CHANEL Nylon Small Travel Tote in Pink. This chic tote is crafted of nylon CC logo jacquard fabric in pink. It features leather top handles and gold hardware. The top opens to a beige fabric interior with zipper pockets.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Chanel", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Pink", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Art / Scene on Exterior", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Fabrics", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1586323", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "CHANEL Nylon Small Travel Tote Pink", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Louis Vuitton", + "product_name": "Monogram Mink Neo Pochette Milla Vision Pink", + "condition": "Excellent", + "discounted_price": 175, + "price": 3325, + "id": 10746165002543 }, { - "best_value": 0, - "categories": [ - "Pink", - "Top Handles", - "Zip Top", - "Art / Scene on Exterior", - "Fabrics", - "Leather", - "Handbags", - "Shoulder Bags", - "Styles", - "Chanel", - "Live Shopping with FASHIONPHILE" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoulder-bags-on-sale", - "chanel-on-sale", - "chanel-top-handle-bags", - "bags-under-1000", - "chanel-shoulder-bags", - "bags-on-sale", - "chanel", - "instagram-live-shopping", - "top-handles", - "zip-top", - "handbag-styles", - "chanel-bags", - "shoulder-bags", - "handbags" - ], - "description": "This is an authentic CHANEL Nylon Small Travel Tote in Pink. This chic tote is crafted of nylon CC logo jacquard fabric in pink. It features leather top handles and gold hardware. The top opens to a beige fabric interior with zipper pockets.", - "discounted_price": 520, - "discounted_tier": 1, - "filters": { - "bags": [ - "Handbags", - "Shoulder Bags" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Chanel" - ], - "color": [ - "Pink" - ], - "material": [ - "Art / Scene on Exterior", - "Fabrics", - "Leather" - ], - "bag_feature": [ - "Top Handles", - "Zip Top" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$500-$1000", - "condition": [ - "Shows Wear" - ], - "locations": [ - "New York" - ] - }, - "following_count": 16, - "id": 1586323, - "made_available_at": 1740435632, - "price": 550, - "priced_at": 1743026412, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/4f227bbcd3f91d50d83a88bedfccc27a.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/4f227bbcd3f91d50d83a88bedfccc27a.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/4f227bbcd3f91d50d83a88bedfccc27a.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/55cb78fbfb530736037b14bd240e90a6.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/55cb78fbfb530736037b14bd240e90a6.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/55cb78fbfb530736037b14bd240e90a6.jpg" - } - ], - "title": "CHANEL Nylon Small Travel Tote Pink", - "title_without_brand": "Nylon Small Travel Tote Pink", - "_tags": [ - "1586323" - ], - "objectID": "1586323", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-top-handle-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "instagram-live-shopping", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "top-handles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "zip-top", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic CHANEL Nylon Small Travel Tote in Pink. This chic tote is crafted of nylon CC logo jacquard fabric in pink. It features leather top handles and gold hardware. The top opens to a beige fabric interior with zipper pockets.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Chanel", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Pink", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Art / Scene on Exterior", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Fabrics", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1586323", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "CHANEL Nylon Small Travel Tote Pink", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Chanel", + "product_name": "Lambskin Quilted CC Chain Espadrille Mules 37 White", + "condition": "Shows Wear", + "discounted_price": 65, + "price": 1250, + "id": 10744309023023 }, { - "best_value": 0, - "categories": [ - "Pink", - "Top Handles", - "Zip Top", - "Art / Scene on Exterior", - "Fabrics", - "Leather", - "Handbags", - "Shoulder Bags", - "Styles", - "Chanel", - "Live Shopping with FASHIONPHILE" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoulder-bags-on-sale", - "chanel-on-sale", - "chanel-top-handle-bags", - "bags-under-1000", - "chanel-shoulder-bags", - "bags-on-sale", - "chanel", - "instagram-live-shopping", - "top-handles", - "zip-top", - "handbag-styles", - "chanel-bags", - "shoulder-bags", - "handbags" - ], - "description": "This is an authentic CHANEL Nylon Small Travel Tote in Pink. This chic tote is crafted of nylon CC logo jacquard fabric in pink. It features leather top handles and gold hardware. The top opens to a beige fabric interior with zipper pockets.", - "discounted_price": 520, - "discounted_tier": 1, - "filters": { - "bags": [ - "Handbags", - "Shoulder Bags" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Chanel" - ], - "color": [ - "Pink" - ], - "material": [ - "Art / Scene on Exterior", - "Fabrics", - "Leather" - ], - "bag_feature": [ - "Top Handles", - "Zip Top" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$500-$1000", - "condition": [ - "Shows Wear" - ], - "locations": [ - "New York" - ] - }, - "following_count": 16, - "id": 1586323, - "made_available_at": 1740435632, - "price": 550, - "priced_at": 1743026412, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/4f227bbcd3f91d50d83a88bedfccc27a.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/4f227bbcd3f91d50d83a88bedfccc27a.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/4f227bbcd3f91d50d83a88bedfccc27a.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/55cb78fbfb530736037b14bd240e90a6.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/55cb78fbfb530736037b14bd240e90a6.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/55cb78fbfb530736037b14bd240e90a6.jpg" - } - ], - "title": "CHANEL Nylon Small Travel Tote Pink", - "title_without_brand": "Nylon Small Travel Tote Pink", - "_tags": [ - "1586323" - ], - "objectID": "1586323", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-top-handle-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "instagram-live-shopping", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "top-handles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "zip-top", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic CHANEL Nylon Small Travel Tote in Pink. This chic tote is crafted of nylon CC logo jacquard fabric in pink. It features leather top handles and gold hardware. The top opens to a beige fabric interior with zipper pockets.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Chanel", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Pink", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Art / Scene on Exterior", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Fabrics", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1586323", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "CHANEL Nylon Small Travel Tote Pink", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Louis Vuitton", + "product_name": "Monogram Cuir Plume Ecume Very Handle Shoulder Bag Rouge Rubis Noisette", + "condition": "Shows Wear", + "discounted_price": 55, + "price": 1020, + "id": 10744406573359 }, { - "best_value": 1470, - "categories": [ - "Blues", - "Greens", - "Open Top", - "Leather", - "Solid Color", - "Handbags", - "Shoulder Bags", - "Epi", - "Vintage", - "Styles", - "Over 50% off Retail", - "Noe", - "Vintage Finds", - "Womens", - "Louis Vuitton", - "Live Shopping with FASHIONPHILE" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoulder-bags-on-sale", - "bags-under-1000", - "louis-vuitton-shoulder-bags", - "vintage", - "bags-on-sale", - "instagram-live-shopping", - "louis-vuitton-on-sale", - "louis-vuitton", - "epi", - "50-off-retail", - "louis-vuitton-noe-bags", - "vintage-lv", - "louis-vuitton-bags", - "handbag-styles", - "noe", - "shoulder-bags", - "handbags" - ], - "description": "This is an authentic LOUIS VUITTON Epi Noe in Borneo Green and Toledo Blue. This chic shoulder bag is crafted of Louis Vuitton signature textured epi leather in blue and green. The bag features a leather cinch cord with brass eyelets and an adjustable smooth leather shoulder strap with a brass buckle. The top is open to a blue microfiber interior.", - "discounted_price": 520, - "discounted_tier": 1, - "filters": { - "bags": [ - "Handbags", - "Shoulder Bags" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Louis Vuitton" - ], - "color": [ - "Blues", - "Greens" - ], - "material": [ - "Leather", - "Solid Color" - ], - "bag_feature": [ - "Open Top" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$500-$1000", - "condition": [ - "Shows Wear" - ], - "locations": [ - "New York" - ] - }, - "following_count": 14, - "id": 1586327, - "made_available_at": 1740430216, - "price": 550, - "priced_at": 1743019209, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/3430b0c829a8c5804ce111527c658a72.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/3430b0c829a8c5804ce111527c658a72.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/3430b0c829a8c5804ce111527c658a72.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/a1fcacc1fd6bd65d262829ffa0b924cf.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/a1fcacc1fd6bd65d262829ffa0b924cf.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/a1fcacc1fd6bd65d262829ffa0b924cf.jpg" - } - ], - "title": "LOUIS VUITTON Epi Noe Borneo Toledo", - "title_without_brand": "Epi Noe Borneo Toledo", - "_tags": [ - "1586327" - ], - "objectID": "1586327", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "vintage", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "instagram-live-shopping", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "epi", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "50-off-retail", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-noe-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "vintage-lv", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "noe", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic LOUIS VUITTON Epi Noe in Borneo Green and Toledo Blue. This chic shoulder bag is crafted of Louis Vuitton signature textured epi leather in blue and green. The bag features a leather cinch cord with brass eyelets and an adjustable smooth leather shoulder strap with a brass buckle. The top is open to a blue microfiber interior.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Louis Vuitton", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Blues", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Greens", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1586327", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "LOUIS VUITTON Epi Noe Borneo Toledo", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "The Row", + "product_name": "Grained Calfskin Half Moon Shoulder Bag Raisin", + "condition": "Excellent", + "discounted_price": 75, + "price": 1405, + "id": 10596542087471 }, { - "best_value": 1470, - "categories": [ - "Blues", - "Greens", - "Open Top", - "Leather", - "Solid Color", - "Handbags", - "Shoulder Bags", - "Epi", - "Vintage", - "Styles", - "Over 50% off Retail", - "Noe", - "Vintage Finds", - "Womens", - "Louis Vuitton", - "Live Shopping with FASHIONPHILE" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoulder-bags-on-sale", - "bags-under-1000", - "louis-vuitton-shoulder-bags", - "vintage", - "bags-on-sale", - "instagram-live-shopping", - "louis-vuitton-on-sale", - "louis-vuitton", - "epi", - "50-off-retail", - "louis-vuitton-noe-bags", - "vintage-lv", - "louis-vuitton-bags", - "handbag-styles", - "noe", - "shoulder-bags", - "handbags" - ], - "description": "This is an authentic LOUIS VUITTON Epi Noe in Borneo Green and Toledo Blue. This chic shoulder bag is crafted of Louis Vuitton signature textured epi leather in blue and green. The bag features a leather cinch cord with brass eyelets and an adjustable smooth leather shoulder strap with a brass buckle. The top is open to a blue microfiber interior.", - "discounted_price": 520, - "discounted_tier": 1, - "filters": { - "bags": [ - "Handbags", - "Shoulder Bags" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Louis Vuitton" - ], - "color": [ - "Blues", - "Greens" - ], - "material": [ - "Leather", - "Solid Color" - ], - "bag_feature": [ - "Open Top" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$500-$1000", - "condition": [ - "Shows Wear" - ], - "locations": [ - "New York" - ] - }, - "following_count": 14, - "id": 1586327, - "made_available_at": 1740430216, - "price": 550, - "priced_at": 1743019209, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/3430b0c829a8c5804ce111527c658a72.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/3430b0c829a8c5804ce111527c658a72.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/3430b0c829a8c5804ce111527c658a72.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/a1fcacc1fd6bd65d262829ffa0b924cf.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/a1fcacc1fd6bd65d262829ffa0b924cf.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/a1fcacc1fd6bd65d262829ffa0b924cf.jpg" - } - ], - "title": "LOUIS VUITTON Epi Noe Borneo Toledo", - "title_without_brand": "Epi Noe Borneo Toledo", - "_tags": [ - "1586327" - ], - "objectID": "1586327", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "vintage", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "instagram-live-shopping", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "epi", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "50-off-retail", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-noe-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "vintage-lv", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "noe", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic LOUIS VUITTON Epi Noe in Borneo Green and Toledo Blue. This chic shoulder bag is crafted of Louis Vuitton signature textured epi leather in blue and green. The bag features a leather cinch cord with brass eyelets and an adjustable smooth leather shoulder strap with a brass buckle. The top is open to a blue microfiber interior.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Louis Vuitton", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Blues", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Greens", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1586327", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "LOUIS VUITTON Epi Noe Borneo Toledo", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Saint Laurent", + "product_name": "Denim Monogram La 16 Mule Sandals 39 Blue Jeans", + "condition": "Excellent", + "discounted_price": 35, + "price": 675, + "id": 10680960385327 }, { - "best_value": 1470, - "categories": [ - "Blues", - "Greens", - "Open Top", - "Leather", - "Solid Color", - "Handbags", - "Shoulder Bags", - "Epi", - "Vintage", - "Styles", - "Over 50% off Retail", - "Noe", - "Vintage Finds", - "Womens", - "Louis Vuitton", - "Live Shopping with FASHIONPHILE" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoulder-bags-on-sale", - "bags-under-1000", - "louis-vuitton-shoulder-bags", - "vintage", - "bags-on-sale", - "instagram-live-shopping", - "louis-vuitton-on-sale", - "louis-vuitton", - "epi", - "50-off-retail", - "louis-vuitton-noe-bags", - "vintage-lv", - "louis-vuitton-bags", - "handbag-styles", - "noe", - "shoulder-bags", - "handbags" - ], - "description": "This is an authentic LOUIS VUITTON Epi Noe in Borneo Green and Toledo Blue. This chic shoulder bag is crafted of Louis Vuitton signature textured epi leather in blue and green. The bag features a leather cinch cord with brass eyelets and an adjustable smooth leather shoulder strap with a brass buckle. The top is open to a blue microfiber interior.", - "discounted_price": 520, - "discounted_tier": 1, - "filters": { - "bags": [ - "Handbags", - "Shoulder Bags" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Louis Vuitton" - ], - "color": [ - "Blues", - "Greens" - ], - "material": [ - "Leather", - "Solid Color" - ], - "bag_feature": [ - "Open Top" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$500-$1000", - "condition": [ - "Shows Wear" - ], - "locations": [ - "New York" - ] - }, - "following_count": 14, - "id": 1586327, - "made_available_at": 1740430216, - "price": 550, - "priced_at": 1743019209, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/3430b0c829a8c5804ce111527c658a72.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/3430b0c829a8c5804ce111527c658a72.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/3430b0c829a8c5804ce111527c658a72.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/a1fcacc1fd6bd65d262829ffa0b924cf.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/a1fcacc1fd6bd65d262829ffa0b924cf.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/a1fcacc1fd6bd65d262829ffa0b924cf.jpg" - } - ], - "title": "LOUIS VUITTON Epi Noe Borneo Toledo", - "title_without_brand": "Epi Noe Borneo Toledo", - "_tags": [ - "1586327" - ], - "objectID": "1586327", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "vintage", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "instagram-live-shopping", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "epi", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "50-off-retail", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-noe-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "vintage-lv", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "noe", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic LOUIS VUITTON Epi Noe in Borneo Green and Toledo Blue. This chic shoulder bag is crafted of Louis Vuitton signature textured epi leather in blue and green. The bag features a leather cinch cord with brass eyelets and an adjustable smooth leather shoulder strap with a brass buckle. The top is open to a blue microfiber interior.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Louis Vuitton", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Blues", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Greens", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1586327", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "LOUIS VUITTON Epi Noe Borneo Toledo", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Louis Vuitton", + "product_name": "x NIGO Monogram Giant Denim Giant Damier Wave Sun Hat 60 Gray", + "condition": "Shows Wear", + "discounted_price": 40, + "price": 720, + "id": 10744400085295 }, { - "best_value": 630, - "categories": [ - "Shoes", - "Womens", - "Leather", - "Solid Color", - "Boots & Booties", - "Accessories", - "General", - "Whites", - "Head-to-Toe Neutrals", - "Winter Accessories", - "36", - "Hermes" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "hermes-kelly", - "shoes-on-sale", - "boots-booties", - "winter-accessories", - "hermes", - "hermes-shoes", - "accessories-on-sale", - "shoes", - "accessories", - "hermes-on-sale", - "neutrals" - ], - "description": "This is an authentic pair of HERMES Glossed Calfskin Funk Ankle Boots size 36 in Beige Glaise. These ankle boots are crafted of fine calfskin leather in off white. They feature a strap closure that secures with a palladium signature Kelly style turn lock, a stacked heel, and rugged rubber soles.", - "discounted_price": 1420, - "discounted_tier": 1, - "filters": { - "bags": [], - "jewelry": [], - "accessories": [ - "Shoes" - ], - "watches": [], - "shoes": [ - "Boots & Booties" - ], - "brands": [ - "Hermes" - ], - "color": [ - "Whites" - ], - "material": [ - "Leather", - "Solid Color" - ], - "bag_feature": [], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [ - "36" - ], - "on_sale": [ - "5% Off" - ], - "price": "$1000-$2000", - "condition": [ - "Giftable" - ], - "locations": [ - "New York" - ] - }, - "following_count": 13, - "id": 1586345, - "made_available_at": 1740431037, - "price": 1495, - "priced_at": 1743023856, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/a5c6e1f453d827ddaccf6d0e26ad5216.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/a5c6e1f453d827ddaccf6d0e26ad5216.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/a5c6e1f453d827ddaccf6d0e26ad5216.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/912e24529e9b84dea7301ec5640179df.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/912e24529e9b84dea7301ec5640179df.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/912e24529e9b84dea7301ec5640179df.jpg" - } - ], - "title": "HERMES Glossed Calfskin Funk Ankle Boots 36 Beige Glaise", - "title_without_brand": "Glossed Calfskin Funk Ankle Boots 36 Beige Glaise", - "_tags": [ - "1586345" - ], - "objectID": "1586345", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-kelly", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoes-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "boots-booties", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "winter-accessories", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-shoes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "neutrals", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic pair of HERMES Glossed Calfskin Funk Ankle Boots size 36 in Beige Glaise. These ankle boots are crafted of fine calfskin leather in off white. They feature a strap closure that secures with a palladium signature Kelly style turn lock, a stacked heel, and rugged rubber soles.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Hermes", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Whites", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1586345", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "HERMES Glossed Calfskin Funk Ankle Boots 36 Beige Glaise", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Chanel", + "product_name": "Lambskin Quilted Small Trendy CC Dual Handle Flap Bag Camel", + "condition": "Excellent", + "discounted_price": 255, + "price": 4840, + "id": 10598850527535 }, { - "best_value": 630, - "categories": [ - "Shoes", - "Womens", - "Leather", - "Solid Color", - "Boots & Booties", - "Accessories", - "General", - "Whites", - "Head-to-Toe Neutrals", - "Winter Accessories", - "36", - "Hermes" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "hermes-kelly", - "shoes-on-sale", - "boots-booties", - "winter-accessories", - "hermes", - "hermes-shoes", - "accessories-on-sale", - "shoes", - "accessories", - "hermes-on-sale", - "neutrals" - ], - "description": "This is an authentic pair of HERMES Glossed Calfskin Funk Ankle Boots size 36 in Beige Glaise. These ankle boots are crafted of fine calfskin leather in off white. They feature a strap closure that secures with a palladium signature Kelly style turn lock, a stacked heel, and rugged rubber soles.", - "discounted_price": 1420, - "discounted_tier": 1, - "filters": { - "bags": [], - "jewelry": [], - "accessories": [ - "Shoes" - ], - "watches": [], - "shoes": [ - "Boots & Booties" - ], - "brands": [ - "Hermes" - ], - "color": [ - "Whites" - ], - "material": [ - "Leather", - "Solid Color" - ], - "bag_feature": [], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [ - "36" - ], - "on_sale": [ - "5% Off" - ], - "price": "$1000-$2000", - "condition": [ - "Giftable" - ], - "locations": [ - "New York" - ] - }, - "following_count": 13, - "id": 1586345, - "made_available_at": 1740431037, - "price": 1495, - "priced_at": 1743023856, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/a5c6e1f453d827ddaccf6d0e26ad5216.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/a5c6e1f453d827ddaccf6d0e26ad5216.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/a5c6e1f453d827ddaccf6d0e26ad5216.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/912e24529e9b84dea7301ec5640179df.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/912e24529e9b84dea7301ec5640179df.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/912e24529e9b84dea7301ec5640179df.jpg" - } - ], - "title": "HERMES Glossed Calfskin Funk Ankle Boots 36 Beige Glaise", - "title_without_brand": "Glossed Calfskin Funk Ankle Boots 36 Beige Glaise", - "_tags": [ - "1586345" - ], - "objectID": "1586345", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-kelly", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoes-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "boots-booties", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "winter-accessories", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-shoes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "neutrals", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic pair of HERMES Glossed Calfskin Funk Ankle Boots size 36 in Beige Glaise. These ankle boots are crafted of fine calfskin leather in off white. They feature a strap closure that secures with a palladium signature Kelly style turn lock, a stacked heel, and rugged rubber soles.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Hermes", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Whites", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1586345", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "HERMES Glossed Calfskin Funk Ankle Boots 36 Beige Glaise", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Chanel", + "product_name": "Crumpled Calfskin Quilted Medium Casual Rock Flap Black", + "condition": "Shows Wear", + "discounted_price": 115, + "price": 2180, + "id": 10651120599343 }, { - "best_value": 630, - "categories": [ - "Shoes", - "Womens", - "Leather", - "Solid Color", - "Boots & Booties", - "Accessories", - "General", - "Whites", - "Head-to-Toe Neutrals", - "Winter Accessories", - "36", - "Hermes" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "hermes-kelly", - "shoes-on-sale", - "boots-booties", - "winter-accessories", - "hermes", - "hermes-shoes", - "accessories-on-sale", - "shoes", - "accessories", - "hermes-on-sale", - "neutrals" - ], - "description": "This is an authentic pair of HERMES Glossed Calfskin Funk Ankle Boots size 36 in Beige Glaise. These ankle boots are crafted of fine calfskin leather in off white. They feature a strap closure that secures with a palladium signature Kelly style turn lock, a stacked heel, and rugged rubber soles.", - "discounted_price": 1420, - "discounted_tier": 1, - "filters": { - "bags": [], - "jewelry": [], - "accessories": [ - "Shoes" - ], - "watches": [], - "shoes": [ - "Boots & Booties" - ], - "brands": [ - "Hermes" - ], - "color": [ - "Whites" - ], - "material": [ - "Leather", - "Solid Color" - ], - "bag_feature": [], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [ - "36" - ], - "on_sale": [ - "5% Off" - ], - "price": "$1000-$2000", - "condition": [ - "Giftable" - ], - "locations": [ - "New York" - ] - }, - "following_count": 13, - "id": 1586345, - "made_available_at": 1740431037, - "price": 1495, - "priced_at": 1743023856, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/a5c6e1f453d827ddaccf6d0e26ad5216.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/a5c6e1f453d827ddaccf6d0e26ad5216.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/a5c6e1f453d827ddaccf6d0e26ad5216.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/912e24529e9b84dea7301ec5640179df.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/912e24529e9b84dea7301ec5640179df.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/912e24529e9b84dea7301ec5640179df.jpg" - } - ], - "title": "HERMES Glossed Calfskin Funk Ankle Boots 36 Beige Glaise", - "title_without_brand": "Glossed Calfskin Funk Ankle Boots 36 Beige Glaise", - "_tags": [ - "1586345" - ], - "objectID": "1586345", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-kelly", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoes-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "boots-booties", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "winter-accessories", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-shoes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "neutrals", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic pair of HERMES Glossed Calfskin Funk Ankle Boots size 36 in Beige Glaise. These ankle boots are crafted of fine calfskin leather in off white. They feature a strap closure that secures with a palladium signature Kelly style turn lock, a stacked heel, and rugged rubber soles.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Hermes", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Whites", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1586345", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "HERMES Glossed Calfskin Funk Ankle Boots 36 Beige Glaise", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Louis Vuitton", + "product_name": "Empreinte Monogram Giant Onthego PM Black", + "condition": "Excellent", + "discounted_price": 135, + "price": 2560, + "id": 10689581023535 }, { - "best_value": 320, - "categories": [ - "Shoes", - "Accessories", - "Browns", - "Whites", - "Leather", - "Exotic Skins & Fur", - "General", - "Womens", - "Boots & Booties", - "36", - "Hermes" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoes-on-sale", - "boots-booties", - "hermes", - "hermes-shoes", - "accessories-on-sale", - "hermes-exotics", - "shoes", - "accessories", - "hermes-on-sale" - ], - "description": "This is an authentic HERMES Suede Woolskin Womens Flocon Ankle Boots size 36 in Brown and Ecru. These stylish boots are crafted of suede leather in brown with a beige wool trim along the edges of the insoles. The shoes feature thick white rubber soles with white shoe laces.", - "discounted_price": 1230, - "discounted_tier": 1, - "filters": { - "bags": [], - "jewelry": [], - "accessories": [ - "Shoes" - ], - "watches": [], - "shoes": [ - "Boots & Booties" - ], - "brands": [ - "Hermes" - ], - "color": [ - "Browns", - "Whites" - ], - "material": [ - "Leather", - "Exotic Skins & Fur" - ], - "bag_feature": [], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [ - "36" - ], - "on_sale": [ - "5% Off" - ], - "price": "$1000-$2000", - "condition": [ - "Giftable" - ], - "locations": [ - "New York" - ] - }, - "following_count": 10, - "id": 1586349, - "made_available_at": 1740431047, - "price": 1295, - "priced_at": 1743023857, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/67b726b0940e7c38031cda438a4aecca.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/67b726b0940e7c38031cda438a4aecca.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/67b726b0940e7c38031cda438a4aecca.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/f9dab9664393d0f8beab2db01807be9a.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/f9dab9664393d0f8beab2db01807be9a.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/f9dab9664393d0f8beab2db01807be9a.jpg" - } - ], - "title": "HERMES Suede Woolskin Womens Flocon Ankle Boots 36 Brown Ecru", - "title_without_brand": "Suede Woolskin Womens Flocon Ankle Boots 36 Brown Ecru", - "_tags": [ - "1586349" - ], - "objectID": "1586349", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoes-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "boots-booties", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-shoes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-exotics", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-on-sale", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic HERMES Suede Woolskin Womens Flocon Ankle Boots size 36 in Brown and Ecru. These stylish boots are crafted of suede leather in brown with a beige wool trim along the edges of the insoles. The shoes feature thick white rubber soles with white shoe laces.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Hermes", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Browns", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Whites", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Exotic Skins & Fur", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1586349", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "HERMES Suede Woolskin Womens Flocon Ankle Boots 36 Brown Ecru", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Louis Vuitton", + "product_name": "Monogram Rivoli PM", + "condition": "Shows Wear", + "discounted_price": 75, + "price": 1390, + "id": 10744352571695 }, { - "best_value": 320, - "categories": [ - "Shoes", - "Accessories", - "Browns", - "Whites", - "Leather", - "Exotic Skins & Fur", - "General", - "Womens", - "Boots & Booties", - "36", - "Hermes" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoes-on-sale", - "boots-booties", - "hermes", - "hermes-shoes", - "accessories-on-sale", - "hermes-exotics", - "shoes", - "accessories", - "hermes-on-sale" - ], - "description": "This is an authentic HERMES Suede Woolskin Womens Flocon Ankle Boots size 36 in Brown and Ecru. These stylish boots are crafted of suede leather in brown with a beige wool trim along the edges of the insoles. The shoes feature thick white rubber soles with white shoe laces.", - "discounted_price": 1230, - "discounted_tier": 1, - "filters": { - "bags": [], - "jewelry": [], - "accessories": [ - "Shoes" - ], - "watches": [], - "shoes": [ - "Boots & Booties" - ], - "brands": [ - "Hermes" - ], - "color": [ - "Browns", - "Whites" - ], - "material": [ - "Leather", - "Exotic Skins & Fur" - ], - "bag_feature": [], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [ - "36" - ], - "on_sale": [ - "5% Off" - ], - "price": "$1000-$2000", - "condition": [ - "Giftable" - ], - "locations": [ - "New York" - ] - }, - "following_count": 10, - "id": 1586349, - "made_available_at": 1740431047, - "price": 1295, - "priced_at": 1743023857, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/67b726b0940e7c38031cda438a4aecca.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/67b726b0940e7c38031cda438a4aecca.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/67b726b0940e7c38031cda438a4aecca.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/f9dab9664393d0f8beab2db01807be9a.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/f9dab9664393d0f8beab2db01807be9a.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/f9dab9664393d0f8beab2db01807be9a.jpg" - } - ], - "title": "HERMES Suede Woolskin Womens Flocon Ankle Boots 36 Brown Ecru", - "title_without_brand": "Suede Woolskin Womens Flocon Ankle Boots 36 Brown Ecru", - "_tags": [ - "1586349" - ], - "objectID": "1586349", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoes-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "boots-booties", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-shoes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-exotics", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-on-sale", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic HERMES Suede Woolskin Womens Flocon Ankle Boots size 36 in Brown and Ecru. These stylish boots are crafted of suede leather in brown with a beige wool trim along the edges of the insoles. The shoes feature thick white rubber soles with white shoe laces.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Hermes", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Browns", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Whites", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Exotic Skins & Fur", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1586349", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "HERMES Suede Woolskin Womens Flocon Ankle Boots 36 Brown Ecru", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Balenciaga", + "product_name": "Denim BB Monogram Le Cagole Shoulder Bag XS Pink", + "condition": "Shows Wear", + "discounted_price": 40, + "price": 750, + "id": 10744142102831 }, { - "best_value": 320, - "categories": [ - "Shoes", - "Accessories", - "Browns", - "Whites", - "Leather", - "Exotic Skins & Fur", - "General", - "Womens", - "Boots & Booties", - "36", - "Hermes" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoes-on-sale", - "boots-booties", - "hermes", - "hermes-shoes", - "accessories-on-sale", - "hermes-exotics", - "shoes", - "accessories", - "hermes-on-sale" - ], - "description": "This is an authentic HERMES Suede Woolskin Womens Flocon Ankle Boots size 36 in Brown and Ecru. These stylish boots are crafted of suede leather in brown with a beige wool trim along the edges of the insoles. The shoes feature thick white rubber soles with white shoe laces.", - "discounted_price": 1230, - "discounted_tier": 1, - "filters": { - "bags": [], - "jewelry": [], - "accessories": [ - "Shoes" - ], - "watches": [], - "shoes": [ - "Boots & Booties" - ], - "brands": [ - "Hermes" - ], - "color": [ - "Browns", - "Whites" - ], - "material": [ - "Leather", - "Exotic Skins & Fur" - ], - "bag_feature": [], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [ - "36" - ], - "on_sale": [ - "5% Off" - ], - "price": "$1000-$2000", - "condition": [ - "Giftable" - ], - "locations": [ - "New York" - ] - }, - "following_count": 10, - "id": 1586349, - "made_available_at": 1740431047, - "price": 1295, - "priced_at": 1743023857, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/67b726b0940e7c38031cda438a4aecca.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/67b726b0940e7c38031cda438a4aecca.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/67b726b0940e7c38031cda438a4aecca.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/f9dab9664393d0f8beab2db01807be9a.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/f9dab9664393d0f8beab2db01807be9a.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/f9dab9664393d0f8beab2db01807be9a.jpg" - } - ], - "title": "HERMES Suede Woolskin Womens Flocon Ankle Boots 36 Brown Ecru", - "title_without_brand": "Suede Woolskin Womens Flocon Ankle Boots 36 Brown Ecru", - "_tags": [ - "1586349" - ], - "objectID": "1586349", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoes-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "boots-booties", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-shoes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-exotics", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-on-sale", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic HERMES Suede Woolskin Womens Flocon Ankle Boots size 36 in Brown and Ecru. These stylish boots are crafted of suede leather in brown with a beige wool trim along the edges of the insoles. The shoes feature thick white rubber soles with white shoe laces.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Hermes", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Browns", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Whites", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Exotic Skins & Fur", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1586349", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "HERMES Suede Woolskin Womens Flocon Ankle Boots 36 Brown Ecru", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Louis Vuitton", + "product_name": "Mini Monogram Key Pouch Kaki", + "condition": "Shows Wear", + "discounted_price": 30, + "price": 595, + "id": 10744329929007 }, { - "best_value": 490, - "categories": [ - "Browns", - "Open Top", - "Coated Canvas", - "Handbags", - "Shoulder Bags", - "Monogram", - "Styles", - "Totes", - "Leather", - "General", - "Womens", - "Louis Vuitton", - "Vintage Finds", - "Live Shopping with FASHIONPHILE" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoulder-bags-on-sale", - "bags-under-1000", - "louis-vuitton-shoulder-bags", - "bucket-bags", - "louis-vuitton-monogram-bags", - "vintage", - "bags-on-sale", - "instagram-live-shopping", - "louis-vuitton-on-sale", - "totes-on-sale", - "louis-vuitton-monogram", - "louis-vuitton", - "totes", - "louis-vuitton-bags", - "handbag-styles", - "shoulder-bags", - "handbags", - "louis-vuitton-totes" - ], - "description": "This is an authentic LOUIS VUITTON Monogram Bucket 27. This large bucket-style tote is crafted of Louis Vuitton monogram on brown toile canvas. The bag features vachetta cowhide leather trim including a base edge, top crest, and side straps that form into adjustable shoulder straps. The top is open to a light beige leather-like interior with a zipper and patch pocket.", - "discounted_price": 710, - "discounted_tier": 1, - "filters": { - "bags": [ - "Handbags", - "Shoulder Bags", - "Totes" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Louis Vuitton" - ], - "color": [ - "Browns" - ], - "material": [ - "Coated Canvas", - "Leather" - ], - "bag_feature": [ - "Open Top" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$500-$1000", - "condition": [ - "Shows Wear" - ], - "locations": [ - "New York" - ] - }, - "following_count": 7, - "id": 1586582, - "made_available_at": 1740430260, - "price": 750, - "priced_at": 1743019210, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/49d132372757f0eaf6908d82e1d76f95.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/49d132372757f0eaf6908d82e1d76f95.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/49d132372757f0eaf6908d82e1d76f95.jpg" - }, - { - "order": 2, - "path": "/thumb/fb0c1a3511cd6aa055a36968f70bcc96/0ddaf3fd1859de8225e709555a93a9ce.jpg", - "thumb": "/thumb/fb0c1a3511cd6aa055a36968f70bcc96/0ddaf3fd1859de8225e709555a93a9ce.jpg", - "tiny": "/tiny/fb0c1a3511cd6aa055a36968f70bcc96/0ddaf3fd1859de8225e709555a93a9ce.jpg" - } - ], - "title": "LOUIS VUITTON Monogram Bucket 27", - "title_without_brand": "Monogram Bucket 27", - "_tags": [ - "1586582" - ], - "objectID": "1586582", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bucket-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-monogram-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "vintage", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "instagram-live-shopping", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "totes-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-monogram", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "totes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-totes", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic LOUIS VUITTON Monogram Bucket 27. This large bucket-style tote is crafted of Louis Vuitton monogram on brown toile canvas. The bag features vachetta cowhide leather trim including a base edge, top crest, and side straps that form into adjustable shoulder straps. The top is open to a light beige leather-like interior with a zipper and patch pocket.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Louis Vuitton", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Browns", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Coated Canvas", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1586582", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "LOUIS VUITTON Monogram Bucket 27", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Balenciaga", + "product_name": "Grained Calfskin Embossed Large Car East West Tote Black", + "condition": "Shows Wear", + "discounted_price": 35, + "price": 695, + "id": 10744021614895 }, { - "best_value": 490, - "categories": [ - "Browns", - "Open Top", - "Coated Canvas", - "Handbags", - "Shoulder Bags", - "Monogram", - "Styles", - "Totes", - "Leather", - "General", - "Womens", - "Louis Vuitton", - "Vintage Finds", - "Live Shopping with FASHIONPHILE" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoulder-bags-on-sale", - "bags-under-1000", - "louis-vuitton-shoulder-bags", - "bucket-bags", - "louis-vuitton-monogram-bags", - "vintage", - "bags-on-sale", - "instagram-live-shopping", - "louis-vuitton-on-sale", - "totes-on-sale", - "louis-vuitton-monogram", - "louis-vuitton", - "totes", - "louis-vuitton-bags", - "handbag-styles", - "shoulder-bags", - "handbags", - "louis-vuitton-totes" - ], - "description": "This is an authentic LOUIS VUITTON Monogram Bucket 27. This large bucket-style tote is crafted of Louis Vuitton monogram on brown toile canvas. The bag features vachetta cowhide leather trim including a base edge, top crest, and side straps that form into adjustable shoulder straps. The top is open to a light beige leather-like interior with a zipper and patch pocket.", - "discounted_price": 710, - "discounted_tier": 1, - "filters": { - "bags": [ - "Handbags", - "Shoulder Bags", - "Totes" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Louis Vuitton" - ], - "color": [ - "Browns" - ], - "material": [ - "Coated Canvas", - "Leather" - ], - "bag_feature": [ - "Open Top" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$500-$1000", - "condition": [ - "Shows Wear" - ], - "locations": [ - "New York" - ] - }, - "following_count": 7, - "id": 1586582, - "made_available_at": 1740430260, - "price": 750, - "priced_at": 1743019210, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/49d132372757f0eaf6908d82e1d76f95.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/49d132372757f0eaf6908d82e1d76f95.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/49d132372757f0eaf6908d82e1d76f95.jpg" - }, - { - "order": 2, - "path": "/thumb/fb0c1a3511cd6aa055a36968f70bcc96/0ddaf3fd1859de8225e709555a93a9ce.jpg", - "thumb": "/thumb/fb0c1a3511cd6aa055a36968f70bcc96/0ddaf3fd1859de8225e709555a93a9ce.jpg", - "tiny": "/tiny/fb0c1a3511cd6aa055a36968f70bcc96/0ddaf3fd1859de8225e709555a93a9ce.jpg" - } - ], - "title": "LOUIS VUITTON Monogram Bucket 27", - "title_without_brand": "Monogram Bucket 27", - "_tags": [ - "1586582" - ], - "objectID": "1586582", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bucket-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-monogram-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "vintage", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "instagram-live-shopping", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "totes-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-monogram", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "totes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-totes", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic LOUIS VUITTON Monogram Bucket 27. This large bucket-style tote is crafted of Louis Vuitton monogram on brown toile canvas. The bag features vachetta cowhide leather trim including a base edge, top crest, and side straps that form into adjustable shoulder straps. The top is open to a light beige leather-like interior with a zipper and patch pocket.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Louis Vuitton", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Browns", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Coated Canvas", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1586582", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "LOUIS VUITTON Monogram Bucket 27", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Tom Ford", + "product_name": "Grained Calfskin Buckley Backpack Black", + "condition": "Worn", + "discounted_price": 35, + "price": 615, + "id": 10695834435887 }, { - "best_value": 490, - "categories": [ - "Browns", - "Open Top", - "Coated Canvas", - "Handbags", - "Shoulder Bags", - "Monogram", - "Styles", - "Totes", - "Leather", - "General", - "Womens", - "Louis Vuitton", - "Vintage Finds", - "Live Shopping with FASHIONPHILE" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoulder-bags-on-sale", - "bags-under-1000", - "louis-vuitton-shoulder-bags", - "bucket-bags", - "louis-vuitton-monogram-bags", - "vintage", - "bags-on-sale", - "instagram-live-shopping", - "louis-vuitton-on-sale", - "totes-on-sale", - "louis-vuitton-monogram", - "louis-vuitton", - "totes", - "louis-vuitton-bags", - "handbag-styles", - "shoulder-bags", - "handbags", - "louis-vuitton-totes" - ], - "description": "This is an authentic LOUIS VUITTON Monogram Bucket 27. This large bucket-style tote is crafted of Louis Vuitton monogram on brown toile canvas. The bag features vachetta cowhide leather trim including a base edge, top crest, and side straps that form into adjustable shoulder straps. The top is open to a light beige leather-like interior with a zipper and patch pocket.", - "discounted_price": 710, - "discounted_tier": 1, - "filters": { - "bags": [ - "Handbags", - "Shoulder Bags", - "Totes" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Louis Vuitton" - ], - "color": [ - "Browns" - ], - "material": [ - "Coated Canvas", - "Leather" - ], - "bag_feature": [ - "Open Top" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$500-$1000", - "condition": [ - "Shows Wear" - ], - "locations": [ - "New York" - ] - }, - "following_count": 7, - "id": 1586582, - "made_available_at": 1740430260, - "price": 750, - "priced_at": 1743019210, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/49d132372757f0eaf6908d82e1d76f95.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/49d132372757f0eaf6908d82e1d76f95.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/49d132372757f0eaf6908d82e1d76f95.jpg" - }, - { - "order": 2, - "path": "/thumb/fb0c1a3511cd6aa055a36968f70bcc96/0ddaf3fd1859de8225e709555a93a9ce.jpg", - "thumb": "/thumb/fb0c1a3511cd6aa055a36968f70bcc96/0ddaf3fd1859de8225e709555a93a9ce.jpg", - "tiny": "/tiny/fb0c1a3511cd6aa055a36968f70bcc96/0ddaf3fd1859de8225e709555a93a9ce.jpg" - } - ], - "title": "LOUIS VUITTON Monogram Bucket 27", - "title_without_brand": "Monogram Bucket 27", - "_tags": [ - "1586582" - ], - "objectID": "1586582", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bucket-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-monogram-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "vintage", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "instagram-live-shopping", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "totes-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-monogram", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "totes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-totes", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic LOUIS VUITTON Monogram Bucket 27. This large bucket-style tote is crafted of Louis Vuitton monogram on brown toile canvas. The bag features vachetta cowhide leather trim including a base edge, top crest, and side straps that form into adjustable shoulder straps. The top is open to a light beige leather-like interior with a zipper and patch pocket.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Louis Vuitton", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Browns", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Coated Canvas", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1586582", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "LOUIS VUITTON Monogram Bucket 27", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Celine", + "product_name": "Bullhide Calfskin Nubuck Small Tri-Color Trapeze Coffee", + "condition": "Shows Wear", + "discounted_price": 30, + "price": 520, + "id": 10744305615151 }, { - "best_value": 205, - "categories": [ - "Wallets", - "Black", - "Leather", - "Solid Color", - "Accessories", - "(Do Not Use) Year-End Event", - "Womens", - "Saint Laurent" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "ysl", - "saint-laurent-sale", - "wallets-on-sale", - "saint-laurent-wallets", - "accessories-on-sale", - "wallets", - "accessories" - ], - "description": "This is an authentic SAINT LAURENT Grain De Poudre Matelasse Chevron Monogram Compact Tri Fold Wallet in Black. This elegant compact wallet features fine pebbled chevron quilted leather in black. The wallet features a facing V-shaped flap with a prominent silver YSL logo. The flap opens to a black leather interior with card slots, patch pockets, a billfold, and a zipper compartment.", - "discounted_price": 470, - "discounted_tier": 1, - "filters": { - "bags": [], - "jewelry": [], - "accessories": [ - "Wallets" - ], - "watches": [], - "shoes": [], - "brands": [ - "Saint Laurent" - ], - "color": [ - "Black" - ], - "material": [ - "Leather", - "Solid Color" - ], - "bag_feature": [], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$200-$500", - "condition": [ - "Shows Wear" - ], - "locations": [ - "New York" - ] - }, - "following_count": 16, - "id": 1586621, - "made_available_at": 1740435777, - "price": 495, - "priced_at": 1743026413, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/afe82440194d9f89a0827d7654484d83.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/afe82440194d9f89a0827d7654484d83.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/afe82440194d9f89a0827d7654484d83.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/4cf3f4f47d1431eda5d69b4b264cf95c.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/4cf3f4f47d1431eda5d69b4b264cf95c.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/4cf3f4f47d1431eda5d69b4b264cf95c.jpg" - } - ], - "title": "SAINT LAURENT Grain De Poudre Matelasse Chevron Monogram Compact Tri Fold Wallet Black", - "title_without_brand": "Grain De Poudre Matelasse Chevron Monogram Compact Tri Fold Wallet Black", - "_tags": [ - "1586621" - ], - "objectID": "1586621", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "ysl", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "saint-laurent-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "wallets-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "saint-laurent-wallets", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "wallets", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic SAINT LAURENT Grain De Poudre Matelasse Chevron Monogram Compact Tri Fold Wallet in Black. This elegant compact wallet features fine pebbled chevron quilted leather in black. The wallet features a facing V-shaped flap with a prominent silver YSL logo. The flap opens to a black leather interior with card slots, patch pockets, a billfold, and a zipper compartment.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Saint Laurent", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Black", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1586621", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "SAINT LAURENT Grain De Poudre Matelasse Chevron Monogram Compact Tri Fold Wallet Black", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Louis Vuitton", + "product_name": "Vernis Alma BB Cherry", + "condition": "Shows Wear", + "discounted_price": 70, + "price": 1350, + "id": 10744403394863 }, { - "best_value": 205, - "categories": [ - "Wallets", - "Black", - "Leather", - "Solid Color", - "Accessories", - "(Do Not Use) Year-End Event", - "Womens", - "Saint Laurent" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "ysl", - "saint-laurent-sale", - "wallets-on-sale", - "saint-laurent-wallets", - "accessories-on-sale", - "wallets", - "accessories" - ], - "description": "This is an authentic SAINT LAURENT Grain De Poudre Matelasse Chevron Monogram Compact Tri Fold Wallet in Black. This elegant compact wallet features fine pebbled chevron quilted leather in black. The wallet features a facing V-shaped flap with a prominent silver YSL logo. The flap opens to a black leather interior with card slots, patch pockets, a billfold, and a zipper compartment.", - "discounted_price": 470, - "discounted_tier": 1, - "filters": { - "bags": [], - "jewelry": [], - "accessories": [ - "Wallets" - ], - "watches": [], - "shoes": [], - "brands": [ - "Saint Laurent" - ], - "color": [ - "Black" - ], - "material": [ - "Leather", - "Solid Color" - ], - "bag_feature": [], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$200-$500", - "condition": [ - "Shows Wear" - ], - "locations": [ - "New York" - ] - }, - "following_count": 16, - "id": 1586621, - "made_available_at": 1740435777, + "brand_name": "Balenciaga", + "product_name": "Grained Calfskin XS Downtown Shoulder Bag Vivid Green", + "condition": "Shows Wear", + "discounted_price": 25, "price": 495, - "priced_at": 1743026413, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/afe82440194d9f89a0827d7654484d83.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/afe82440194d9f89a0827d7654484d83.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/afe82440194d9f89a0827d7654484d83.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/4cf3f4f47d1431eda5d69b4b264cf95c.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/4cf3f4f47d1431eda5d69b4b264cf95c.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/4cf3f4f47d1431eda5d69b4b264cf95c.jpg" - } - ], - "title": "SAINT LAURENT Grain De Poudre Matelasse Chevron Monogram Compact Tri Fold Wallet Black", - "title_without_brand": "Grain De Poudre Matelasse Chevron Monogram Compact Tri Fold Wallet Black", - "_tags": [ - "1586621" - ], - "objectID": "1586621", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "ysl", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "saint-laurent-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "wallets-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "saint-laurent-wallets", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "wallets", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic SAINT LAURENT Grain De Poudre Matelasse Chevron Monogram Compact Tri Fold Wallet in Black. This elegant compact wallet features fine pebbled chevron quilted leather in black. The wallet features a facing V-shaped flap with a prominent silver YSL logo. The flap opens to a black leather interior with card slots, patch pockets, a billfold, and a zipper compartment.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Saint Laurent", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Black", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1586621", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "SAINT LAURENT Grain De Poudre Matelasse Chevron Monogram Compact Tri Fold Wallet Black", - "matchLevel": "none", - "matchedWords": [] - } - } + "id": 10744291393839 }, { - "best_value": 205, - "categories": [ - "Wallets", - "Black", - "Leather", - "Solid Color", - "Accessories", - "(Do Not Use) Year-End Event", - "Womens", - "Saint Laurent" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "ysl", - "saint-laurent-sale", - "wallets-on-sale", - "saint-laurent-wallets", - "accessories-on-sale", - "wallets", - "accessories" - ], - "description": "This is an authentic SAINT LAURENT Grain De Poudre Matelasse Chevron Monogram Compact Tri Fold Wallet in Black. This elegant compact wallet features fine pebbled chevron quilted leather in black. The wallet features a facing V-shaped flap with a prominent silver YSL logo. The flap opens to a black leather interior with card slots, patch pockets, a billfold, and a zipper compartment.", - "discounted_price": 470, - "discounted_tier": 1, - "filters": { - "bags": [], - "jewelry": [], - "accessories": [ - "Wallets" - ], - "watches": [], - "shoes": [], - "brands": [ - "Saint Laurent" - ], - "color": [ - "Black" - ], - "material": [ - "Leather", - "Solid Color" - ], - "bag_feature": [], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$200-$500", - "condition": [ - "Shows Wear" - ], - "locations": [ - "New York" - ] - }, - "following_count": 16, - "id": 1586621, - "made_available_at": 1740435777, - "price": 495, - "priced_at": 1743026413, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/afe82440194d9f89a0827d7654484d83.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/afe82440194d9f89a0827d7654484d83.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/afe82440194d9f89a0827d7654484d83.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/4cf3f4f47d1431eda5d69b4b264cf95c.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/4cf3f4f47d1431eda5d69b4b264cf95c.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/4cf3f4f47d1431eda5d69b4b264cf95c.jpg" - } - ], - "title": "SAINT LAURENT Grain De Poudre Matelasse Chevron Monogram Compact Tri Fold Wallet Black", - "title_without_brand": "Grain De Poudre Matelasse Chevron Monogram Compact Tri Fold Wallet Black", - "_tags": [ - "1586621" - ], - "objectID": "1586621", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "ysl", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "saint-laurent-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "wallets-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "saint-laurent-wallets", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "wallets", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic SAINT LAURENT Grain De Poudre Matelasse Chevron Monogram Compact Tri Fold Wallet in Black. This elegant compact wallet features fine pebbled chevron quilted leather in black. The wallet features a facing V-shaped flap with a prominent silver YSL logo. The flap opens to a black leather interior with card slots, patch pockets, a billfold, and a zipper compartment.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Saint Laurent", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Black", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1586621", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "SAINT LAURENT Grain De Poudre Matelasse Chevron Monogram Compact Tri Fold Wallet Black", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Hermes", + "product_name": "Shiny Niloticus Crocodile Birkin 30 Sanguine", + "condition": "Shows Wear", + "discounted_price": 1685, + "price": 31970, + "id": 10619853308207 }, { - "best_value": 0, - "categories": [ - "Structured", - "Leather", - "Solid Color", - "Wallet Style", - "Styles", - "Yellows", - "Epsom", - "Shoulder Bags", - "More items added! Hermes Insiders Sale", - "Pop in Pastels", - "Constance", - "Womens", - "Crossbody", - "Handbags", - "Hermes" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoulder-bags-on-sale", - "bags-under-1000", - "hermes-constance", - "bags-on-sale", - "constance", - "pastels", - "hermes-crossbody-bags", - "hermes", - "yellows", - "epsom", - "crossbody-bags-on-sale", - "hermes-insiders-sale", - "hermes-wallet-style", - "hermes-constance-bags", - "wallet-style", - "handbag-styles", - "shoulder-bags", - "handbags", - "cross-body", - "hermes-on-sale", - "hermes-bags" - ], - "description": "This is an authentic HERMES Epsom Constance Long To Go Wallet in Jaune Milton. This chic wallet is crafted of fine Epsom calfskin leather in light yellow. The wallet features a front flap, strap, and signature H palladium plated press-lock. This opens to a partitioned leather interior with card slots, patch pockets, a detachable strap, and a zipper pocket.", - "discounted_price": 6265, - "discounted_tier": 1, - "filters": { - "bags": [ - "Wallet Style", - "Shoulder Bags", - "Crossbody", - "Handbags" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Hermes" - ], - "color": [ - "Yellows" - ], - "material": [ - "Leather", - "Solid Color" - ], - "bag_feature": [ - "Structured" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "Over $2000", - "condition": [ - "Excellent" - ], - "locations": [ - "New York" - ] - }, - "following_count": 49, - "id": 1586724, - "made_available_at": 1740435783, - "price": 6595, - "priced_at": 1743026413, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/484b879085233b3bd23b4fdabf6c92ab.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/484b879085233b3bd23b4fdabf6c92ab.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/484b879085233b3bd23b4fdabf6c92ab.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/2460d16cb4ad414f17e6561946b6fb8e.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/2460d16cb4ad414f17e6561946b6fb8e.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/2460d16cb4ad414f17e6561946b6fb8e.jpg" - } - ], - "title": "HERMES Epsom Constance Long Wallet To Go Wallet Jaune Milton", - "title_without_brand": "Epsom Constance Long Wallet To Go Wallet Jaune Milton", - "_tags": [ - "1586724" - ], - "objectID": "1586724", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-constance", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "constance", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "pastels", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-crossbody-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "yellows", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "epsom", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "crossbody-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-insiders-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-wallet-style", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-constance-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "wallet-style", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "cross-body", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-bags", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic HERMES Epsom Constance Long To Go Wallet in Jaune Milton. This chic wallet is crafted of fine Epsom calfskin leather in light yellow. The wallet features a front flap, strap, and signature H palladium plated press-lock. This opens to a partitioned leather interior with card slots, patch pockets, a detachable strap, and a zipper pocket.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Hermes", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Yellows", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1586724", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "HERMES Epsom Constance Long Wallet To Go Wallet Jaune Milton", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Telfar", + "product_name": "X UGG Suede Shearling Reverse Small Shopping Bag Natural", + "condition": "Excellent", + "discounted_price": 15, + "price": 245, + "id": 10733601947951 }, { - "best_value": 0, - "categories": [ - "Structured", - "Leather", - "Solid Color", - "Wallet Style", - "Styles", - "Yellows", - "Epsom", - "Shoulder Bags", - "More items added! Hermes Insiders Sale", - "Pop in Pastels", - "Constance", - "Womens", - "Crossbody", - "Handbags", - "Hermes" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoulder-bags-on-sale", - "bags-under-1000", - "hermes-constance", - "bags-on-sale", - "constance", - "pastels", - "hermes-crossbody-bags", - "hermes", - "yellows", - "epsom", - "crossbody-bags-on-sale", - "hermes-insiders-sale", - "hermes-wallet-style", - "hermes-constance-bags", - "wallet-style", - "handbag-styles", - "shoulder-bags", - "handbags", - "cross-body", - "hermes-on-sale", - "hermes-bags" - ], - "description": "This is an authentic HERMES Epsom Constance Long To Go Wallet in Jaune Milton. This chic wallet is crafted of fine Epsom calfskin leather in light yellow. The wallet features a front flap, strap, and signature H palladium plated press-lock. This opens to a partitioned leather interior with card slots, patch pockets, a detachable strap, and a zipper pocket.", - "discounted_price": 6265, - "discounted_tier": 1, - "filters": { - "bags": [ - "Wallet Style", - "Shoulder Bags", - "Crossbody", - "Handbags" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Hermes" - ], - "color": [ - "Yellows" - ], - "material": [ - "Leather", - "Solid Color" - ], - "bag_feature": [ - "Structured" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "Over $2000", - "condition": [ - "Excellent" - ], - "locations": [ - "New York" - ] - }, - "following_count": 49, - "id": 1586724, - "made_available_at": 1740435783, - "price": 6595, - "priced_at": 1743026413, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/484b879085233b3bd23b4fdabf6c92ab.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/484b879085233b3bd23b4fdabf6c92ab.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/484b879085233b3bd23b4fdabf6c92ab.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/2460d16cb4ad414f17e6561946b6fb8e.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/2460d16cb4ad414f17e6561946b6fb8e.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/2460d16cb4ad414f17e6561946b6fb8e.jpg" - } - ], - "title": "HERMES Epsom Constance Long Wallet To Go Wallet Jaune Milton", - "title_without_brand": "Epsom Constance Long Wallet To Go Wallet Jaune Milton", - "_tags": [ - "1586724" - ], - "objectID": "1586724", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-constance", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "constance", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "pastels", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-crossbody-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "yellows", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "epsom", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "crossbody-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-insiders-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-wallet-style", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-constance-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "wallet-style", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "cross-body", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-bags", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic HERMES Epsom Constance Long To Go Wallet in Jaune Milton. This chic wallet is crafted of fine Epsom calfskin leather in light yellow. The wallet features a front flap, strap, and signature H palladium plated press-lock. This opens to a partitioned leather interior with card slots, patch pockets, a detachable strap, and a zipper pocket.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Hermes", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Yellows", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1586724", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "HERMES Epsom Constance Long Wallet To Go Wallet Jaune Milton", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Louis Vuitton", + "product_name": "Monogram Tivoli GM", + "condition": "Shows Wear", + "discounted_price": 95, + "price": 1800, + "id": 10547060703535 }, { - "best_value": 0, - "categories": [ - "Structured", - "Leather", - "Solid Color", - "Wallet Style", - "Styles", - "Yellows", - "Epsom", - "Shoulder Bags", - "More items added! Hermes Insiders Sale", - "Pop in Pastels", - "Constance", - "Womens", - "Crossbody", - "Handbags", - "Hermes" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoulder-bags-on-sale", - "bags-under-1000", - "hermes-constance", - "bags-on-sale", - "constance", - "pastels", - "hermes-crossbody-bags", - "hermes", - "yellows", - "epsom", - "crossbody-bags-on-sale", - "hermes-insiders-sale", - "hermes-wallet-style", - "hermes-constance-bags", - "wallet-style", - "handbag-styles", - "shoulder-bags", - "handbags", - "cross-body", - "hermes-on-sale", - "hermes-bags" - ], - "description": "This is an authentic HERMES Epsom Constance Long To Go Wallet in Jaune Milton. This chic wallet is crafted of fine Epsom calfskin leather in light yellow. The wallet features a front flap, strap, and signature H palladium plated press-lock. This opens to a partitioned leather interior with card slots, patch pockets, a detachable strap, and a zipper pocket.", - "discounted_price": 6265, - "discounted_tier": 1, - "filters": { - "bags": [ - "Wallet Style", - "Shoulder Bags", - "Crossbody", - "Handbags" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Hermes" - ], - "color": [ - "Yellows" - ], - "material": [ - "Leather", - "Solid Color" - ], - "bag_feature": [ - "Structured" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "Over $2000", - "condition": [ - "Excellent" - ], - "locations": [ - "New York" - ] - }, - "following_count": 49, - "id": 1586724, - "made_available_at": 1740435783, - "price": 6595, - "priced_at": 1743026413, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/484b879085233b3bd23b4fdabf6c92ab.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/484b879085233b3bd23b4fdabf6c92ab.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/484b879085233b3bd23b4fdabf6c92ab.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/2460d16cb4ad414f17e6561946b6fb8e.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/2460d16cb4ad414f17e6561946b6fb8e.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/2460d16cb4ad414f17e6561946b6fb8e.jpg" - } - ], - "title": "HERMES Epsom Constance Long Wallet To Go Wallet Jaune Milton", - "title_without_brand": "Epsom Constance Long Wallet To Go Wallet Jaune Milton", - "_tags": [ - "1586724" - ], - "objectID": "1586724", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-constance", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "constance", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "pastels", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-crossbody-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "yellows", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "epsom", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "crossbody-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-insiders-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-wallet-style", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-constance-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "wallet-style", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "cross-body", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-bags", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic HERMES Epsom Constance Long To Go Wallet in Jaune Milton. This chic wallet is crafted of fine Epsom calfskin leather in light yellow. The wallet features a front flap, strap, and signature H palladium plated press-lock. This opens to a partitioned leather interior with card slots, patch pockets, a detachable strap, and a zipper pocket.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Hermes", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Yellows", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1586724", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "HERMES Epsom Constance Long Wallet To Go Wallet Jaune Milton", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Louis Vuitton", + "product_name": "Monogram Watercolor Discovery Bumbag Multicolor", + "condition": "Shows Wear", + "discounted_price": 120, + "price": 2290, + "id": 10744148590895 }, { - "best_value": 0, - "categories": [ - "Wallets", - "Whites", - "Womens", - "Leather", - "Solid Color", - "Caviar", - "Accessories", - "General", - "Top Designers", - "Chanel" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "chanel-on-sale", - "caviar", - "chanel", - "chanel-wallets", - "wallets-on-sale", - "top-designers", - "accessories-on-sale", - "wallets", - "accessories" - ], - "description": "This is an authentic CHANEL Caviar Quilted Zipped Key Holder Case in White. This petite wallet is crafted of white caviar leather. This round purse features a wrap-around zipper and a gold CC logo on the front. The zipper opens to a matching white fabric interior.", - "discounted_price": 935, - "discounted_tier": 1, - "filters": { - "bags": [], - "jewelry": [], - "accessories": [ - "Wallets" - ], - "watches": [], - "shoes": [], - "brands": [ - "Chanel" - ], - "color": [ - "Whites" - ], - "material": [ - "Leather", - "Solid Color" - ], - "bag_feature": [], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$500-$1000", - "condition": [ - "Shows Wear" - ], - "locations": [ - "New York" - ] - }, - "following_count": 19, - "id": 1586727, - "made_available_at": 1740435789, - "price": 985, - "priced_at": 1743026414, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/2d4e4d57fe6f7de05e836954a773d5d3.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/2d4e4d57fe6f7de05e836954a773d5d3.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/2d4e4d57fe6f7de05e836954a773d5d3.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/e319d142265fc59be98eb545a13fb310.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/e319d142265fc59be98eb545a13fb310.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/e319d142265fc59be98eb545a13fb310.jpg" - } - ], - "title": "CHANEL Caviar Quilted Zipped Key Holder Case White", - "title_without_brand": "Caviar Quilted Zipped Key Holder Case White", - "_tags": [ - "1586727" - ], - "objectID": "1586727", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "caviar", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-wallets", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "wallets-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "top-designers", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "wallets", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic CHANEL Caviar Quilted Zipped Key Holder Case in White. This petite wallet is crafted of white caviar leather. This round purse features a wrap-around zipper and a gold CC logo on the front. The zipper opens to a matching white fabric interior.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Chanel", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Whites", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1586727", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "CHANEL Caviar Quilted Zipped Key Holder Case White", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Louis Vuitton", + "product_name": "Damier Ebene Jersey Black", + "condition": "Shows Wear", + "discounted_price": 65, + "price": 1250, + "id": 10744346607919 }, { - "best_value": 0, - "categories": [ - "Wallets", - "Whites", - "Womens", - "Leather", - "Solid Color", - "Caviar", - "Accessories", - "General", - "Top Designers", - "Chanel" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "chanel-on-sale", - "caviar", - "chanel", - "chanel-wallets", - "wallets-on-sale", - "top-designers", - "accessories-on-sale", - "wallets", - "accessories" - ], - "description": "This is an authentic CHANEL Caviar Quilted Zipped Key Holder Case in White. This petite wallet is crafted of white caviar leather. This round purse features a wrap-around zipper and a gold CC logo on the front. The zipper opens to a matching white fabric interior.", - "discounted_price": 935, - "discounted_tier": 1, - "filters": { - "bags": [], - "jewelry": [], - "accessories": [ - "Wallets" - ], - "watches": [], - "shoes": [], - "brands": [ - "Chanel" - ], - "color": [ - "Whites" - ], - "material": [ - "Leather", - "Solid Color" - ], - "bag_feature": [], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$500-$1000", - "condition": [ - "Shows Wear" - ], - "locations": [ - "New York" - ] - }, - "following_count": 19, - "id": 1586727, - "made_available_at": 1740435789, - "price": 985, - "priced_at": 1743026414, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/2d4e4d57fe6f7de05e836954a773d5d3.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/2d4e4d57fe6f7de05e836954a773d5d3.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/2d4e4d57fe6f7de05e836954a773d5d3.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/e319d142265fc59be98eb545a13fb310.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/e319d142265fc59be98eb545a13fb310.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/e319d142265fc59be98eb545a13fb310.jpg" - } - ], - "title": "CHANEL Caviar Quilted Zipped Key Holder Case White", - "title_without_brand": "Caviar Quilted Zipped Key Holder Case White", - "_tags": [ - "1586727" - ], - "objectID": "1586727", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "caviar", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-wallets", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "wallets-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "top-designers", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "wallets", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic CHANEL Caviar Quilted Zipped Key Holder Case in White. This petite wallet is crafted of white caviar leather. This round purse features a wrap-around zipper and a gold CC logo on the front. The zipper opens to a matching white fabric interior.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Chanel", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Whites", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1586727", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "CHANEL Caviar Quilted Zipped Key Holder Case White", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Christian Dior", + "product_name": "Metal Enamel Code Bangle Bracelet Light Blue Silver", + "condition": "Excellent", + "discounted_price": 20, + "price": 375, + "id": 10744335073583 }, { - "best_value": 0, - "categories": [ - "Wallets", - "Whites", - "Womens", - "Leather", - "Solid Color", - "Caviar", - "Accessories", - "General", - "Top Designers", - "Chanel" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "chanel-on-sale", - "caviar", - "chanel", - "chanel-wallets", - "wallets-on-sale", - "top-designers", - "accessories-on-sale", - "wallets", - "accessories" - ], - "description": "This is an authentic CHANEL Caviar Quilted Zipped Key Holder Case in White. This petite wallet is crafted of white caviar leather. This round purse features a wrap-around zipper and a gold CC logo on the front. The zipper opens to a matching white fabric interior.", - "discounted_price": 935, - "discounted_tier": 1, - "filters": { - "bags": [], - "jewelry": [], - "accessories": [ - "Wallets" - ], - "watches": [], - "shoes": [], - "brands": [ - "Chanel" - ], - "color": [ - "Whites" - ], - "material": [ - "Leather", - "Solid Color" - ], - "bag_feature": [], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$500-$1000", - "condition": [ - "Shows Wear" - ], - "locations": [ - "New York" - ] - }, - "following_count": 19, - "id": 1586727, - "made_available_at": 1740435789, - "price": 985, - "priced_at": 1743026414, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/2d4e4d57fe6f7de05e836954a773d5d3.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/2d4e4d57fe6f7de05e836954a773d5d3.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/2d4e4d57fe6f7de05e836954a773d5d3.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/e319d142265fc59be98eb545a13fb310.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/e319d142265fc59be98eb545a13fb310.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/e319d142265fc59be98eb545a13fb310.jpg" - } - ], - "title": "CHANEL Caviar Quilted Zipped Key Holder Case White", - "title_without_brand": "Caviar Quilted Zipped Key Holder Case White", - "_tags": [ - "1586727" - ], - "objectID": "1586727", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "caviar", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-wallets", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "wallets-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "top-designers", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "wallets", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic CHANEL Caviar Quilted Zipped Key Holder Case in White. This petite wallet is crafted of white caviar leather. This round purse features a wrap-around zipper and a gold CC logo on the front. The zipper opens to a matching white fabric interior.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Chanel", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Whites", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1586727", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "CHANEL Caviar Quilted Zipped Key Holder Case White", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Chanel", + "product_name": "Lambskin Quilted Metal Mini Top Handle Vanity Case With Chain Beige", + "condition": "Shows Wear", + "discounted_price": 140, + "price": 2610, + "id": 10656596459823 }, { - "best_value": 0, - "categories": [ - "31 to 40mm", - "Graduation Gifts Sale", - "The Hour of Luxury Watches", - "Black", - "Mens", - "Stainless Steel", - "Luxury Watches", - "General", - "Watches", - "Fashion Week Sale", - "The Men's Edit", - "Classic & Timeless", - "Gifts for Him", - "Rolex" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "fashion-week-sale", - "luxury-watches", - "mens", - "the-mens-edit", - "classic-accessories", - "watches-on-sale", - "gifts-for-grads", - "gifts-for-him", - "rolex", - "watches" - ], - "description": "This is an authentic ROLEX Stainless Steel 40mm Oyster Perpetual Date GMT Master II Watch Black 116710LN. This watch is crafted of stainless steel and features a black dial, white luminescent hour markers and hands, GMT complication, date indicator, black ceramic bezel, and an Oyster link bracelet.", - "discounted_price": 12300, - "discounted_tier": 1, - "filters": { - "bags": [], - "jewelry": [], - "accessories": [], - "watches": [ - "Luxury Watches" - ], - "shoes": [], - "brands": [ - "Rolex" - ], - "color": [ - "Black" - ], - "material": [ - "Stainless Steel" - ], - "bag_feature": [], - "ring_size": [], - "watch_size": [ - "31 to 40mm" - ], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "Over $2000", - "condition": [ - "Shows Wear" - ], - "locations": [ - "New York" - ] - }, - "following_count": 28, - "id": 1586775, - "made_available_at": 1740453666, - "price": 12950, - "priced_at": 1743045415, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/7119fc0eaa4f82af2501c8d51c23307d.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/7119fc0eaa4f82af2501c8d51c23307d.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/7119fc0eaa4f82af2501c8d51c23307d.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/812510cb0ef974f9ff4a89b2535db14f.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/812510cb0ef974f9ff4a89b2535db14f.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/812510cb0ef974f9ff4a89b2535db14f.jpg" - } - ], - "title": "ROLEX Stainless Steel 40mm Oyster Perpetual Date GMT Master II Watch Black 116710LN", - "title_without_brand": "Stainless Steel 40mm Oyster Perpetual Date GMT Master II Watch Black 116710LN", - "_tags": [ - "1586775" - ], - "objectID": "1586775", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "fashion-week-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "luxury-watches", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "mens", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "the-mens-edit", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "classic-accessories", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "watches-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gifts-for-grads", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gifts-for-him", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "rolex", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "watches", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic ROLEX Stainless Steel 40mm Oyster Perpetual Date GMT Master II Watch Black 116710LN. This watch is crafted of stainless steel and features a black dial, white luminescent hour markers and hands, GMT complication, date indicator, black ceramic bezel, and an Oyster link bracelet.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Rolex", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Black", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Stainless Steel", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1586775", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "ROLEX Stainless Steel 40mm Oyster Perpetual Date GMT Master II Watch Black 116710LN", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Christian Dior", + "product_name": "Calfskin Saddle Belt White Navy", + "condition": "Excellent", + "discounted_price": 25, + "price": 495, + "id": 10744320721199 }, { - "best_value": 0, - "categories": [ - "31 to 40mm", - "Graduation Gifts Sale", - "The Hour of Luxury Watches", - "Black", - "Mens", - "Stainless Steel", - "Luxury Watches", - "General", - "Watches", - "Fashion Week Sale", - "The Men's Edit", - "Classic & Timeless", - "Gifts for Him", - "Rolex" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "fashion-week-sale", - "luxury-watches", - "mens", - "the-mens-edit", - "classic-accessories", - "watches-on-sale", - "gifts-for-grads", - "gifts-for-him", - "rolex", - "watches" - ], - "description": "This is an authentic ROLEX Stainless Steel 40mm Oyster Perpetual Date GMT Master II Watch Black 116710LN. This watch is crafted of stainless steel and features a black dial, white luminescent hour markers and hands, GMT complication, date indicator, black ceramic bezel, and an Oyster link bracelet.", - "discounted_price": 12300, - "discounted_tier": 1, - "filters": { - "bags": [], - "jewelry": [], - "accessories": [], - "watches": [ - "Luxury Watches" - ], - "shoes": [], - "brands": [ - "Rolex" - ], - "color": [ - "Black" - ], - "material": [ - "Stainless Steel" - ], - "bag_feature": [], - "ring_size": [], - "watch_size": [ - "31 to 40mm" - ], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "Over $2000", - "condition": [ - "Shows Wear" - ], - "locations": [ - "New York" - ] - }, - "following_count": 28, - "id": 1586775, - "made_available_at": 1740453666, - "price": 12950, - "priced_at": 1743045415, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/7119fc0eaa4f82af2501c8d51c23307d.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/7119fc0eaa4f82af2501c8d51c23307d.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/7119fc0eaa4f82af2501c8d51c23307d.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/812510cb0ef974f9ff4a89b2535db14f.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/812510cb0ef974f9ff4a89b2535db14f.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/812510cb0ef974f9ff4a89b2535db14f.jpg" - } - ], - "title": "ROLEX Stainless Steel 40mm Oyster Perpetual Date GMT Master II Watch Black 116710LN", - "title_without_brand": "Stainless Steel 40mm Oyster Perpetual Date GMT Master II Watch Black 116710LN", - "_tags": [ - "1586775" - ], - "objectID": "1586775", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "fashion-week-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "luxury-watches", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "mens", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "the-mens-edit", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "classic-accessories", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "watches-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gifts-for-grads", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gifts-for-him", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "rolex", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "watches", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic ROLEX Stainless Steel 40mm Oyster Perpetual Date GMT Master II Watch Black 116710LN. This watch is crafted of stainless steel and features a black dial, white luminescent hour markers and hands, GMT complication, date indicator, black ceramic bezel, and an Oyster link bracelet.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Rolex", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Black", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Stainless Steel", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1586775", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "ROLEX Stainless Steel 40mm Oyster Perpetual Date GMT Master II Watch Black 116710LN", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Louis Vuitton", + "product_name": "Damier Ebene Portobello Travel Shoulder Bag", + "condition": "Shows Wear", + "discounted_price": 25, + "price": 495, + "id": 10744183980335 }, { - "best_value": 0, - "categories": [ - "31 to 40mm", - "Graduation Gifts Sale", - "The Hour of Luxury Watches", - "Black", - "Mens", - "Stainless Steel", - "Luxury Watches", - "General", - "Watches", - "Fashion Week Sale", - "The Men's Edit", - "Classic & Timeless", - "Gifts for Him", - "Rolex" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "fashion-week-sale", - "luxury-watches", - "mens", - "the-mens-edit", - "classic-accessories", - "watches-on-sale", - "gifts-for-grads", - "gifts-for-him", - "rolex", - "watches" - ], - "description": "This is an authentic ROLEX Stainless Steel 40mm Oyster Perpetual Date GMT Master II Watch Black 116710LN. This watch is crafted of stainless steel and features a black dial, white luminescent hour markers and hands, GMT complication, date indicator, black ceramic bezel, and an Oyster link bracelet.", - "discounted_price": 12300, - "discounted_tier": 1, - "filters": { - "bags": [], - "jewelry": [], - "accessories": [], - "watches": [ - "Luxury Watches" - ], - "shoes": [], - "brands": [ - "Rolex" - ], - "color": [ - "Black" - ], - "material": [ - "Stainless Steel" - ], - "bag_feature": [], - "ring_size": [], - "watch_size": [ - "31 to 40mm" - ], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "Over $2000", - "condition": [ - "Shows Wear" - ], - "locations": [ - "New York" - ] - }, - "following_count": 28, - "id": 1586775, - "made_available_at": 1740453666, - "price": 12950, - "priced_at": 1743045415, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/7119fc0eaa4f82af2501c8d51c23307d.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/7119fc0eaa4f82af2501c8d51c23307d.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/7119fc0eaa4f82af2501c8d51c23307d.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/812510cb0ef974f9ff4a89b2535db14f.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/812510cb0ef974f9ff4a89b2535db14f.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/812510cb0ef974f9ff4a89b2535db14f.jpg" - } - ], - "title": "ROLEX Stainless Steel 40mm Oyster Perpetual Date GMT Master II Watch Black 116710LN", - "title_without_brand": "Stainless Steel 40mm Oyster Perpetual Date GMT Master II Watch Black 116710LN", - "_tags": [ - "1586775" - ], - "objectID": "1586775", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "fashion-week-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "luxury-watches", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "mens", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "the-mens-edit", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "classic-accessories", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "watches-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gifts-for-grads", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gifts-for-him", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "rolex", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "watches", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic ROLEX Stainless Steel 40mm Oyster Perpetual Date GMT Master II Watch Black 116710LN. This watch is crafted of stainless steel and features a black dial, white luminescent hour markers and hands, GMT complication, date indicator, black ceramic bezel, and an Oyster link bracelet.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Rolex", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Black", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Stainless Steel", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1586775", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "ROLEX Stainless Steel 40mm Oyster Perpetual Date GMT Master II Watch Black 116710LN", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Louis Vuitton", + "product_name": "Epi Montaigne Clutch PM Black", + "condition": "Shows Wear", + "discounted_price": 20, + "price": 385, + "id": 10693334565167 }, { - "best_value": 0, - "categories": [ - "31 to 40mm", - "Blues", - "Mens", - "Stainless Steel", - "Yellow Gold", - "Watches", - "Luxury Watches", - "Vintage Finds", - "Rolex" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "yellow-gold", - "luxury-watches", - "mens", - "vintage", - "watches-on-sale", - "rolex", - "watches" - ], - "description": "This is an authentic ROLEX Stainless Steel 18K Yellow Gold 40mm Submariner Date Watch Royal Blue 16613. The watch is crafted from stainless steel and 18 karat yellow gold, and features an automatic movement with a date complication, blue dial, unidirectional rotating bezel, and Oyster bracelet.", - "discounted_price": 12825, - "discounted_tier": 1, - "filters": { - "bags": [], - "jewelry": [], - "accessories": [], - "watches": [ - "Luxury Watches" - ], - "shoes": [], - "brands": [ - "Rolex" - ], - "color": [ - "Blues" - ], - "material": [ - "Stainless Steel", - "Yellow Gold" - ], - "bag_feature": [], - "ring_size": [], - "watch_size": [ - "31 to 40mm" - ], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "Over $2000", - "condition": [ - "Shows Wear" - ], - "locations": [ - "New York" - ] - }, - "following_count": 39, - "id": 1586784, - "made_available_at": 1740453605, - "price": 13500, - "priced_at": 1743045414, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/2230419a755bb746f5cd38c7d941b5af.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/2230419a755bb746f5cd38c7d941b5af.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/2230419a755bb746f5cd38c7d941b5af.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/7764f1a3ab64749bda6d29c56d14e082.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/7764f1a3ab64749bda6d29c56d14e082.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/7764f1a3ab64749bda6d29c56d14e082.jpg" - } - ], - "title": "ROLEX Stainless Steel 18K Yellow Gold 40mm Submariner Date Watch Royal Blue 16613", - "title_without_brand": "Stainless Steel 18K Yellow Gold 40mm Submariner Date Watch Royal Blue 16613", - "_tags": [ - "1586784" - ], - "objectID": "1586784", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "yellow-gold", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "luxury-watches", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "mens", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "vintage", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "watches-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "rolex", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "watches", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic ROLEX Stainless Steel 18K Yellow Gold 40mm Submariner Date Watch Royal Blue 16613. The watch is crafted from stainless steel and 18 karat yellow gold, and features an automatic movement with a date complication, blue dial, unidirectional rotating bezel, and Oyster bracelet.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Rolex", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Blues", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Stainless Steel", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Yellow Gold", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1586784", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "ROLEX Stainless Steel 18K Yellow Gold 40mm Submariner Date Watch Royal Blue 16613", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Louis Vuitton", + "product_name": "Epi Pochette Accessories 24 Black", + "condition": "Worn", + "discounted_price": 20, + "price": 385, + "id": 10577542054191 }, { - "best_value": 0, - "categories": [ - "31 to 40mm", - "Blues", - "Mens", - "Stainless Steel", - "Yellow Gold", - "Watches", - "Luxury Watches", - "Vintage Finds", - "Rolex" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "yellow-gold", - "luxury-watches", - "mens", - "vintage", - "watches-on-sale", - "rolex", - "watches" - ], - "description": "This is an authentic ROLEX Stainless Steel 18K Yellow Gold 40mm Submariner Date Watch Royal Blue 16613. The watch is crafted from stainless steel and 18 karat yellow gold, and features an automatic movement with a date complication, blue dial, unidirectional rotating bezel, and Oyster bracelet.", - "discounted_price": 12825, - "discounted_tier": 1, - "filters": { - "bags": [], - "jewelry": [], - "accessories": [], - "watches": [ - "Luxury Watches" - ], - "shoes": [], - "brands": [ - "Rolex" - ], - "color": [ - "Blues" - ], - "material": [ - "Stainless Steel", - "Yellow Gold" - ], - "bag_feature": [], - "ring_size": [], - "watch_size": [ - "31 to 40mm" - ], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "Over $2000", - "condition": [ - "Shows Wear" - ], - "locations": [ - "New York" - ] - }, - "following_count": 39, - "id": 1586784, - "made_available_at": 1740453605, - "price": 13500, - "priced_at": 1743045414, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/2230419a755bb746f5cd38c7d941b5af.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/2230419a755bb746f5cd38c7d941b5af.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/2230419a755bb746f5cd38c7d941b5af.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/7764f1a3ab64749bda6d29c56d14e082.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/7764f1a3ab64749bda6d29c56d14e082.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/7764f1a3ab64749bda6d29c56d14e082.jpg" - } - ], - "title": "ROLEX Stainless Steel 18K Yellow Gold 40mm Submariner Date Watch Royal Blue 16613", - "title_without_brand": "Stainless Steel 18K Yellow Gold 40mm Submariner Date Watch Royal Blue 16613", - "_tags": [ - "1586784" - ], - "objectID": "1586784", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "yellow-gold", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "luxury-watches", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "mens", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "vintage", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "watches-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "rolex", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "watches", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic ROLEX Stainless Steel 18K Yellow Gold 40mm Submariner Date Watch Royal Blue 16613. The watch is crafted from stainless steel and 18 karat yellow gold, and features an automatic movement with a date complication, blue dial, unidirectional rotating bezel, and Oyster bracelet.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Rolex", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Blues", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Stainless Steel", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Yellow Gold", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1586784", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "ROLEX Stainless Steel 18K Yellow Gold 40mm Submariner Date Watch Royal Blue 16613", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Christian Louboutin", + "product_name": "Patent Pigalle Follies 100 Pumps 35 Black", + "condition": "Excellent", + "discounted_price": 40, + "price": 725, + "id": 10579455181103 }, { - "best_value": 0, - "categories": [ - "31 to 40mm", - "Blues", - "Mens", - "Stainless Steel", - "Yellow Gold", - "Watches", - "Luxury Watches", - "Vintage Finds", - "Rolex" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "yellow-gold", - "luxury-watches", - "mens", - "vintage", - "watches-on-sale", - "rolex", - "watches" - ], - "description": "This is an authentic ROLEX Stainless Steel 18K Yellow Gold 40mm Submariner Date Watch Royal Blue 16613. The watch is crafted from stainless steel and 18 karat yellow gold, and features an automatic movement with a date complication, blue dial, unidirectional rotating bezel, and Oyster bracelet.", - "discounted_price": 12825, - "discounted_tier": 1, - "filters": { - "bags": [], - "jewelry": [], - "accessories": [], - "watches": [ - "Luxury Watches" - ], - "shoes": [], - "brands": [ - "Rolex" - ], - "color": [ - "Blues" - ], - "material": [ - "Stainless Steel", - "Yellow Gold" - ], - "bag_feature": [], - "ring_size": [], - "watch_size": [ - "31 to 40mm" - ], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "Over $2000", - "condition": [ - "Shows Wear" - ], - "locations": [ - "New York" - ] - }, - "following_count": 39, - "id": 1586784, - "made_available_at": 1740453605, - "price": 13500, - "priced_at": 1743045414, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/2230419a755bb746f5cd38c7d941b5af.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/2230419a755bb746f5cd38c7d941b5af.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/2230419a755bb746f5cd38c7d941b5af.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/7764f1a3ab64749bda6d29c56d14e082.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/7764f1a3ab64749bda6d29c56d14e082.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/7764f1a3ab64749bda6d29c56d14e082.jpg" - } - ], - "title": "ROLEX Stainless Steel 18K Yellow Gold 40mm Submariner Date Watch Royal Blue 16613", - "title_without_brand": "Stainless Steel 18K Yellow Gold 40mm Submariner Date Watch Royal Blue 16613", - "_tags": [ - "1586784" - ], - "objectID": "1586784", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "yellow-gold", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "luxury-watches", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "mens", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "vintage", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "watches-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "rolex", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "watches", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic ROLEX Stainless Steel 18K Yellow Gold 40mm Submariner Date Watch Royal Blue 16613. The watch is crafted from stainless steel and 18 karat yellow gold, and features an automatic movement with a date complication, blue dial, unidirectional rotating bezel, and Oyster bracelet.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Rolex", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Blues", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Stainless Steel", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Yellow Gold", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1586784", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "ROLEX Stainless Steel 18K Yellow Gold 40mm Submariner Date Watch Royal Blue 16613", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Louis Vuitton", + "product_name": "Damier Ebene Galliera PM", + "condition": "Shows Wear", + "discounted_price": 85, + "price": 1590, + "id": 10744290083119 }, { - "best_value": 0, - "categories": [ - "Browns", - "Womens", - "Solid Color", - "Handbags", - "Shoulder Bags", - "General", - "Styles", - "Totes", - "Whites", - "Suede Leather", - "Winter Accessories", - "Cozy Shearling", - "Chanel" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoulder-bags-on-sale", - "chanel-22-bags", - "chanel-on-sale", - "bags-under-1000", - "chanel-tote-bags", - "chanel-shoulder-bags", - "bags-on-sale", - "chanel", - "winter-accessories", - "totes-on-sale", - "chanel-totes", - "totes", - "handbag-styles", - "chanel-bags", - "shoulder-bags", - "handbags", - "shearling" - ], - "description": "This is an authentic CHANEL Suede Shearling Lambskin Chanel 22 in Brown and White. This drawstring bag is crafted of suede leather and shearling in light brown. This shoulder bag features a silver chain leather threaded shoulder strap. The bag is open to a shearling interior with a zipper pocket and a matching removable pouch.", - "discounted_price": 6930, - "discounted_tier": 1, - "filters": { - "bags": [ - "Handbags", - "Shoulder Bags", - "Totes" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Chanel" - ], - "color": [ - "Browns", - "Whites" - ], - "material": [ - "Solid Color", - "Suede Leather" - ], - "bag_feature": [], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "Over $2000", - "condition": [ - "Excellent" - ], - "locations": [ - "New York" - ] - }, - "following_count": 42, - "id": 1586812, - "made_available_at": 1740432953, - "price": 7295, - "priced_at": 1743023871, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/40a9a1dfbf5d4f5b79809a58bad27b28.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/40a9a1dfbf5d4f5b79809a58bad27b28.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/40a9a1dfbf5d4f5b79809a58bad27b28.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/ac954886ed3c1f767db176d6cdf7e8d0.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/ac954886ed3c1f767db176d6cdf7e8d0.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/ac954886ed3c1f767db176d6cdf7e8d0.jpg" - } - ], - "title": "CHANEL Suede Shearling Quilted Small Chanel 22 Brown White", - "title_without_brand": "Suede Shearling Quilted Small Chanel 22 Brown White", - "_tags": [ - "1586812" - ], - "objectID": "1586812", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-22-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-tote-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "winter-accessories", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "totes-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-totes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "totes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shearling", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic CHANEL Suede Shearling Lambskin Chanel 22 in Brown and White. This drawstring bag is crafted of suede leather and shearling in light brown. This shoulder bag features a silver chain leather threaded shoulder strap. The bag is open to a shearling interior with a zipper pocket and a matching removable pouch.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Chanel", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Browns", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Whites", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Suede Leather", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1586812", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "CHANEL Suede Shearling Quilted Small Chanel 22 Brown White", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Christian Dior", + "product_name": "Box Calfskin Medium Bobby Flap Black", + "condition": "Excellent", + "discounted_price": 170, + "price": 3185, + "id": 10744289526063 }, { - "best_value": 0, - "categories": [ - "Browns", - "Womens", - "Solid Color", - "Handbags", - "Shoulder Bags", - "General", - "Styles", - "Totes", - "Whites", - "Suede Leather", - "Winter Accessories", - "Cozy Shearling", - "Chanel" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoulder-bags-on-sale", - "chanel-22-bags", - "chanel-on-sale", - "bags-under-1000", - "chanel-tote-bags", - "chanel-shoulder-bags", - "bags-on-sale", - "chanel", - "winter-accessories", - "totes-on-sale", - "chanel-totes", - "totes", - "handbag-styles", - "chanel-bags", - "shoulder-bags", - "handbags", - "shearling" - ], - "description": "This is an authentic CHANEL Suede Shearling Lambskin Chanel 22 in Brown and White. This drawstring bag is crafted of suede leather and shearling in light brown. This shoulder bag features a silver chain leather threaded shoulder strap. The bag is open to a shearling interior with a zipper pocket and a matching removable pouch.", - "discounted_price": 6930, - "discounted_tier": 1, - "filters": { - "bags": [ - "Handbags", - "Shoulder Bags", - "Totes" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Chanel" - ], - "color": [ - "Browns", - "Whites" - ], - "material": [ - "Solid Color", - "Suede Leather" - ], - "bag_feature": [], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "Over $2000", - "condition": [ - "Excellent" - ], - "locations": [ - "New York" - ] - }, - "following_count": 42, - "id": 1586812, - "made_available_at": 1740432953, - "price": 7295, - "priced_at": 1743023871, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/40a9a1dfbf5d4f5b79809a58bad27b28.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/40a9a1dfbf5d4f5b79809a58bad27b28.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/40a9a1dfbf5d4f5b79809a58bad27b28.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/ac954886ed3c1f767db176d6cdf7e8d0.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/ac954886ed3c1f767db176d6cdf7e8d0.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/ac954886ed3c1f767db176d6cdf7e8d0.jpg" - } - ], - "title": "CHANEL Suede Shearling Quilted Small Chanel 22 Brown White", - "title_without_brand": "Suede Shearling Quilted Small Chanel 22 Brown White", - "_tags": [ - "1586812" - ], - "objectID": "1586812", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-22-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-tote-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "winter-accessories", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "totes-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-totes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "totes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shearling", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic CHANEL Suede Shearling Lambskin Chanel 22 in Brown and White. This drawstring bag is crafted of suede leather and shearling in light brown. This shoulder bag features a silver chain leather threaded shoulder strap. The bag is open to a shearling interior with a zipper pocket and a matching removable pouch.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Chanel", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Browns", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Whites", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Suede Leather", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1586812", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "CHANEL Suede Shearling Quilted Small Chanel 22 Brown White", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Louis Vuitton", + "product_name": "Reverse Monogram Tilsitt", + "condition": "Shows Wear", + "discounted_price": 115, + "price": 2190, + "id": 10744179491119 }, { - "best_value": 0, - "categories": [ - "Browns", - "Womens", - "Solid Color", - "Handbags", - "Shoulder Bags", - "General", - "Styles", - "Totes", - "Whites", - "Suede Leather", - "Winter Accessories", - "Cozy Shearling", - "Chanel" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoulder-bags-on-sale", - "chanel-22-bags", - "chanel-on-sale", - "bags-under-1000", - "chanel-tote-bags", - "chanel-shoulder-bags", - "bags-on-sale", - "chanel", - "winter-accessories", - "totes-on-sale", - "chanel-totes", - "totes", - "handbag-styles", - "chanel-bags", - "shoulder-bags", - "handbags", - "shearling" - ], - "description": "This is an authentic CHANEL Suede Shearling Lambskin Chanel 22 in Brown and White. This drawstring bag is crafted of suede leather and shearling in light brown. This shoulder bag features a silver chain leather threaded shoulder strap. The bag is open to a shearling interior with a zipper pocket and a matching removable pouch.", - "discounted_price": 6930, - "discounted_tier": 1, - "filters": { - "bags": [ - "Handbags", - "Shoulder Bags", - "Totes" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Chanel" - ], - "color": [ - "Browns", - "Whites" - ], - "material": [ - "Solid Color", - "Suede Leather" - ], - "bag_feature": [], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "Over $2000", - "condition": [ - "Excellent" - ], - "locations": [ - "New York" - ] - }, - "following_count": 42, - "id": 1586812, - "made_available_at": 1740432953, - "price": 7295, - "priced_at": 1743023871, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/40a9a1dfbf5d4f5b79809a58bad27b28.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/40a9a1dfbf5d4f5b79809a58bad27b28.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/40a9a1dfbf5d4f5b79809a58bad27b28.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/ac954886ed3c1f767db176d6cdf7e8d0.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/ac954886ed3c1f767db176d6cdf7e8d0.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/ac954886ed3c1f767db176d6cdf7e8d0.jpg" - } - ], - "title": "CHANEL Suede Shearling Quilted Small Chanel 22 Brown White", - "title_without_brand": "Suede Shearling Quilted Small Chanel 22 Brown White", - "_tags": [ - "1586812" - ], - "objectID": "1586812", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-22-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-tote-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "winter-accessories", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "totes-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-totes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "totes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shearling", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic CHANEL Suede Shearling Lambskin Chanel 22 in Brown and White. This drawstring bag is crafted of suede leather and shearling in light brown. This shoulder bag features a silver chain leather threaded shoulder strap. The bag is open to a shearling interior with a zipper pocket and a matching removable pouch.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Chanel", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Browns", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Whites", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Suede Leather", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1586812", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "CHANEL Suede Shearling Quilted Small Chanel 22 Brown White", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Chanel", + "product_name": "Denim Quilted Mood Small Bucket With Chain Black Multicolor", + "condition": "Excellent", + "discounted_price": 160, + "price": 2995, + "id": 10682035896623 }, { - "best_value": 0, - "categories": [ - "Pouches", - "Blues", - "Multicolor", - "Whites", - "Zip Top", - "Womens", - "Art / Scene on Exterior", - "Coated Canvas", - "Damier", - "Limited Edition", - "Pochette Accessories", - "Accessories", - "General", - "Louis Vuitton" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "damier", - "travel-pouches", - "louis-vuitton-pouches", - "louis-vuitton-on-sale", - "pochette-accessories", - "louis-vuitton", - "accessories-on-sale", - "zip-top", - "le", - "pouches", - "accessories" - ], - "description": "This is the authentic LOUIS VUITTON Damier Azur 2015 Christmas Animation Mini Pochette Accessories. This chic pochette features the playful and colorful design of people riding off in a car, printed on blue and white damier canvas. The bag features a polished brass chain link wristlet strap, and a matching top zipper that opens to a beige fabric interior.", - "discounted_price": 710, - "discounted_tier": 1, - "filters": { - "bags": [], - "jewelry": [], - "accessories": [ - "Pouches" - ], - "watches": [], - "shoes": [], - "brands": [ - "Louis Vuitton" - ], - "color": [ - "Blues", - "Multicolor", - "Whites" - ], - "material": [ - "Art / Scene on Exterior", - "Coated Canvas" - ], - "bag_feature": [ - "Zip Top" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$500-$1000", - "condition": [ - "Excellent" - ], - "locations": [ - "New York" - ] - }, - "following_count": 36, - "id": 1587024, - "made_available_at": 1740435795, + "brand_name": "Chanel", + "product_name": "Caviar Quilted CC Filigree Card Holder Pink Blue Green", + "condition": "Shows Wear", + "discounted_price": 40, "price": 750, - "priced_at": 1743026415, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/ec5711fecdb9d74a063d661c1dd49bbc.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/ec5711fecdb9d74a063d661c1dd49bbc.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/ec5711fecdb9d74a063d661c1dd49bbc.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/4fc835536e4323ac49c9941262250a84.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/4fc835536e4323ac49c9941262250a84.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/4fc835536e4323ac49c9941262250a84.jpg" - } - ], - "title": "LOUIS VUITTON Damier Azur 2015 Christmas Animation Mini Pochette Accessories", - "title_without_brand": "Damier Azur 2015 Christmas Animation Mini Pochette Accessories", - "_tags": [ - "1587024" - ], - "objectID": "1587024", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "damier", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "travel-pouches", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-pouches", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "pochette-accessories", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "zip-top", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "le", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "pouches", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is the authentic LOUIS VUITTON Damier Azur 2015 Christmas Animation Mini Pochette Accessories. This chic pochette features the playful and colorful design of people riding off in a car, printed on blue and white damier canvas. The bag features a polished brass chain link wristlet strap, and a matching top zipper that opens to a beige fabric interior.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Louis Vuitton", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Blues", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Multicolor", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Whites", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Art / Scene on Exterior", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Coated Canvas", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1587024", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "LOUIS VUITTON Damier Azur 2015 Christmas Animation Mini Pochette Accessories", - "matchLevel": "none", - "matchedWords": [] - } - } + "id": 10746138591535 }, { - "best_value": 0, - "categories": [ - "Pouches", - "Blues", - "Multicolor", - "Whites", - "Zip Top", - "Womens", - "Art / Scene on Exterior", - "Coated Canvas", - "Damier", - "Limited Edition", - "Pochette Accessories", - "Accessories", - "General", - "Louis Vuitton" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "damier", - "travel-pouches", - "louis-vuitton-pouches", - "louis-vuitton-on-sale", - "pochette-accessories", - "louis-vuitton", - "accessories-on-sale", - "zip-top", - "le", - "pouches", - "accessories" - ], - "description": "This is the authentic LOUIS VUITTON Damier Azur 2015 Christmas Animation Mini Pochette Accessories. This chic pochette features the playful and colorful design of people riding off in a car, printed on blue and white damier canvas. The bag features a polished brass chain link wristlet strap, and a matching top zipper that opens to a beige fabric interior.", - "discounted_price": 710, - "discounted_tier": 1, - "filters": { - "bags": [], - "jewelry": [], - "accessories": [ - "Pouches" - ], - "watches": [], - "shoes": [], - "brands": [ - "Louis Vuitton" - ], - "color": [ - "Blues", - "Multicolor", - "Whites" - ], - "material": [ - "Art / Scene on Exterior", - "Coated Canvas" - ], - "bag_feature": [ - "Zip Top" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$500-$1000", - "condition": [ - "Excellent" - ], - "locations": [ - "New York" - ] - }, - "following_count": 36, - "id": 1587024, - "made_available_at": 1740435795, - "price": 750, - "priced_at": 1743026415, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/ec5711fecdb9d74a063d661c1dd49bbc.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/ec5711fecdb9d74a063d661c1dd49bbc.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/ec5711fecdb9d74a063d661c1dd49bbc.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/4fc835536e4323ac49c9941262250a84.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/4fc835536e4323ac49c9941262250a84.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/4fc835536e4323ac49c9941262250a84.jpg" - } - ], - "title": "LOUIS VUITTON Damier Azur 2015 Christmas Animation Mini Pochette Accessories", - "title_without_brand": "Damier Azur 2015 Christmas Animation Mini Pochette Accessories", - "_tags": [ - "1587024" - ], - "objectID": "1587024", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "damier", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "travel-pouches", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-pouches", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "pochette-accessories", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "zip-top", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "le", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "pouches", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is the authentic LOUIS VUITTON Damier Azur 2015 Christmas Animation Mini Pochette Accessories. This chic pochette features the playful and colorful design of people riding off in a car, printed on blue and white damier canvas. The bag features a polished brass chain link wristlet strap, and a matching top zipper that opens to a beige fabric interior.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Louis Vuitton", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Blues", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Multicolor", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Whites", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Art / Scene on Exterior", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Coated Canvas", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1587024", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "LOUIS VUITTON Damier Azur 2015 Christmas Animation Mini Pochette Accessories", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Valentino Garavani", + "product_name": "Vitello Rockstud Compact Wallet Bright Cognac", + "condition": "Shows Wear", + "discounted_price": 15, + "price": 265, + "id": 10640141386031 }, { - "best_value": 0, - "categories": [ - "Pouches", - "Blues", - "Multicolor", - "Whites", - "Zip Top", - "Womens", - "Art / Scene on Exterior", - "Coated Canvas", - "Damier", - "Limited Edition", - "Pochette Accessories", - "Accessories", - "General", - "Louis Vuitton" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "damier", - "travel-pouches", - "louis-vuitton-pouches", - "louis-vuitton-on-sale", - "pochette-accessories", - "louis-vuitton", - "accessories-on-sale", - "zip-top", - "le", - "pouches", - "accessories" - ], - "description": "This is the authentic LOUIS VUITTON Damier Azur 2015 Christmas Animation Mini Pochette Accessories. This chic pochette features the playful and colorful design of people riding off in a car, printed on blue and white damier canvas. The bag features a polished brass chain link wristlet strap, and a matching top zipper that opens to a beige fabric interior.", - "discounted_price": 710, - "discounted_tier": 1, - "filters": { - "bags": [], - "jewelry": [], - "accessories": [ - "Pouches" - ], - "watches": [], - "shoes": [], - "brands": [ - "Louis Vuitton" - ], - "color": [ - "Blues", - "Multicolor", - "Whites" - ], - "material": [ - "Art / Scene on Exterior", - "Coated Canvas" - ], - "bag_feature": [ - "Zip Top" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$500-$1000", - "condition": [ - "Excellent" - ], - "locations": [ - "New York" - ] - }, - "following_count": 36, - "id": 1587024, - "made_available_at": 1740435795, - "price": 750, - "priced_at": 1743026415, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/ec5711fecdb9d74a063d661c1dd49bbc.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/ec5711fecdb9d74a063d661c1dd49bbc.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/ec5711fecdb9d74a063d661c1dd49bbc.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/4fc835536e4323ac49c9941262250a84.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/4fc835536e4323ac49c9941262250a84.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/4fc835536e4323ac49c9941262250a84.jpg" - } - ], - "title": "LOUIS VUITTON Damier Azur 2015 Christmas Animation Mini Pochette Accessories", - "title_without_brand": "Damier Azur 2015 Christmas Animation Mini Pochette Accessories", - "_tags": [ - "1587024" - ], - "objectID": "1587024", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "damier", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "travel-pouches", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-pouches", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "pochette-accessories", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "zip-top", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "le", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "pouches", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is the authentic LOUIS VUITTON Damier Azur 2015 Christmas Animation Mini Pochette Accessories. This chic pochette features the playful and colorful design of people riding off in a car, printed on blue and white damier canvas. The bag features a polished brass chain link wristlet strap, and a matching top zipper that opens to a beige fabric interior.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Louis Vuitton", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Blues", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Multicolor", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Whites", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Art / Scene on Exterior", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Coated Canvas", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1587024", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "LOUIS VUITTON Damier Azur 2015 Christmas Animation Mini Pochette Accessories", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Fendi", + "product_name": "Zucca Tote Tobacco", + "condition": "Shows Wear", + "discounted_price": 20, + "price": 415, + "id": 10656559726895 }, { - "best_value": 1090, - "categories": [ - "Black", - "Structured", - "Top Handles", - "Zip Top", - "Womens", - "Suede Leather", - "Handbags", - "Shoulder Bags", - "Styles", - "Gucci", - "Live Shopping with FASHIONPHILE" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoulder-bags-on-sale", - "gucci-shoulder-bags", - "gucci-bags-on-sale", - "gucci-ophidia-bags", - "gucci-ophidia", - "bags-under-1000", - "gucci", - "gucci-bags", - "bags-on-sale", - "instagram-live-shopping", - "top-handles", - "zip-top", - "handbag-styles", - "gucci-on-sale", - "shoulder-bags", - "handbags" - ], - "description": "This is the authentic GUCCI Suede Patent GG Web Medium Ophidia Top Handle Dome Bag in Black. This crossbody bag is crafted of black suede with black patent leather trim. The bag features matching rolled handles, an adjustable black patent leather shoulder strap, and gold hardware. The top zipper opens to a beige interior with zipper and patch pockets.", - "discounted_price": 1260, - "discounted_tier": 1, - "filters": { - "bags": [ - "Handbags", - "Shoulder Bags" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Gucci" - ], - "color": [ - "Black" - ], - "material": [ - "Suede Leather" - ], - "bag_feature": [ - "Structured", - "Top Handles", - "Zip Top" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$1000-$2000", - "condition": [ - "Shows Wear" - ], - "locations": [ - "New York" - ] - }, - "following_count": 16, - "id": 1587127, - "made_available_at": 1740431326, - "price": 1325, - "priced_at": 1743023862, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/a8437c50afd556b0e371a592e72b65c8.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/a8437c50afd556b0e371a592e72b65c8.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/a8437c50afd556b0e371a592e72b65c8.jpg" - }, - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/5cf89f787735c3e37906924021e08161.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/5cf89f787735c3e37906924021e08161.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/5cf89f787735c3e37906924021e08161.jpg" - } - ], - "title": "GUCCI Suede Patent GG Web Medium Ophidia Top Handle Dome Bag Black", - "title_without_brand": "Suede Patent GG Web Medium Ophidia Top Handle Dome Bag Black", - "_tags": [ - "1587127" - ], - "objectID": "1587127", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-ophidia-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-ophidia", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "instagram-live-shopping", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "top-handles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "zip-top", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is the authentic GUCCI Suede Patent GG Web Medium Ophidia Top Handle Dome Bag in Black. This crossbody bag is crafted of black suede with black patent leather trim. The bag features matching rolled handles, an adjustable black patent leather shoulder strap, and gold hardware. The top zipper opens to a beige interior with zipper and patch pockets.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Gucci", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Black", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Suede Leather", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1587127", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "GUCCI Suede Patent GG Web Medium Ophidia Top Handle Dome Bag Black", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Chanel", + "product_name": "Lambskin Quilted Oval Minaudiere Chain Clutch White", + "condition": "Excellent", + "discounted_price": 180, + "price": 3440, + "id": 10688682426671 }, { - "best_value": 1090, - "categories": [ - "Black", - "Structured", - "Top Handles", - "Zip Top", - "Womens", - "Suede Leather", - "Handbags", - "Shoulder Bags", - "Styles", - "Gucci", - "Live Shopping with FASHIONPHILE" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoulder-bags-on-sale", - "gucci-shoulder-bags", - "gucci-bags-on-sale", - "gucci-ophidia-bags", - "gucci-ophidia", - "bags-under-1000", - "gucci", - "gucci-bags", - "bags-on-sale", - "instagram-live-shopping", - "top-handles", - "zip-top", - "handbag-styles", - "gucci-on-sale", - "shoulder-bags", - "handbags" - ], - "description": "This is the authentic GUCCI Suede Patent GG Web Medium Ophidia Top Handle Dome Bag in Black. This crossbody bag is crafted of black suede with black patent leather trim. The bag features matching rolled handles, an adjustable black patent leather shoulder strap, and gold hardware. The top zipper opens to a beige interior with zipper and patch pockets.", - "discounted_price": 1260, - "discounted_tier": 1, - "filters": { - "bags": [ - "Handbags", - "Shoulder Bags" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Gucci" - ], - "color": [ - "Black" - ], - "material": [ - "Suede Leather" - ], - "bag_feature": [ - "Structured", - "Top Handles", - "Zip Top" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$1000-$2000", - "condition": [ - "Shows Wear" - ], - "locations": [ - "New York" - ] - }, - "following_count": 16, - "id": 1587127, - "made_available_at": 1740431326, - "price": 1325, - "priced_at": 1743023862, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/a8437c50afd556b0e371a592e72b65c8.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/a8437c50afd556b0e371a592e72b65c8.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/a8437c50afd556b0e371a592e72b65c8.jpg" - }, - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/5cf89f787735c3e37906924021e08161.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/5cf89f787735c3e37906924021e08161.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/5cf89f787735c3e37906924021e08161.jpg" - } - ], - "title": "GUCCI Suede Patent GG Web Medium Ophidia Top Handle Dome Bag Black", - "title_without_brand": "Suede Patent GG Web Medium Ophidia Top Handle Dome Bag Black", - "_tags": [ - "1587127" - ], - "objectID": "1587127", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-ophidia-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-ophidia", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "instagram-live-shopping", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "top-handles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "zip-top", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is the authentic GUCCI Suede Patent GG Web Medium Ophidia Top Handle Dome Bag in Black. This crossbody bag is crafted of black suede with black patent leather trim. The bag features matching rolled handles, an adjustable black patent leather shoulder strap, and gold hardware. The top zipper opens to a beige interior with zipper and patch pockets.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Gucci", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Black", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Suede Leather", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1587127", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "GUCCI Suede Patent GG Web Medium Ophidia Top Handle Dome Bag Black", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Louis Vuitton", + "product_name": "Monogram Palermo PM", + "condition": "Shows Wear", + "discounted_price": 50, + "price": 995, + "id": 10744333795631 }, { - "best_value": 1090, - "categories": [ - "Black", - "Structured", - "Top Handles", - "Zip Top", - "Womens", - "Suede Leather", - "Handbags", - "Shoulder Bags", - "Styles", - "Gucci", - "Live Shopping with FASHIONPHILE" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoulder-bags-on-sale", - "gucci-shoulder-bags", - "gucci-bags-on-sale", - "gucci-ophidia-bags", - "gucci-ophidia", - "bags-under-1000", - "gucci", - "gucci-bags", - "bags-on-sale", - "instagram-live-shopping", - "top-handles", - "zip-top", - "handbag-styles", - "gucci-on-sale", - "shoulder-bags", - "handbags" - ], - "description": "This is the authentic GUCCI Suede Patent GG Web Medium Ophidia Top Handle Dome Bag in Black. This crossbody bag is crafted of black suede with black patent leather trim. The bag features matching rolled handles, an adjustable black patent leather shoulder strap, and gold hardware. The top zipper opens to a beige interior with zipper and patch pockets.", - "discounted_price": 1260, - "discounted_tier": 1, - "filters": { - "bags": [ - "Handbags", - "Shoulder Bags" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Gucci" - ], - "color": [ - "Black" - ], - "material": [ - "Suede Leather" - ], - "bag_feature": [ - "Structured", - "Top Handles", - "Zip Top" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$1000-$2000", - "condition": [ - "Shows Wear" - ], - "locations": [ - "New York" - ] - }, - "following_count": 16, - "id": 1587127, - "made_available_at": 1740431326, - "price": 1325, - "priced_at": 1743023862, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/a8437c50afd556b0e371a592e72b65c8.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/a8437c50afd556b0e371a592e72b65c8.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/a8437c50afd556b0e371a592e72b65c8.jpg" - }, - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/5cf89f787735c3e37906924021e08161.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/5cf89f787735c3e37906924021e08161.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/5cf89f787735c3e37906924021e08161.jpg" - } - ], - "title": "GUCCI Suede Patent GG Web Medium Ophidia Top Handle Dome Bag Black", - "title_without_brand": "Suede Patent GG Web Medium Ophidia Top Handle Dome Bag Black", - "_tags": [ - "1587127" - ], - "objectID": "1587127", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-ophidia-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-ophidia", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "instagram-live-shopping", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "top-handles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "zip-top", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is the authentic GUCCI Suede Patent GG Web Medium Ophidia Top Handle Dome Bag in Black. This crossbody bag is crafted of black suede with black patent leather trim. The bag features matching rolled handles, an adjustable black patent leather shoulder strap, and gold hardware. The top zipper opens to a beige interior with zipper and patch pockets.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Gucci", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Black", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Suede Leather", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1587127", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "GUCCI Suede Patent GG Web Medium Ophidia Top Handle Dome Bag Black", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Louis Vuitton", + "product_name": "Reverse Monogram Dauphine Backpack PM", + "condition": "Shows Wear", + "discounted_price": 95, + "price": 1790, + "id": 10744332026159 }, { - "best_value": 0, - "categories": [ - "Belts", - "Leather", - "Solid Color", - "Lambskin", - "Accessories", - "Beige", - "80/32", - "Chanel" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "lambskin", - "chanel-on-sale", - "belts", - "chanel", - "belts-on-sale", - "chanel-belts", - "accessories-on-sale", - "accessories" - ], - "description": "This is an authentic CHANEL Lambskin CC Logo Skinny Belt size 80 or 32 in Ivory. This chic belt is crafted of lambskin leather in ivory and features a gold Chanel CC buckle.", - "discounted_price": 615, - "discounted_tier": 1, - "filters": { - "bags": [], - "jewelry": [], - "accessories": [ - "Belts" - ], - "watches": [], - "shoes": [], - "brands": [ - "Chanel" - ], - "color": [ - "Beige" - ], - "material": [ - "Leather", - "Solid Color" - ], - "bag_feature": [], - "ring_size": [], - "watch_size": [], - "belt_size": [ - "80/32" - ], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$500-$1000", - "condition": [ - "Shows Wear" - ], - "locations": [ - "New York" - ] - }, - "following_count": 58, - "id": 1587208, - "made_available_at": 1740431040, - "price": 650, - "priced_at": 1743023857, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/9c9940456a3398ea9cee113a20416d3d.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/9c9940456a3398ea9cee113a20416d3d.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/9c9940456a3398ea9cee113a20416d3d.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/901e4bdb3a4f468c6978bc32d6462dcc.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/901e4bdb3a4f468c6978bc32d6462dcc.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/901e4bdb3a4f468c6978bc32d6462dcc.jpg" - } - ], - "title": "CHANEL Lambskin CC Logo Skinny Belt 80 32 Ivory", - "title_without_brand": "Lambskin CC Logo Skinny Belt 80 32 Ivory", - "_tags": [ - "1587208" - ], - "objectID": "1587208", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "lambskin", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "belts", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "belts-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-belts", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic CHANEL Lambskin CC Logo Skinny Belt size 80 or 32 in Ivory. This chic belt is crafted of lambskin leather in ivory and features a gold Chanel CC buckle.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Chanel", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Beige", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1587208", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "CHANEL Lambskin CC Logo Skinny Belt 80 32 Ivory", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Louis Vuitton", + "product_name": "Damier Azur Small Ring Agenda Cover", + "condition": "Shows Wear", + "discounted_price": 15, + "price": 245, + "id": 10729283944751 }, { - "best_value": 0, - "categories": [ - "Belts", - "Leather", - "Solid Color", - "Lambskin", - "Accessories", - "Beige", - "80/32", - "Chanel" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "lambskin", - "chanel-on-sale", - "belts", - "chanel", - "belts-on-sale", - "chanel-belts", - "accessories-on-sale", - "accessories" - ], - "description": "This is an authentic CHANEL Lambskin CC Logo Skinny Belt size 80 or 32 in Ivory. This chic belt is crafted of lambskin leather in ivory and features a gold Chanel CC buckle.", - "discounted_price": 615, - "discounted_tier": 1, - "filters": { - "bags": [], - "jewelry": [], - "accessories": [ - "Belts" - ], - "watches": [], - "shoes": [], - "brands": [ - "Chanel" - ], - "color": [ - "Beige" - ], - "material": [ - "Leather", - "Solid Color" - ], - "bag_feature": [], - "ring_size": [], - "watch_size": [], - "belt_size": [ - "80/32" - ], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$500-$1000", - "condition": [ - "Shows Wear" - ], - "locations": [ - "New York" - ] - }, - "following_count": 58, - "id": 1587208, - "made_available_at": 1740431040, - "price": 650, - "priced_at": 1743023857, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/9c9940456a3398ea9cee113a20416d3d.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/9c9940456a3398ea9cee113a20416d3d.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/9c9940456a3398ea9cee113a20416d3d.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/901e4bdb3a4f468c6978bc32d6462dcc.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/901e4bdb3a4f468c6978bc32d6462dcc.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/901e4bdb3a4f468c6978bc32d6462dcc.jpg" - } - ], - "title": "CHANEL Lambskin CC Logo Skinny Belt 80 32 Ivory", - "title_without_brand": "Lambskin CC Logo Skinny Belt 80 32 Ivory", - "_tags": [ - "1587208" - ], - "objectID": "1587208", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "lambskin", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "belts", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "belts-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-belts", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic CHANEL Lambskin CC Logo Skinny Belt size 80 or 32 in Ivory. This chic belt is crafted of lambskin leather in ivory and features a gold Chanel CC buckle.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Chanel", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Beige", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1587208", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "CHANEL Lambskin CC Logo Skinny Belt 80 32 Ivory", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Jennifer Meyer", + "product_name": "18K Yellow Gold Turquoise Open Heart Pendant Necklace", + "condition": "Shows Wear", + "discounted_price": 35, + "price": 640, + "id": 10746125058351 }, { - "best_value": 0, - "categories": [ - "Belts", - "Leather", - "Solid Color", - "Lambskin", - "Accessories", - "Beige", - "80/32", - "Chanel" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "lambskin", - "chanel-on-sale", - "belts", - "chanel", - "belts-on-sale", - "chanel-belts", - "accessories-on-sale", - "accessories" - ], - "description": "This is an authentic CHANEL Lambskin CC Logo Skinny Belt size 80 or 32 in Ivory. This chic belt is crafted of lambskin leather in ivory and features a gold Chanel CC buckle.", - "discounted_price": 615, - "discounted_tier": 1, - "filters": { - "bags": [], - "jewelry": [], - "accessories": [ - "Belts" - ], - "watches": [], - "shoes": [], - "brands": [ - "Chanel" - ], - "color": [ - "Beige" - ], - "material": [ - "Leather", - "Solid Color" - ], - "bag_feature": [], - "ring_size": [], - "watch_size": [], - "belt_size": [ - "80/32" - ], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$500-$1000", - "condition": [ - "Shows Wear" - ], - "locations": [ - "New York" - ] - }, - "following_count": 58, - "id": 1587208, - "made_available_at": 1740431040, - "price": 650, - "priced_at": 1743023857, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/9c9940456a3398ea9cee113a20416d3d.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/9c9940456a3398ea9cee113a20416d3d.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/9c9940456a3398ea9cee113a20416d3d.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/901e4bdb3a4f468c6978bc32d6462dcc.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/901e4bdb3a4f468c6978bc32d6462dcc.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/901e4bdb3a4f468c6978bc32d6462dcc.jpg" - } - ], - "title": "CHANEL Lambskin CC Logo Skinny Belt 80 32 Ivory", - "title_without_brand": "Lambskin CC Logo Skinny Belt 80 32 Ivory", - "_tags": [ - "1587208" - ], - "objectID": "1587208", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "lambskin", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "belts", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "belts-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-belts", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic CHANEL Lambskin CC Logo Skinny Belt size 80 or 32 in Ivory. This chic belt is crafted of lambskin leather in ivory and features a gold Chanel CC buckle.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Chanel", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Beige", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1587208", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "CHANEL Lambskin CC Logo Skinny Belt 80 32 Ivory", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Fendi", + "product_name": "Vitello Dolce Large By The Way Boston Bag Black", + "condition": "Shows Wear", + "discounted_price": 35, + "price": 640, + "id": 10733591658799 }, { - "best_value": 640, - "categories": [ - "Shoes", - "Fabrics", - "Sneakers", - "Accessories", - "Black", - "Whites", - "General", - "Womens", - "Travel Essentials", - "Sporty & Chic", - "Little Luxuries Sale", - "Year-End Sale", - "39.5", - "Chanel" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "chanel-sneakers", - "chanel-on-sale", - "little-luxuries-sale-2024", - "shoes-on-sale", - "travel-essentials", - "chanel", - "sneakers-shoes", - "accessories-on-sale", - "shoes", - "chanel-shoes", - "accessories", - "year-end-sale" - ], - "description": "These are an authentic pair of CHANEL Fabric Suede Calfskin CC Sneakers 39.5 in White and Black. These stylish sneakers are crafted of a black suede and white ribbed fabric with an iconic Chanel CC logo. They feature white and black rubber soles.", - "discounted_price": 810, - "discounted_tier": 1, - "filters": { - "bags": [], - "jewelry": [], - "accessories": [ - "Shoes" - ], - "watches": [], - "shoes": [ - "Sneakers" - ], - "brands": [ - "Chanel" - ], - "color": [ - "Black", - "Whites" - ], - "material": [ - "Fabrics" - ], - "bag_feature": [], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [ - "39.5" - ], - "on_sale": [ - "5% Off" - ], - "price": "$500-$1000", - "condition": [ - "Shows Wear" - ], - "locations": [ - "New York" - ] - }, - "following_count": 45, - "id": 1587306, - "made_available_at": 1740432997, - "price": 855, - "priced_at": 1743023873, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/325709fb994048ed083d24dd55417568.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/325709fb994048ed083d24dd55417568.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/325709fb994048ed083d24dd55417568.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/42e9e0660e72fed7a10b85298dbbaa96.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/42e9e0660e72fed7a10b85298dbbaa96.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/42e9e0660e72fed7a10b85298dbbaa96.jpg" - } - ], - "title": "CHANEL Fabric Suede Calfskin CC Sneakers 39.5 White Black", - "title_without_brand": "Fabric Suede Calfskin CC Sneakers 39.5 White Black", - "_tags": [ - "1587306" - ], - "objectID": "1587306", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-sneakers", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "little-luxuries-sale-2024", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoes-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "travel-essentials", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "sneakers-shoes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-shoes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "year-end-sale", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "These are an authentic pair of CHANEL Fabric Suede Calfskin CC Sneakers 39.5 in White and Black. These stylish sneakers are crafted of a black suede and white ribbed fabric with an iconic Chanel CC logo. They feature white and black rubber soles.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Chanel", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Black", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Whites", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Fabrics", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1587306", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "CHANEL Fabric Suede Calfskin CC Sneakers 39.5 White Black", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Louis Vuitton", + "product_name": "Damier Azur Neverfull MM GM Pochette Rose Ballerine", + "condition": "Excellent", + "discounted_price": 30, + "price": 595, + "id": 10744182407471 }, { - "best_value": 640, - "categories": [ - "Shoes", - "Fabrics", - "Sneakers", - "Accessories", - "Black", - "Whites", - "General", - "Womens", - "Travel Essentials", - "Sporty & Chic", - "Little Luxuries Sale", - "Year-End Sale", - "39.5", - "Chanel" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "chanel-sneakers", - "chanel-on-sale", - "little-luxuries-sale-2024", - "shoes-on-sale", - "travel-essentials", - "chanel", - "sneakers-shoes", - "accessories-on-sale", - "shoes", - "chanel-shoes", - "accessories", - "year-end-sale" - ], - "description": "These are an authentic pair of CHANEL Fabric Suede Calfskin CC Sneakers 39.5 in White and Black. These stylish sneakers are crafted of a black suede and white ribbed fabric with an iconic Chanel CC logo. They feature white and black rubber soles.", - "discounted_price": 810, - "discounted_tier": 1, - "filters": { - "bags": [], - "jewelry": [], - "accessories": [ - "Shoes" - ], - "watches": [], - "shoes": [ - "Sneakers" - ], - "brands": [ - "Chanel" - ], - "color": [ - "Black", - "Whites" - ], - "material": [ - "Fabrics" - ], - "bag_feature": [], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [ - "39.5" - ], - "on_sale": [ - "5% Off" - ], - "price": "$500-$1000", - "condition": [ - "Shows Wear" - ], - "locations": [ - "New York" - ] - }, - "following_count": 45, - "id": 1587306, - "made_available_at": 1740432997, - "price": 855, - "priced_at": 1743023873, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/325709fb994048ed083d24dd55417568.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/325709fb994048ed083d24dd55417568.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/325709fb994048ed083d24dd55417568.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/42e9e0660e72fed7a10b85298dbbaa96.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/42e9e0660e72fed7a10b85298dbbaa96.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/42e9e0660e72fed7a10b85298dbbaa96.jpg" - } - ], - "title": "CHANEL Fabric Suede Calfskin CC Sneakers 39.5 White Black", - "title_without_brand": "Fabric Suede Calfskin CC Sneakers 39.5 White Black", - "_tags": [ - "1587306" - ], - "objectID": "1587306", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-sneakers", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "little-luxuries-sale-2024", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoes-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "travel-essentials", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "sneakers-shoes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-shoes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "year-end-sale", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "These are an authentic pair of CHANEL Fabric Suede Calfskin CC Sneakers 39.5 in White and Black. These stylish sneakers are crafted of a black suede and white ribbed fabric with an iconic Chanel CC logo. They feature white and black rubber soles.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Chanel", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Black", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Whites", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Fabrics", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1587306", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "CHANEL Fabric Suede Calfskin CC Sneakers 39.5 White Black", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Louis Vuitton", + "product_name": "Monogram Tulum GM", + "condition": "Shows Wear", + "discounted_price": 40, + "price": 735, + "id": 10739988267311 }, { - "best_value": 640, - "categories": [ - "Shoes", - "Fabrics", - "Sneakers", - "Accessories", - "Black", - "Whites", - "General", - "Womens", - "Travel Essentials", - "Sporty & Chic", - "Little Luxuries Sale", - "Year-End Sale", - "39.5", - "Chanel" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "chanel-sneakers", - "chanel-on-sale", - "little-luxuries-sale-2024", - "shoes-on-sale", - "travel-essentials", - "chanel", - "sneakers-shoes", - "accessories-on-sale", - "shoes", - "chanel-shoes", - "accessories", - "year-end-sale" - ], - "description": "These are an authentic pair of CHANEL Fabric Suede Calfskin CC Sneakers 39.5 in White and Black. These stylish sneakers are crafted of a black suede and white ribbed fabric with an iconic Chanel CC logo. They feature white and black rubber soles.", - "discounted_price": 810, - "discounted_tier": 1, - "filters": { - "bags": [], - "jewelry": [], - "accessories": [ - "Shoes" - ], - "watches": [], - "shoes": [ - "Sneakers" - ], - "brands": [ - "Chanel" - ], - "color": [ - "Black", - "Whites" - ], - "material": [ - "Fabrics" - ], - "bag_feature": [], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [ - "39.5" - ], - "on_sale": [ - "5% Off" - ], - "price": "$500-$1000", - "condition": [ - "Shows Wear" - ], - "locations": [ - "New York" - ] - }, - "following_count": 45, - "id": 1587306, - "made_available_at": 1740432997, - "price": 855, - "priced_at": 1743023873, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/325709fb994048ed083d24dd55417568.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/325709fb994048ed083d24dd55417568.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/325709fb994048ed083d24dd55417568.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/42e9e0660e72fed7a10b85298dbbaa96.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/42e9e0660e72fed7a10b85298dbbaa96.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/42e9e0660e72fed7a10b85298dbbaa96.jpg" - } - ], - "title": "CHANEL Fabric Suede Calfskin CC Sneakers 39.5 White Black", - "title_without_brand": "Fabric Suede Calfskin CC Sneakers 39.5 White Black", - "_tags": [ - "1587306" - ], - "objectID": "1587306", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-sneakers", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "little-luxuries-sale-2024", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoes-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "travel-essentials", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "sneakers-shoes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-shoes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "year-end-sale", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "These are an authentic pair of CHANEL Fabric Suede Calfskin CC Sneakers 39.5 in White and Black. These stylish sneakers are crafted of a black suede and white ribbed fabric with an iconic Chanel CC logo. They feature white and black rubber soles.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Chanel", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Black", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Whites", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Fabrics", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1587306", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "CHANEL Fabric Suede Calfskin CC Sneakers 39.5 White Black", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Burberry", + "product_name": "E-Canvas Stripe Book Tote Archive Beige", + "condition": "Excellent", + "discounted_price": 40, + "price": 750, + "id": 10746121486639 }, { - "best_value": 495, - "categories": [ - "Shoes", - "Fabrics", - "Sneakers", - "Accessories", - "General", - "Womens", - "Sporty & Chic", - "Suede Leather", - "Love Luxury Event", - "Reds", - "36.5", - "Chanel", - "For the Mom on the Go" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "on-the-go", - "chanel-sneakers", - "chanel-on-sale", - "shoes-on-sale", - "chanel", - "sneakers-shoes", - "accessories-on-sale", - "shoes", - "chanel-shoes", - "love-luxury-event", - "accessories" - ], - "description": "This is an authentic pair of CHANEL Suede Calfskin Velvet Womens CC Sneakers 36.5 in Burgundy and Black. These stylish sneakers are crafted of dark red velvet, and suede black calfskin at the trim. They feature a CC logo on the back of the heel. ", - "discounted_price": 755, - "discounted_tier": 1, - "filters": { - "bags": [], - "jewelry": [], - "accessories": [ - "Shoes" - ], - "watches": [], - "shoes": [ - "Sneakers" - ], - "brands": [ - "Chanel" - ], - "color": [ - "Reds" - ], - "material": [ - "Fabrics", - "Suede Leather" - ], - "bag_feature": [], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [ - "36.5" - ], - "on_sale": [ - "5% Off" - ], - "price": "$500-$1000", - "condition": [ - "Excellent" - ], - "locations": [ - "New York" - ] - }, - "following_count": 16, - "id": 1587310, - "made_available_at": 1740433025, - "price": 795, - "priced_at": 1743023875, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/4d11b45e78e1d08ec83635b0f141c2ee.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/4d11b45e78e1d08ec83635b0f141c2ee.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/4d11b45e78e1d08ec83635b0f141c2ee.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/141692e47a5f7c4752ca5dc22926daba.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/141692e47a5f7c4752ca5dc22926daba.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/141692e47a5f7c4752ca5dc22926daba.jpg" - } - ], - "title": "CHANEL Velvet Suede Womens CC Sneakers 36.5 Burgundy Black", - "title_without_brand": "Velvet Suede Womens CC Sneakers 36.5 Burgundy Black", - "_tags": [ - "1587310" - ], - "objectID": "1587310", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "on-the-go", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-sneakers", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoes-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "sneakers-shoes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-shoes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "love-luxury-event", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic pair of CHANEL Suede Calfskin Velvet Womens CC Sneakers 36.5 in Burgundy and Black. These stylish sneakers are crafted of dark red velvet, and suede black calfskin at the trim. They feature a CC logo on the back of the heel. ", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Chanel", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Reds", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Fabrics", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Suede Leather", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1587310", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "CHANEL Velvet Suede Womens CC Sneakers 36.5 Burgundy Black", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Hermes", + "product_name": "Togo Birkin 35 Black", + "condition": "Shows Wear", + "discounted_price": 735, + "price": 13960, + "id": 10746121453871 }, { - "best_value": 495, - "categories": [ - "Shoes", - "Fabrics", - "Sneakers", - "Accessories", - "General", - "Womens", - "Sporty & Chic", - "Suede Leather", - "Love Luxury Event", - "Reds", - "36.5", - "Chanel", - "For the Mom on the Go" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "on-the-go", - "chanel-sneakers", - "chanel-on-sale", - "shoes-on-sale", - "chanel", - "sneakers-shoes", - "accessories-on-sale", - "shoes", - "chanel-shoes", - "love-luxury-event", - "accessories" - ], - "description": "This is an authentic pair of CHANEL Suede Calfskin Velvet Womens CC Sneakers 36.5 in Burgundy and Black. These stylish sneakers are crafted of dark red velvet, and suede black calfskin at the trim. They feature a CC logo on the back of the heel. ", - "discounted_price": 755, - "discounted_tier": 1, - "filters": { - "bags": [], - "jewelry": [], - "accessories": [ - "Shoes" - ], - "watches": [], - "shoes": [ - "Sneakers" - ], - "brands": [ - "Chanel" - ], - "color": [ - "Reds" - ], - "material": [ - "Fabrics", - "Suede Leather" - ], - "bag_feature": [], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [ - "36.5" - ], - "on_sale": [ - "5% Off" - ], - "price": "$500-$1000", - "condition": [ - "Excellent" - ], - "locations": [ - "New York" - ] - }, - "following_count": 16, - "id": 1587310, - "made_available_at": 1740433025, - "price": 795, - "priced_at": 1743023875, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/4d11b45e78e1d08ec83635b0f141c2ee.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/4d11b45e78e1d08ec83635b0f141c2ee.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/4d11b45e78e1d08ec83635b0f141c2ee.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/141692e47a5f7c4752ca5dc22926daba.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/141692e47a5f7c4752ca5dc22926daba.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/141692e47a5f7c4752ca5dc22926daba.jpg" - } - ], - "title": "CHANEL Velvet Suede Womens CC Sneakers 36.5 Burgundy Black", - "title_without_brand": "Velvet Suede Womens CC Sneakers 36.5 Burgundy Black", - "_tags": [ - "1587310" - ], - "objectID": "1587310", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "on-the-go", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-sneakers", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoes-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "sneakers-shoes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-shoes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "love-luxury-event", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic pair of CHANEL Suede Calfskin Velvet Womens CC Sneakers 36.5 in Burgundy and Black. These stylish sneakers are crafted of dark red velvet, and suede black calfskin at the trim. They feature a CC logo on the back of the heel. ", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Chanel", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Reds", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Fabrics", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Suede Leather", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1587310", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "CHANEL Velvet Suede Womens CC Sneakers 36.5 Burgundy Black", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Chanel", + "product_name": "Crackled Patent Calfskin Puzzle Tote Red", + "condition": "Excellent", + "discounted_price": 70, + "price": 1290, + "id": 10746121322799 }, { - "best_value": 495, - "categories": [ - "Shoes", - "Fabrics", - "Sneakers", - "Accessories", - "General", - "Womens", - "Sporty & Chic", - "Suede Leather", - "Love Luxury Event", - "Reds", - "36.5", - "Chanel", - "For the Mom on the Go" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "on-the-go", - "chanel-sneakers", - "chanel-on-sale", - "shoes-on-sale", - "chanel", - "sneakers-shoes", - "accessories-on-sale", - "shoes", - "chanel-shoes", - "love-luxury-event", - "accessories" - ], - "description": "This is an authentic pair of CHANEL Suede Calfskin Velvet Womens CC Sneakers 36.5 in Burgundy and Black. These stylish sneakers are crafted of dark red velvet, and suede black calfskin at the trim. They feature a CC logo on the back of the heel. ", - "discounted_price": 755, - "discounted_tier": 1, - "filters": { - "bags": [], - "jewelry": [], - "accessories": [ - "Shoes" - ], - "watches": [], - "shoes": [ - "Sneakers" - ], - "brands": [ - "Chanel" - ], - "color": [ - "Reds" - ], - "material": [ - "Fabrics", - "Suede Leather" - ], - "bag_feature": [], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [ - "36.5" - ], - "on_sale": [ - "5% Off" - ], - "price": "$500-$1000", - "condition": [ - "Excellent" - ], - "locations": [ - "New York" - ] - }, - "following_count": 16, - "id": 1587310, - "made_available_at": 1740433025, - "price": 795, - "priced_at": 1743023875, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/4d11b45e78e1d08ec83635b0f141c2ee.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/4d11b45e78e1d08ec83635b0f141c2ee.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/4d11b45e78e1d08ec83635b0f141c2ee.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/141692e47a5f7c4752ca5dc22926daba.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/141692e47a5f7c4752ca5dc22926daba.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/141692e47a5f7c4752ca5dc22926daba.jpg" - } - ], - "title": "CHANEL Velvet Suede Womens CC Sneakers 36.5 Burgundy Black", - "title_without_brand": "Velvet Suede Womens CC Sneakers 36.5 Burgundy Black", - "_tags": [ - "1587310" - ], - "objectID": "1587310", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "on-the-go", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-sneakers", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoes-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "sneakers-shoes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-shoes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "love-luxury-event", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic pair of CHANEL Suede Calfskin Velvet Womens CC Sneakers 36.5 in Burgundy and Black. These stylish sneakers are crafted of dark red velvet, and suede black calfskin at the trim. They feature a CC logo on the back of the heel. ", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Chanel", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Reds", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Fabrics", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Suede Leather", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1587310", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "CHANEL Velvet Suede Womens CC Sneakers 36.5 Burgundy Black", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Saint Laurent", + "product_name": "Grain De Poudre Textured Mixed Matelasse Triquilt Medium Monogram Satchel Black", + "condition": "Shows Wear", + "discounted_price": 90, + "price": 1660, + "id": 10688812745007 }, { - "best_value": 170, - "categories": [ - "Grays", - "Open Top", - "Fabrics", - "Solid Color", - "Crossbody", - "Handbags", - "Shoulder Bags", - "Styles", - "Monogram Masterpieces", - "Bags Under $1,000", - "Hands-Free Bags", - "Womens", - "Stella McCartney" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoulder-bags-on-sale", - "bags-under-1000", - "bags-on-sale", - "love-logos", - "crossbody-bags-on-sale", - "hands-free", - "stella-mccartney", - "handbag-styles", - "shoulder-bags", - "handbags", - "cross-body" - ], - "description": "This is an authentic STELLA MCCARTNEY Eco Felt Mini Logo Crossbody in Smoke Slate. This stylish shoulder bag is crafted of thick grey felt and features a Stella McCartney embroidered logo on the front, and a logo canvas shoulder strap in silver and black. The top is open to a grey interior with a patch pocket. This is the perfect eco-friendly shoulder bag for day or evening with the forward fashion of Stella McCartney! ", - "discounted_price": 425, - "discounted_tier": 1, - "filters": { - "bags": [ - "Crossbody", - "Handbags", - "Shoulder Bags" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Stella McCartney" - ], - "color": [ - "Grays" - ], - "material": [ - "Fabrics", - "Solid Color" - ], - "bag_feature": [ - "Open Top" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$200-$500", - "condition": [ - "Excellent" - ], - "locations": [ - "New York" - ] - }, - "following_count": 19, - "id": 1587367, - "made_available_at": 1740433016, - "price": 450, - "priced_at": 1743023873, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/2ca59e7789dcadb2cfb9532d2d7c5f6d.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/2ca59e7789dcadb2cfb9532d2d7c5f6d.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/2ca59e7789dcadb2cfb9532d2d7c5f6d.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/442bfc7bc0005ae73d4d0525766e4b2a.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/442bfc7bc0005ae73d4d0525766e4b2a.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/442bfc7bc0005ae73d4d0525766e4b2a.jpg" - } - ], - "title": "STELLA MCCARTNEY Eco Felt Mini Logo Crossbody Smoke Slate", - "title_without_brand": "Eco Felt Mini Logo Crossbody Smoke Slate", - "_tags": [ - "1587367" - ], - "objectID": "1587367", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "love-logos", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "crossbody-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hands-free", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "stella-mccartney", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "cross-body", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic STELLA MCCARTNEY Eco Felt Mini Logo Crossbody in Smoke Slate. This stylish shoulder bag is crafted of thick grey felt and features a Stella McCartney embroidered logo on the front, and a logo canvas shoulder strap in silver and black. The top is open to a grey interior with a patch pocket. This is the perfect eco-friendly shoulder bag for day or evening with the forward fashion of Stella McCartney! ", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Stella McCartney", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Grays", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Fabrics", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1587367", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "STELLA MCCARTNEY Eco Felt Mini Logo Crossbody Smoke Slate", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Pomellato", + "product_name": "18K Rose Gold Ruby Lucciola Ring 53 6.25", + "condition": "Excellent", + "discounted_price": 40, + "price": 725, + "id": 10656521879855 }, { - "best_value": 170, - "categories": [ - "Grays", - "Open Top", - "Fabrics", - "Solid Color", - "Crossbody", - "Handbags", - "Shoulder Bags", - "Styles", - "Monogram Masterpieces", - "Bags Under $1,000", - "Hands-Free Bags", - "Womens", - "Stella McCartney" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoulder-bags-on-sale", - "bags-under-1000", - "bags-on-sale", - "love-logos", - "crossbody-bags-on-sale", - "hands-free", - "stella-mccartney", - "handbag-styles", - "shoulder-bags", - "handbags", - "cross-body" - ], - "description": "This is an authentic STELLA MCCARTNEY Eco Felt Mini Logo Crossbody in Smoke Slate. This stylish shoulder bag is crafted of thick grey felt and features a Stella McCartney embroidered logo on the front, and a logo canvas shoulder strap in silver and black. The top is open to a grey interior with a patch pocket. This is the perfect eco-friendly shoulder bag for day or evening with the forward fashion of Stella McCartney! ", - "discounted_price": 425, - "discounted_tier": 1, - "filters": { - "bags": [ - "Crossbody", - "Handbags", - "Shoulder Bags" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Stella McCartney" - ], - "color": [ - "Grays" - ], - "material": [ - "Fabrics", - "Solid Color" - ], - "bag_feature": [ - "Open Top" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$200-$500", - "condition": [ - "Excellent" - ], - "locations": [ - "New York" - ] - }, - "following_count": 19, - "id": 1587367, - "made_available_at": 1740433016, - "price": 450, - "priced_at": 1743023873, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/2ca59e7789dcadb2cfb9532d2d7c5f6d.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/2ca59e7789dcadb2cfb9532d2d7c5f6d.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/2ca59e7789dcadb2cfb9532d2d7c5f6d.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/442bfc7bc0005ae73d4d0525766e4b2a.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/442bfc7bc0005ae73d4d0525766e4b2a.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/442bfc7bc0005ae73d4d0525766e4b2a.jpg" - } - ], - "title": "STELLA MCCARTNEY Eco Felt Mini Logo Crossbody Smoke Slate", - "title_without_brand": "Eco Felt Mini Logo Crossbody Smoke Slate", - "_tags": [ - "1587367" - ], - "objectID": "1587367", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "love-logos", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "crossbody-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hands-free", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "stella-mccartney", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "cross-body", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic STELLA MCCARTNEY Eco Felt Mini Logo Crossbody in Smoke Slate. This stylish shoulder bag is crafted of thick grey felt and features a Stella McCartney embroidered logo on the front, and a logo canvas shoulder strap in silver and black. The top is open to a grey interior with a patch pocket. This is the perfect eco-friendly shoulder bag for day or evening with the forward fashion of Stella McCartney! ", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Stella McCartney", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Grays", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Fabrics", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1587367", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "STELLA MCCARTNEY Eco Felt Mini Logo Crossbody Smoke Slate", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Gucci", + "product_name": "Calfskin GG Matelasse Small Slim Chain Shoulder Bag Perfect Pink Natural", + "condition": "Excellent", + "discounted_price": 120, + "price": 2245, + "id": 10746113032495 }, { - "best_value": 170, - "categories": [ - "Grays", - "Open Top", - "Fabrics", - "Solid Color", - "Crossbody", - "Handbags", - "Shoulder Bags", - "Styles", - "Monogram Masterpieces", - "Bags Under $1,000", - "Hands-Free Bags", - "Womens", - "Stella McCartney" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoulder-bags-on-sale", - "bags-under-1000", - "bags-on-sale", - "love-logos", - "crossbody-bags-on-sale", - "hands-free", - "stella-mccartney", - "handbag-styles", - "shoulder-bags", - "handbags", - "cross-body" - ], - "description": "This is an authentic STELLA MCCARTNEY Eco Felt Mini Logo Crossbody in Smoke Slate. This stylish shoulder bag is crafted of thick grey felt and features a Stella McCartney embroidered logo on the front, and a logo canvas shoulder strap in silver and black. The top is open to a grey interior with a patch pocket. This is the perfect eco-friendly shoulder bag for day or evening with the forward fashion of Stella McCartney! ", - "discounted_price": 425, - "discounted_tier": 1, - "filters": { - "bags": [ - "Crossbody", - "Handbags", - "Shoulder Bags" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Stella McCartney" - ], - "color": [ - "Grays" - ], - "material": [ - "Fabrics", - "Solid Color" - ], - "bag_feature": [ - "Open Top" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$200-$500", - "condition": [ - "Excellent" - ], - "locations": [ - "New York" - ] - }, - "following_count": 19, - "id": 1587367, - "made_available_at": 1740433016, - "price": 450, - "priced_at": 1743023873, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/2ca59e7789dcadb2cfb9532d2d7c5f6d.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/2ca59e7789dcadb2cfb9532d2d7c5f6d.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/2ca59e7789dcadb2cfb9532d2d7c5f6d.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/442bfc7bc0005ae73d4d0525766e4b2a.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/442bfc7bc0005ae73d4d0525766e4b2a.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/442bfc7bc0005ae73d4d0525766e4b2a.jpg" - } - ], - "title": "STELLA MCCARTNEY Eco Felt Mini Logo Crossbody Smoke Slate", - "title_without_brand": "Eco Felt Mini Logo Crossbody Smoke Slate", - "_tags": [ - "1587367" - ], - "objectID": "1587367", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "love-logos", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "crossbody-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hands-free", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "stella-mccartney", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "cross-body", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic STELLA MCCARTNEY Eco Felt Mini Logo Crossbody in Smoke Slate. This stylish shoulder bag is crafted of thick grey felt and features a Stella McCartney embroidered logo on the front, and a logo canvas shoulder strap in silver and black. The top is open to a grey interior with a patch pocket. This is the perfect eco-friendly shoulder bag for day or evening with the forward fashion of Stella McCartney! ", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Stella McCartney", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Grays", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Fabrics", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1587367", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "STELLA MCCARTNEY Eco Felt Mini Logo Crossbody Smoke Slate", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Prada", + "product_name": "Tessuto Nylon Mini Re-Edition 2000 Bag Black", + "condition": "Shows Wear", + "discounted_price": 45, + "price": 850, + "id": 10746112475439 }, { - "best_value": 0, - "categories": [ - "Whites", - "Structured", - "Womens", - "Leather", - "Solid Color", - "Crossbody", - "Handbags", - "Shoulder Bags", - "Wallet Style", - "Caviar", - "Wallet On Chain", - "General", - "Styles", - "Chanel" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "chanel-wallet-on-chain", - "shoulder-bags-on-sale", - "chanel-on-sale", - "bags-under-1000", - "caviar", - "chanel-shoulder-bags", - "bags-on-sale", - "chanel", - "crossbody-bags-on-sale", - "woc", - "wallet-style", - "handbag-styles", - "chanel-bags", - "chanel-crossbody-bags", - "shoulder-bags", - "handbags", - "cross-body" - ], - "description": "This is an authentic CHANEL Shiny Caviar Quilted Flap Charm Wallet On Chain WOC in White. This stylish wallet is crafted of luxuriously textured diamond quilted caviar leather in white with a micro metal quilted flap charm. This shoulder bag features a gold chain-link crossbody strap and a matching gold Chanel CC logo on the facing flap. The bag opens to a white fabric and leather interior with a zipper compartment and card slots.", - "discounted_price": 4555, - "discounted_tier": 1, - "filters": { - "bags": [ - "Crossbody", - "Handbags", - "Shoulder Bags", - "Wallet Style" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Chanel" - ], - "color": [ - "Whites" - ], - "material": [ - "Leather", - "Solid Color" - ], - "bag_feature": [ - "Structured" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "Over $2000", - "condition": [ - "Excellent" - ], - "locations": [ - "New York" - ] - }, - "following_count": 64, - "id": 1587368, - "made_available_at": 1740430531, - "price": 4795, - "priced_at": 1743019214, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/96f7d1420820919585a7d3f1f7e71346.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/96f7d1420820919585a7d3f1f7e71346.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/96f7d1420820919585a7d3f1f7e71346.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/6439e7b367d41f04b7df73a71277428a.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/6439e7b367d41f04b7df73a71277428a.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/6439e7b367d41f04b7df73a71277428a.jpg" - } - ], - "title": "CHANEL Shiny Caviar Quilted Flap Charm Wallet On Chain WOC White", - "title_without_brand": "Shiny Caviar Quilted Flap Charm Wallet On Chain WOC White", - "_tags": [ - "1587368" - ], - "objectID": "1587368", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-wallet-on-chain", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "caviar", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "crossbody-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "woc", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "wallet-style", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-crossbody-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "cross-body", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic CHANEL Shiny Caviar Quilted Flap Charm Wallet On Chain WOC in White. This stylish wallet is crafted of luxuriously textured diamond quilted caviar leather in white with a micro metal quilted flap charm. This shoulder bag features a gold chain-link crossbody strap and a matching gold Chanel CC logo on the facing flap. The bag opens to a white fabric and leather interior with a zipper compartment and card slots.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Chanel", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Whites", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1587368", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "CHANEL Shiny Caviar Quilted Flap Charm Wallet On Chain WOC White", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "MCM", + "product_name": "Visetos Small Tracy Shoulder Bag Black", + "condition": "Excellent", + "discounted_price": 30, + "price": 595, + "id": 10746103890223 }, { - "best_value": 0, - "categories": [ - "Whites", - "Structured", - "Womens", - "Leather", - "Solid Color", - "Crossbody", - "Handbags", - "Shoulder Bags", - "Wallet Style", - "Caviar", - "Wallet On Chain", - "General", - "Styles", - "Chanel" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "chanel-wallet-on-chain", - "shoulder-bags-on-sale", - "chanel-on-sale", - "bags-under-1000", - "caviar", - "chanel-shoulder-bags", - "bags-on-sale", - "chanel", - "crossbody-bags-on-sale", - "woc", - "wallet-style", - "handbag-styles", - "chanel-bags", - "chanel-crossbody-bags", - "shoulder-bags", - "handbags", - "cross-body" - ], - "description": "This is an authentic CHANEL Shiny Caviar Quilted Flap Charm Wallet On Chain WOC in White. This stylish wallet is crafted of luxuriously textured diamond quilted caviar leather in white with a micro metal quilted flap charm. This shoulder bag features a gold chain-link crossbody strap and a matching gold Chanel CC logo on the facing flap. The bag opens to a white fabric and leather interior with a zipper compartment and card slots.", - "discounted_price": 4555, - "discounted_tier": 1, - "filters": { - "bags": [ - "Crossbody", - "Handbags", - "Shoulder Bags", - "Wallet Style" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Chanel" - ], - "color": [ - "Whites" - ], - "material": [ - "Leather", - "Solid Color" - ], - "bag_feature": [ - "Structured" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "Over $2000", - "condition": [ - "Excellent" - ], - "locations": [ - "New York" - ] - }, - "following_count": 64, - "id": 1587368, - "made_available_at": 1740430531, - "price": 4795, - "priced_at": 1743019214, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/96f7d1420820919585a7d3f1f7e71346.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/96f7d1420820919585a7d3f1f7e71346.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/96f7d1420820919585a7d3f1f7e71346.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/6439e7b367d41f04b7df73a71277428a.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/6439e7b367d41f04b7df73a71277428a.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/6439e7b367d41f04b7df73a71277428a.jpg" - } - ], - "title": "CHANEL Shiny Caviar Quilted Flap Charm Wallet On Chain WOC White", - "title_without_brand": "Shiny Caviar Quilted Flap Charm Wallet On Chain WOC White", - "_tags": [ - "1587368" - ], - "objectID": "1587368", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-wallet-on-chain", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "caviar", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "crossbody-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "woc", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "wallet-style", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-crossbody-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "cross-body", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic CHANEL Shiny Caviar Quilted Flap Charm Wallet On Chain WOC in White. This stylish wallet is crafted of luxuriously textured diamond quilted caviar leather in white with a micro metal quilted flap charm. This shoulder bag features a gold chain-link crossbody strap and a matching gold Chanel CC logo on the facing flap. The bag opens to a white fabric and leather interior with a zipper compartment and card slots.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Chanel", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Whites", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1587368", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "CHANEL Shiny Caviar Quilted Flap Charm Wallet On Chain WOC White", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Louis Vuitton", + "product_name": "Monogram 4 Key Multicles Holder", + "condition": "Shows Wear", + "discounted_price": 10, + "price": 225, + "id": 10746102317359 }, { - "best_value": 0, - "categories": [ - "Whites", - "Structured", - "Womens", - "Leather", - "Solid Color", - "Crossbody", - "Handbags", - "Shoulder Bags", - "Wallet Style", - "Caviar", - "Wallet On Chain", - "General", - "Styles", - "Chanel" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "chanel-wallet-on-chain", - "shoulder-bags-on-sale", - "chanel-on-sale", - "bags-under-1000", - "caviar", - "chanel-shoulder-bags", - "bags-on-sale", - "chanel", - "crossbody-bags-on-sale", - "woc", - "wallet-style", - "handbag-styles", - "chanel-bags", - "chanel-crossbody-bags", - "shoulder-bags", - "handbags", - "cross-body" - ], - "description": "This is an authentic CHANEL Shiny Caviar Quilted Flap Charm Wallet On Chain WOC in White. This stylish wallet is crafted of luxuriously textured diamond quilted caviar leather in white with a micro metal quilted flap charm. This shoulder bag features a gold chain-link crossbody strap and a matching gold Chanel CC logo on the facing flap. The bag opens to a white fabric and leather interior with a zipper compartment and card slots.", - "discounted_price": 4555, - "discounted_tier": 1, - "filters": { - "bags": [ - "Crossbody", - "Handbags", - "Shoulder Bags", - "Wallet Style" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Chanel" - ], - "color": [ - "Whites" - ], - "material": [ - "Leather", - "Solid Color" - ], - "bag_feature": [ - "Structured" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "Over $2000", - "condition": [ - "Excellent" - ], - "locations": [ - "New York" - ] - }, - "following_count": 64, - "id": 1587368, - "made_available_at": 1740430531, - "price": 4795, - "priced_at": 1743019214, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/96f7d1420820919585a7d3f1f7e71346.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/96f7d1420820919585a7d3f1f7e71346.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/96f7d1420820919585a7d3f1f7e71346.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/6439e7b367d41f04b7df73a71277428a.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/6439e7b367d41f04b7df73a71277428a.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/6439e7b367d41f04b7df73a71277428a.jpg" - } - ], - "title": "CHANEL Shiny Caviar Quilted Flap Charm Wallet On Chain WOC White", - "title_without_brand": "Shiny Caviar Quilted Flap Charm Wallet On Chain WOC White", - "_tags": [ - "1587368" - ], - "objectID": "1587368", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-wallet-on-chain", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "caviar", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "crossbody-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "woc", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "wallet-style", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-crossbody-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "cross-body", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic CHANEL Shiny Caviar Quilted Flap Charm Wallet On Chain WOC in White. This stylish wallet is crafted of luxuriously textured diamond quilted caviar leather in white with a micro metal quilted flap charm. This shoulder bag features a gold chain-link crossbody strap and a matching gold Chanel CC logo on the facing flap. The bag opens to a white fabric and leather interior with a zipper compartment and card slots.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Chanel", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Whites", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1587368", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "CHANEL Shiny Caviar Quilted Flap Charm Wallet On Chain WOC White", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Louis Vuitton", + "product_name": "LV X YK Empreinte Multi Pochette Accessories Black Fuchsia", + "condition": "Excellent", + "discounted_price": 170, + "price": 3245, + "id": 10744152785199 }, { - "best_value": 190, - "categories": [ - "Shoes", - "Black", - "Whites", - "Leather", - "Flats", - "Lambskin", - "Accessories", - "General", - "Womens", - "Monogram Masterpieces", - "35", - "Chanel" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "lambskin", - "chanel-on-sale", - "shoes-on-sale", - "chanel", - "love-logos", - "chanel-flats", - "flats-shoes", - "accessories-on-sale", - "shoes", - "chanel-shoes", - "accessories" - ], - "description": "This is an authentic pair of CHANEL Lambskin Printed CC Espadrilles size 35 in Black and White. These espadrilles have a single midsole with uppers of black lambskin with white CCs and a cap toe.", - "discounted_price": 660, - "discounted_tier": 1, - "filters": { - "bags": [], - "jewelry": [], - "accessories": [ - "Shoes" - ], - "watches": [], - "shoes": [ - "Flats" - ], - "brands": [ - "Chanel" - ], - "color": [ - "Black", - "Whites" - ], - "material": [ - "Leather" - ], - "bag_feature": [], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [ - "35" - ], - "on_sale": [ - "5% Off" - ], - "price": "$500-$1000", - "condition": [ - "Excellent" - ], - "locations": [ - "New York" - ] - }, - "following_count": 19, - "id": 1587372, - "made_available_at": 1740431296, - "price": 695, - "priced_at": 1743023861, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/36cb85e363e2e03f869166aec30f48cc.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/36cb85e363e2e03f869166aec30f48cc.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/36cb85e363e2e03f869166aec30f48cc.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/cf859ca973ef70f6961d0bfed6f0c727.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/cf859ca973ef70f6961d0bfed6f0c727.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/cf859ca973ef70f6961d0bfed6f0c727.jpg" - } - ], - "title": "CHANEL Lambskin Printed CC Espadrilles 35 Black White", - "title_without_brand": "Lambskin Printed CC Espadrilles 35 Black White", - "_tags": [ - "1587372" - ], - "objectID": "1587372", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "lambskin", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoes-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "love-logos", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-flats", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "flats-shoes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-shoes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic pair of CHANEL Lambskin Printed CC Espadrilles size 35 in Black and White. These espadrilles have a single midsole with uppers of black lambskin with white CCs and a cap toe.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Chanel", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Black", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Whites", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1587372", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "CHANEL Lambskin Printed CC Espadrilles 35 Black White", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Chanel", + "product_name": "Caviar Quilted Large Gusset Zip Around Wallet Black", + "condition": "Shows Wear", + "discounted_price": 50, + "price": 995, + "id": 10746101891375 }, { - "best_value": 190, - "categories": [ - "Shoes", - "Black", - "Whites", - "Leather", - "Flats", - "Lambskin", - "Accessories", - "General", - "Womens", - "Monogram Masterpieces", - "35", - "Chanel" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "lambskin", - "chanel-on-sale", - "shoes-on-sale", - "chanel", - "love-logos", - "chanel-flats", - "flats-shoes", - "accessories-on-sale", - "shoes", - "chanel-shoes", - "accessories" - ], - "description": "This is an authentic pair of CHANEL Lambskin Printed CC Espadrilles size 35 in Black and White. These espadrilles have a single midsole with uppers of black lambskin with white CCs and a cap toe.", - "discounted_price": 660, - "discounted_tier": 1, - "filters": { - "bags": [], - "jewelry": [], - "accessories": [ - "Shoes" - ], - "watches": [], - "shoes": [ - "Flats" - ], - "brands": [ - "Chanel" - ], - "color": [ - "Black", - "Whites" - ], - "material": [ - "Leather" - ], - "bag_feature": [], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [ - "35" - ], - "on_sale": [ - "5% Off" - ], - "price": "$500-$1000", - "condition": [ - "Excellent" - ], - "locations": [ - "New York" - ] - }, - "following_count": 19, - "id": 1587372, - "made_available_at": 1740431296, - "price": 695, - "priced_at": 1743023861, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/36cb85e363e2e03f869166aec30f48cc.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/36cb85e363e2e03f869166aec30f48cc.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/36cb85e363e2e03f869166aec30f48cc.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/cf859ca973ef70f6961d0bfed6f0c727.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/cf859ca973ef70f6961d0bfed6f0c727.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/cf859ca973ef70f6961d0bfed6f0c727.jpg" - } - ], - "title": "CHANEL Lambskin Printed CC Espadrilles 35 Black White", - "title_without_brand": "Lambskin Printed CC Espadrilles 35 Black White", - "_tags": [ - "1587372" - ], - "objectID": "1587372", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "lambskin", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoes-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "love-logos", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-flats", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "flats-shoes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-shoes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic pair of CHANEL Lambskin Printed CC Espadrilles size 35 in Black and White. These espadrilles have a single midsole with uppers of black lambskin with white CCs and a cap toe.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Chanel", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Black", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Whites", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1587372", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "CHANEL Lambskin Printed CC Espadrilles 35 Black White", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Gucci", + "product_name": "X KEN SCOTT New Shangai Calfskin Jardin D'Avril Floral Print Super Mini Dionysus Shoulder Bag Ivory Pink", + "condition": "Excellent", + "discounted_price": 60, + "price": 1090, + "id": 10746101563695 }, { - "best_value": 190, - "categories": [ - "Shoes", - "Black", - "Whites", - "Leather", - "Flats", - "Lambskin", - "Accessories", - "General", - "Womens", - "Monogram Masterpieces", - "35", - "Chanel" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "lambskin", - "chanel-on-sale", - "shoes-on-sale", - "chanel", - "love-logos", - "chanel-flats", - "flats-shoes", - "accessories-on-sale", - "shoes", - "chanel-shoes", - "accessories" - ], - "description": "This is an authentic pair of CHANEL Lambskin Printed CC Espadrilles size 35 in Black and White. These espadrilles have a single midsole with uppers of black lambskin with white CCs and a cap toe.", - "discounted_price": 660, - "discounted_tier": 1, - "filters": { - "bags": [], - "jewelry": [], - "accessories": [ - "Shoes" - ], - "watches": [], - "shoes": [ - "Flats" - ], - "brands": [ - "Chanel" - ], - "color": [ - "Black", - "Whites" - ], - "material": [ - "Leather" - ], - "bag_feature": [], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [ - "35" - ], - "on_sale": [ - "5% Off" - ], - "price": "$500-$1000", - "condition": [ - "Excellent" - ], - "locations": [ - "New York" - ] - }, - "following_count": 19, - "id": 1587372, - "made_available_at": 1740431296, - "price": 695, - "priced_at": 1743023861, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/36cb85e363e2e03f869166aec30f48cc.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/36cb85e363e2e03f869166aec30f48cc.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/36cb85e363e2e03f869166aec30f48cc.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/cf859ca973ef70f6961d0bfed6f0c727.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/cf859ca973ef70f6961d0bfed6f0c727.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/cf859ca973ef70f6961d0bfed6f0c727.jpg" - } - ], - "title": "CHANEL Lambskin Printed CC Espadrilles 35 Black White", - "title_without_brand": "Lambskin Printed CC Espadrilles 35 Black White", - "_tags": [ - "1587372" - ], - "objectID": "1587372", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "lambskin", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoes-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "love-logos", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-flats", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "flats-shoes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-shoes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic pair of CHANEL Lambskin Printed CC Espadrilles size 35 in Black and White. These espadrilles have a single midsole with uppers of black lambskin with white CCs and a cap toe.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Chanel", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Black", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Whites", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1587372", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "CHANEL Lambskin Printed CC Espadrilles 35 Black White", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Gucci", + "product_name": "Velvet Matelasse Small GG Marmont Shoulder Bag Pavone Cyan", + "condition": "Shows Wear", + "discounted_price": 45, + "price": 850, + "id": 10746099597615 }, { - "best_value": 255, - "categories": [ - "Wallets", - "Blues", - "Metallic", - "Womens", - "Leather", - "Metallic", - "Solid Color", - "Accessories", - "Monogram Masterpieces", - "Our Gift to You", - "Balenciaga" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "balenciaga-accessories", - "balenciaga-wallets", - "love-logos", - "wallets-on-sale", - "balenciaga", - "accessories-on-sale", - "balenciaga-on-sale", - "wallets", - "accessories" - ], - "description": "This is an authentic BALENCIAGA Goatskin Logo Everyday Mini Wallet in Turquoise. This stylish wallet is crafted of goatskin leather in metallic blue. This wallet features BALENCIAGA in black print across the front. The button snap opens to a black interior billfold pocket with card slots, and the opposite side opens to a coin compartment.", - "discounted_price": 235, - "discounted_tier": 1, - "filters": { - "bags": [], - "jewelry": [], - "accessories": [ - "Wallets" - ], - "watches": [], - "shoes": [], - "brands": [ - "Balenciaga" - ], - "color": [ - "Blues", - "Metallic" - ], - "material": [ - "Leather", - "Metallic", - "Solid Color" - ], - "bag_feature": [], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$200-$500", - "condition": [ - "Excellent" - ], - "locations": [ - "New York" - ] - }, - "following_count": 12, - "id": 1587431, - "made_available_at": 1740432995, - "price": 250, - "priced_at": 1743023872, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/f790c4899e3817d45730180baec8f2b4.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/f790c4899e3817d45730180baec8f2b4.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/f790c4899e3817d45730180baec8f2b4.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/9d79e7758b3c84781ab6720bf9d64eda.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/9d79e7758b3c84781ab6720bf9d64eda.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/9d79e7758b3c84781ab6720bf9d64eda.jpg" - } - ], - "title": "BALENCIAGA Metallic Goatskin Logo Mini Everyday Wallet Turquoise Black", - "title_without_brand": "Metallic Goatskin Logo Mini Everyday Wallet Turquoise Black", - "_tags": [ - "1587431" - ], - "objectID": "1587431", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "balenciaga-accessories", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "balenciaga-wallets", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "love-logos", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "wallets-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "balenciaga", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "balenciaga-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "wallets", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic BALENCIAGA Goatskin Logo Everyday Mini Wallet in Turquoise. This stylish wallet is crafted of goatskin leather in metallic blue. This wallet features BALENCIAGA in black print across the front. The button snap opens to a black interior billfold pocket with card slots, and the opposite side opens to a coin compartment.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Balenciaga", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Blues", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Metallic", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Metallic", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1587431", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "BALENCIAGA Metallic Goatskin Logo Mini Everyday Wallet Turquoise Black", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Louis Vuitton", + "product_name": "Monogram Neverfull MM GM Pochette Pivoine", + "condition": "Excellent", + "discounted_price": 30, + "price": 520, + "id": 10746099564847 }, { - "best_value": 255, - "categories": [ - "Wallets", - "Blues", - "Metallic", - "Womens", - "Leather", - "Metallic", - "Solid Color", - "Accessories", - "Monogram Masterpieces", - "Our Gift to You", - "Balenciaga" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "balenciaga-accessories", - "balenciaga-wallets", - "love-logos", - "wallets-on-sale", - "balenciaga", - "accessories-on-sale", - "balenciaga-on-sale", - "wallets", - "accessories" - ], - "description": "This is an authentic BALENCIAGA Goatskin Logo Everyday Mini Wallet in Turquoise. This stylish wallet is crafted of goatskin leather in metallic blue. This wallet features BALENCIAGA in black print across the front. The button snap opens to a black interior billfold pocket with card slots, and the opposite side opens to a coin compartment.", - "discounted_price": 235, - "discounted_tier": 1, - "filters": { - "bags": [], - "jewelry": [], - "accessories": [ - "Wallets" - ], - "watches": [], - "shoes": [], - "brands": [ - "Balenciaga" - ], - "color": [ - "Blues", - "Metallic" - ], - "material": [ - "Leather", - "Metallic", - "Solid Color" - ], - "bag_feature": [], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$200-$500", - "condition": [ - "Excellent" - ], - "locations": [ - "New York" - ] - }, - "following_count": 12, - "id": 1587431, - "made_available_at": 1740432995, - "price": 250, - "priced_at": 1743023872, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/f790c4899e3817d45730180baec8f2b4.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/f790c4899e3817d45730180baec8f2b4.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/f790c4899e3817d45730180baec8f2b4.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/9d79e7758b3c84781ab6720bf9d64eda.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/9d79e7758b3c84781ab6720bf9d64eda.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/9d79e7758b3c84781ab6720bf9d64eda.jpg" - } - ], - "title": "BALENCIAGA Metallic Goatskin Logo Mini Everyday Wallet Turquoise Black", - "title_without_brand": "Metallic Goatskin Logo Mini Everyday Wallet Turquoise Black", - "_tags": [ - "1587431" - ], - "objectID": "1587431", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "balenciaga-accessories", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "balenciaga-wallets", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "love-logos", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "wallets-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "balenciaga", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "balenciaga-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "wallets", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic BALENCIAGA Goatskin Logo Everyday Mini Wallet in Turquoise. This stylish wallet is crafted of goatskin leather in metallic blue. This wallet features BALENCIAGA in black print across the front. The button snap opens to a black interior billfold pocket with card slots, and the opposite side opens to a coin compartment.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Balenciaga", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Blues", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Metallic", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Metallic", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1587431", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "BALENCIAGA Metallic Goatskin Logo Mini Everyday Wallet Turquoise Black", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Louis Vuitton", + "product_name": "Damier Ebene Pochette Felicie Chain Wallet", + "condition": "Excellent", + "discounted_price": 0, + "price": 0, + "id": 10746099073327 }, { - "best_value": 255, - "categories": [ - "Wallets", - "Blues", - "Metallic", - "Womens", - "Leather", - "Metallic", - "Solid Color", - "Accessories", - "Monogram Masterpieces", - "Our Gift to You", - "Balenciaga" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "balenciaga-accessories", - "balenciaga-wallets", - "love-logos", - "wallets-on-sale", - "balenciaga", - "accessories-on-sale", - "balenciaga-on-sale", - "wallets", - "accessories" - ], - "description": "This is an authentic BALENCIAGA Goatskin Logo Everyday Mini Wallet in Turquoise. This stylish wallet is crafted of goatskin leather in metallic blue. This wallet features BALENCIAGA in black print across the front. The button snap opens to a black interior billfold pocket with card slots, and the opposite side opens to a coin compartment.", - "discounted_price": 235, - "discounted_tier": 1, - "filters": { - "bags": [], - "jewelry": [], - "accessories": [ - "Wallets" - ], - "watches": [], - "shoes": [], - "brands": [ - "Balenciaga" - ], - "color": [ - "Blues", - "Metallic" - ], - "material": [ - "Leather", - "Metallic", - "Solid Color" - ], - "bag_feature": [], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$200-$500", - "condition": [ - "Excellent" - ], - "locations": [ - "New York" - ] - }, - "following_count": 12, - "id": 1587431, - "made_available_at": 1740432995, - "price": 250, - "priced_at": 1743023872, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/f790c4899e3817d45730180baec8f2b4.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/f790c4899e3817d45730180baec8f2b4.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/f790c4899e3817d45730180baec8f2b4.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/9d79e7758b3c84781ab6720bf9d64eda.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/9d79e7758b3c84781ab6720bf9d64eda.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/9d79e7758b3c84781ab6720bf9d64eda.jpg" - } - ], - "title": "BALENCIAGA Metallic Goatskin Logo Mini Everyday Wallet Turquoise Black", - "title_without_brand": "Metallic Goatskin Logo Mini Everyday Wallet Turquoise Black", - "_tags": [ - "1587431" - ], - "objectID": "1587431", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "balenciaga-accessories", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "balenciaga-wallets", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "love-logos", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "wallets-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "balenciaga", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "balenciaga-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "wallets", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic BALENCIAGA Goatskin Logo Everyday Mini Wallet in Turquoise. This stylish wallet is crafted of goatskin leather in metallic blue. This wallet features BALENCIAGA in black print across the front. The button snap opens to a black interior billfold pocket with card slots, and the opposite side opens to a coin compartment.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Balenciaga", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Blues", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Metallic", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Metallic", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1587431", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "BALENCIAGA Metallic Goatskin Logo Mini Everyday Wallet Turquoise Black", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Gucci", + "product_name": "Calfskin Double G 40mm Belt 75 30 Black", + "condition": "Excellent", + "discounted_price": 20, + "price": 350, + "id": 10746098352431 }, { - "best_value": 0, - "categories": [ - "Silver", - "Structured", - "Leather", - "Solid Color", - "Crossbody", - "Shoulder Bags", - "Caviar", - "Styles", - "Womens", - "Metallic", - "Handbags", - "Chanel" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoulder-bags-on-sale", - "chanel-on-sale", - "chanel-boy-bags", - "bags-under-1000", - "caviar", - "chanel-shoulder-bags", - "bags-on-sale", - "chanel", - "crossbody-bags-on-sale", - "handbag-styles", - "chanel-bags", - "chanel-crossbody-bags", - "shoulder-bags", - "handbags", - "cross-body" - ], - "description": "This is an authentic CHANEL Metallic Caviar Chevron Quilted New Medium Boy Flap in Silver. This chic shoulder bag features luxurious grained calfskin leather with a chevron quilting framed by linear quilting in silver. The bag features a ruthenium chain link shoulder strap with a matching leather shoulder pad and a Chanel Boy CC press lock for the facing flap. This opens to a silver fabric interior with a zipper pocket. ", - "discounted_price": 3890, - "discounted_tier": 1, - "filters": { - "bags": [ - "Crossbody", - "Shoulder Bags", - "Handbags" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Chanel" - ], - "color": [ - "Silver", - "Metallic" - ], - "material": [ - "Leather", - "Solid Color" - ], - "bag_feature": [ - "Structured" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "Over $2000", - "condition": [ - "Excellent" - ], - "locations": [ - "New York" - ] - }, - "following_count": 38, - "id": 1587741, - "made_available_at": 1740431879, - "price": 4095, - "priced_at": 1743023867, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/980286a0ac6f66b4f55572e8252106ed.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/980286a0ac6f66b4f55572e8252106ed.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/980286a0ac6f66b4f55572e8252106ed.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/49bccc7bf2271a9f38ebd27e2b0fb472.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/49bccc7bf2271a9f38ebd27e2b0fb472.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/49bccc7bf2271a9f38ebd27e2b0fb472.jpg" - } - ], - "title": "CHANEL Metallic Caviar Chevron Quilted New Medium Boy Flap Silver", - "title_without_brand": "Metallic Caviar Chevron Quilted New Medium Boy Flap Silver", - "_tags": [ - "1587741" - ], - "objectID": "1587741", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-boy-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "caviar", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "crossbody-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-crossbody-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "cross-body", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic CHANEL Metallic Caviar Chevron Quilted New Medium Boy Flap in Silver. This chic shoulder bag features luxurious grained calfskin leather with a chevron quilting framed by linear quilting in silver. The bag features a ruthenium chain link shoulder strap with a matching leather shoulder pad and a Chanel Boy CC press lock for the facing flap. This opens to a silver fabric interior with a zipper pocket. ", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Chanel", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Silver", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Metallic", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1587741", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "CHANEL Metallic Caviar Chevron Quilted New Medium Boy Flap Silver", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Gucci", + "product_name": "Calfskin Double G 40mm Belt 75 30 Mystic White", + "condition": "Excellent", + "discounted_price": 20, + "price": 350, + "id": 10746098188591 }, { - "best_value": 0, - "categories": [ - "Silver", - "Structured", - "Leather", - "Solid Color", - "Crossbody", - "Shoulder Bags", - "Caviar", - "Styles", - "Womens", - "Metallic", - "Handbags", - "Chanel" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoulder-bags-on-sale", - "chanel-on-sale", - "chanel-boy-bags", - "bags-under-1000", - "caviar", - "chanel-shoulder-bags", - "bags-on-sale", - "chanel", - "crossbody-bags-on-sale", - "handbag-styles", - "chanel-bags", - "chanel-crossbody-bags", - "shoulder-bags", - "handbags", - "cross-body" - ], - "description": "This is an authentic CHANEL Metallic Caviar Chevron Quilted New Medium Boy Flap in Silver. This chic shoulder bag features luxurious grained calfskin leather with a chevron quilting framed by linear quilting in silver. The bag features a ruthenium chain link shoulder strap with a matching leather shoulder pad and a Chanel Boy CC press lock for the facing flap. This opens to a silver fabric interior with a zipper pocket. ", - "discounted_price": 3890, - "discounted_tier": 1, - "filters": { - "bags": [ - "Crossbody", - "Shoulder Bags", - "Handbags" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Chanel" - ], - "color": [ - "Silver", - "Metallic" - ], - "material": [ - "Leather", - "Solid Color" - ], - "bag_feature": [ - "Structured" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "Over $2000", - "condition": [ - "Excellent" - ], - "locations": [ - "New York" - ] - }, - "following_count": 38, - "id": 1587741, - "made_available_at": 1740431879, - "price": 4095, - "priced_at": 1743023867, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/980286a0ac6f66b4f55572e8252106ed.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/980286a0ac6f66b4f55572e8252106ed.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/980286a0ac6f66b4f55572e8252106ed.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/49bccc7bf2271a9f38ebd27e2b0fb472.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/49bccc7bf2271a9f38ebd27e2b0fb472.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/49bccc7bf2271a9f38ebd27e2b0fb472.jpg" - } - ], - "title": "CHANEL Metallic Caviar Chevron Quilted New Medium Boy Flap Silver", - "title_without_brand": "Metallic Caviar Chevron Quilted New Medium Boy Flap Silver", - "_tags": [ - "1587741" - ], - "objectID": "1587741", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-boy-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "caviar", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "crossbody-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-crossbody-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "cross-body", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic CHANEL Metallic Caviar Chevron Quilted New Medium Boy Flap in Silver. This chic shoulder bag features luxurious grained calfskin leather with a chevron quilting framed by linear quilting in silver. The bag features a ruthenium chain link shoulder strap with a matching leather shoulder pad and a Chanel Boy CC press lock for the facing flap. This opens to a silver fabric interior with a zipper pocket. ", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Chanel", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Silver", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Metallic", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1587741", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "CHANEL Metallic Caviar Chevron Quilted New Medium Boy Flap Silver", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Prada", + "product_name": "Saffiano Pouch Wristlet Petalo", + "condition": "Excellent", + "discounted_price": 45, + "price": 895, + "id": 10746097860911 }, { - "best_value": 0, - "categories": [ - "Silver", - "Structured", - "Leather", - "Solid Color", - "Crossbody", - "Shoulder Bags", - "Caviar", - "Styles", - "Womens", - "Metallic", - "Handbags", - "Chanel" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoulder-bags-on-sale", - "chanel-on-sale", - "chanel-boy-bags", - "bags-under-1000", - "caviar", - "chanel-shoulder-bags", - "bags-on-sale", - "chanel", - "crossbody-bags-on-sale", - "handbag-styles", - "chanel-bags", - "chanel-crossbody-bags", - "shoulder-bags", - "handbags", - "cross-body" - ], - "description": "This is an authentic CHANEL Metallic Caviar Chevron Quilted New Medium Boy Flap in Silver. This chic shoulder bag features luxurious grained calfskin leather with a chevron quilting framed by linear quilting in silver. The bag features a ruthenium chain link shoulder strap with a matching leather shoulder pad and a Chanel Boy CC press lock for the facing flap. This opens to a silver fabric interior with a zipper pocket. ", - "discounted_price": 3890, - "discounted_tier": 1, - "filters": { - "bags": [ - "Crossbody", - "Shoulder Bags", - "Handbags" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Chanel" - ], - "color": [ - "Silver", - "Metallic" - ], - "material": [ - "Leather", - "Solid Color" - ], - "bag_feature": [ - "Structured" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "Over $2000", - "condition": [ - "Excellent" - ], - "locations": [ - "New York" - ] - }, - "following_count": 38, - "id": 1587741, - "made_available_at": 1740431879, - "price": 4095, - "priced_at": 1743023867, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/980286a0ac6f66b4f55572e8252106ed.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/980286a0ac6f66b4f55572e8252106ed.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/980286a0ac6f66b4f55572e8252106ed.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/49bccc7bf2271a9f38ebd27e2b0fb472.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/49bccc7bf2271a9f38ebd27e2b0fb472.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/49bccc7bf2271a9f38ebd27e2b0fb472.jpg" - } - ], - "title": "CHANEL Metallic Caviar Chevron Quilted New Medium Boy Flap Silver", - "title_without_brand": "Metallic Caviar Chevron Quilted New Medium Boy Flap Silver", - "_tags": [ - "1587741" - ], - "objectID": "1587741", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-boy-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "caviar", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "crossbody-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-crossbody-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "cross-body", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic CHANEL Metallic Caviar Chevron Quilted New Medium Boy Flap in Silver. This chic shoulder bag features luxurious grained calfskin leather with a chevron quilting framed by linear quilting in silver. The bag features a ruthenium chain link shoulder strap with a matching leather shoulder pad and a Chanel Boy CC press lock for the facing flap. This opens to a silver fabric interior with a zipper pocket. ", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Chanel", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Silver", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Metallic", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1587741", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "CHANEL Metallic Caviar Chevron Quilted New Medium Boy Flap Silver", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Dolce & Gabbana", + "product_name": "Nappa DG Girls Phone Shoulder Bag White", + "condition": "Shows Wear", + "discounted_price": 50, + "price": 950, + "id": 10746096615727 }, { - "best_value": 275, - "categories": [ - "Classic & Timeless", - "Investment Bags", - "Editor's Picks", - "Mother's Day Gifts", - "Browns", - "Open Top", - "Structured", - "Womens", - "Coated Canvas", - "Handbags", - "Shoulder Bags", - "Totes", - "Monogram", - "Neverfull", - "General", - "Styles", - "Louis Vuitton", - "Live Shopping with FASHIONPHILE" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoulder-bags-on-sale", - "investment-bags", - "bags-under-1000", - "louis-vuitton-shoulder-bags", - "classic-accessories", - "louis-vuitton-monogram-bags", - "bags-on-sale", - "louis-vuitton-neverfull-bags", - "instagram-live-shopping", - "louis-vuitton-on-sale", - "totes-on-sale", - "louis-vuitton-monogram", - "louis-vuitton", - "totes", - "most-wanted", - "louis-vuitton-bags", - "neverfull", - "handbag-styles", - "shoulder-bags", - "handbags", - "mothers-day-gifts", - "louis-vuitton-totes" - ], - "description": "This is an authentic LOUIS VUITTON Monogram Neo Neverfull MM in Cherry. This stylish tote is crafted of a classic Louis Vuitton monogram-coated canvas. This shoulder bag features vachetta cowhide leather shoulder handles, trim, and side cinch cords with polished brass hardware. The wide top is open to a red striped fabric interior with a hanging zipper pocket.", - "discounted_price": 1755, - "discounted_tier": 1, - "filters": { - "bags": [ - "Handbags", - "Shoulder Bags", - "Totes" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Louis Vuitton" - ], - "color": [ - "Browns" - ], - "material": [ - "Coated Canvas" - ], - "bag_feature": [ - "Open Top", - "Structured" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$1000-$2000", - "condition": [ - "Excellent" - ], - "locations": [ - "New York" - ] - }, - "following_count": 43, - "id": 1587819, - "made_available_at": 1740431446, - "price": 1850, - "priced_at": 1743023864, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/f06e769087efba33271bc7aaffa9653b.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/f06e769087efba33271bc7aaffa9653b.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/f06e769087efba33271bc7aaffa9653b.jpg" - }, - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/15073719f52f19f94ee19a6ad9a602ae.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/15073719f52f19f94ee19a6ad9a602ae.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/15073719f52f19f94ee19a6ad9a602ae.jpg" - } - ], - "title": "LOUIS VUITTON Monogram Neo Neverfull MM Cherry", - "title_without_brand": "Monogram Neo Neverfull MM Cherry", - "_tags": [ - "1587819" - ], - "objectID": "1587819", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "investment-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "classic-accessories", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-monogram-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-neverfull-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "instagram-live-shopping", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "totes-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-monogram", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "totes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "most-wanted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "neverfull", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "mothers-day-gifts", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-totes", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic LOUIS VUITTON Monogram Neo Neverfull MM in Cherry. This stylish tote is crafted of a classic Louis Vuitton monogram-coated canvas. This shoulder bag features vachetta cowhide leather shoulder handles, trim, and side cinch cords with polished brass hardware. The wide top is open to a red striped fabric interior with a hanging zipper pocket.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Louis Vuitton", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Browns", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Coated Canvas", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1587819", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "LOUIS VUITTON Monogram Neo Neverfull MM Cherry", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Louis Vuitton", + "product_name": "Empreinte Rosalie Coin Purse Blue", + "condition": "Excellent", + "discounted_price": 25, + "price": 450, + "id": 10746092552495 }, { - "best_value": 275, - "categories": [ - "Classic & Timeless", - "Investment Bags", - "Editor's Picks", - "Mother's Day Gifts", - "Browns", - "Open Top", - "Structured", - "Womens", - "Coated Canvas", - "Handbags", - "Shoulder Bags", - "Totes", - "Monogram", - "Neverfull", - "General", - "Styles", - "Louis Vuitton", - "Live Shopping with FASHIONPHILE" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoulder-bags-on-sale", - "investment-bags", - "bags-under-1000", - "louis-vuitton-shoulder-bags", - "classic-accessories", - "louis-vuitton-monogram-bags", - "bags-on-sale", - "louis-vuitton-neverfull-bags", - "instagram-live-shopping", - "louis-vuitton-on-sale", - "totes-on-sale", - "louis-vuitton-monogram", - "louis-vuitton", - "totes", - "most-wanted", - "louis-vuitton-bags", - "neverfull", - "handbag-styles", - "shoulder-bags", - "handbags", - "mothers-day-gifts", - "louis-vuitton-totes" - ], - "description": "This is an authentic LOUIS VUITTON Monogram Neo Neverfull MM in Cherry. This stylish tote is crafted of a classic Louis Vuitton monogram-coated canvas. This shoulder bag features vachetta cowhide leather shoulder handles, trim, and side cinch cords with polished brass hardware. The wide top is open to a red striped fabric interior with a hanging zipper pocket.", - "discounted_price": 1755, - "discounted_tier": 1, - "filters": { - "bags": [ - "Handbags", - "Shoulder Bags", - "Totes" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Louis Vuitton" - ], - "color": [ - "Browns" - ], - "material": [ - "Coated Canvas" - ], - "bag_feature": [ - "Open Top", - "Structured" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$1000-$2000", - "condition": [ - "Excellent" - ], - "locations": [ - "New York" - ] - }, - "following_count": 43, - "id": 1587819, - "made_available_at": 1740431446, - "price": 1850, - "priced_at": 1743023864, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/f06e769087efba33271bc7aaffa9653b.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/f06e769087efba33271bc7aaffa9653b.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/f06e769087efba33271bc7aaffa9653b.jpg" - }, - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/15073719f52f19f94ee19a6ad9a602ae.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/15073719f52f19f94ee19a6ad9a602ae.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/15073719f52f19f94ee19a6ad9a602ae.jpg" - } - ], - "title": "LOUIS VUITTON Monogram Neo Neverfull MM Cherry", - "title_without_brand": "Monogram Neo Neverfull MM Cherry", - "_tags": [ - "1587819" - ], - "objectID": "1587819", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "investment-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "classic-accessories", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-monogram-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-neverfull-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "instagram-live-shopping", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "totes-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-monogram", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "totes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "most-wanted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "neverfull", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "mothers-day-gifts", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-totes", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic LOUIS VUITTON Monogram Neo Neverfull MM in Cherry. This stylish tote is crafted of a classic Louis Vuitton monogram-coated canvas. This shoulder bag features vachetta cowhide leather shoulder handles, trim, and side cinch cords with polished brass hardware. The wide top is open to a red striped fabric interior with a hanging zipper pocket.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Louis Vuitton", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Browns", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Coated Canvas", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1587819", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "LOUIS VUITTON Monogram Neo Neverfull MM Cherry", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Goyard", + "product_name": "Goyardine Belvedere II PM Messenger Bag Black", + "condition": "Excellent", + "discounted_price": 170, + "price": 3245, + "id": 10746092192047 }, { - "best_value": 275, - "categories": [ - "Classic & Timeless", - "Investment Bags", - "Editor's Picks", - "Mother's Day Gifts", - "Browns", - "Open Top", - "Structured", - "Womens", - "Coated Canvas", - "Handbags", - "Shoulder Bags", - "Totes", - "Monogram", - "Neverfull", - "General", - "Styles", - "Louis Vuitton", - "Live Shopping with FASHIONPHILE" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoulder-bags-on-sale", - "investment-bags", - "bags-under-1000", - "louis-vuitton-shoulder-bags", - "classic-accessories", - "louis-vuitton-monogram-bags", - "bags-on-sale", - "louis-vuitton-neverfull-bags", - "instagram-live-shopping", - "louis-vuitton-on-sale", - "totes-on-sale", - "louis-vuitton-monogram", - "louis-vuitton", - "totes", - "most-wanted", - "louis-vuitton-bags", - "neverfull", - "handbag-styles", - "shoulder-bags", - "handbags", - "mothers-day-gifts", - "louis-vuitton-totes" - ], - "description": "This is an authentic LOUIS VUITTON Monogram Neo Neverfull MM in Cherry. This stylish tote is crafted of a classic Louis Vuitton monogram-coated canvas. This shoulder bag features vachetta cowhide leather shoulder handles, trim, and side cinch cords with polished brass hardware. The wide top is open to a red striped fabric interior with a hanging zipper pocket.", - "discounted_price": 1755, - "discounted_tier": 1, - "filters": { - "bags": [ - "Handbags", - "Shoulder Bags", - "Totes" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Louis Vuitton" - ], - "color": [ - "Browns" - ], - "material": [ - "Coated Canvas" - ], - "bag_feature": [ - "Open Top", - "Structured" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$1000-$2000", - "condition": [ - "Excellent" - ], - "locations": [ - "New York" - ] - }, - "following_count": 43, - "id": 1587819, - "made_available_at": 1740431446, - "price": 1850, - "priced_at": 1743023864, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/f06e769087efba33271bc7aaffa9653b.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/f06e769087efba33271bc7aaffa9653b.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/f06e769087efba33271bc7aaffa9653b.jpg" - }, - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/15073719f52f19f94ee19a6ad9a602ae.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/15073719f52f19f94ee19a6ad9a602ae.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/15073719f52f19f94ee19a6ad9a602ae.jpg" - } - ], - "title": "LOUIS VUITTON Monogram Neo Neverfull MM Cherry", - "title_without_brand": "Monogram Neo Neverfull MM Cherry", - "_tags": [ - "1587819" - ], - "objectID": "1587819", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "investment-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "classic-accessories", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-monogram-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-neverfull-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "instagram-live-shopping", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "totes-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-monogram", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "totes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "most-wanted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "neverfull", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "mothers-day-gifts", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-totes", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic LOUIS VUITTON Monogram Neo Neverfull MM in Cherry. This stylish tote is crafted of a classic Louis Vuitton monogram-coated canvas. This shoulder bag features vachetta cowhide leather shoulder handles, trim, and side cinch cords with polished brass hardware. The wide top is open to a red striped fabric interior with a hanging zipper pocket.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Louis Vuitton", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Browns", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Coated Canvas", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1587819", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "LOUIS VUITTON Monogram Neo Neverfull MM Cherry", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Louis Vuitton", + "product_name": "Monogram Liv Pochette", + "condition": "Excellent", + "discounted_price": 100, + "price": 1870, + "id": 10746088980783 }, { - "best_value": 0, - "categories": [ - "Greens", - "Structured", - "Womens", - "Beaded & Sequins", - "Fabrics", - "Crossbody", - "Handbags", - "Shoulder Bags", - "General", - "Styles", - "Chanel" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoulder-bags-on-sale", - "chanel-on-sale", - "bags-under-1000", - "chanel-shoulder-bags", - "bags-on-sale", - "chanel", - "chanel-19-bags", - "crossbody-bags-on-sale", - "handbag-styles", - "chanel-bags", - "chanel-crossbody-bags", - "shoulder-bags", - "handbags", - "cross-body" - ], - "description": "This is an authentic CHANEL Sequin Quilted Medium Chanel 19 Flap in Light Green. This chic shoulder bag is crafted of circular sequins on a base of light green fabric. The bag features coral leather threaded silver, ruthenium, and an aged gold chain-link shoulder straps with leather threaded aged gold Chanel 19 CC turn-lock on the front flap. This opens to a matching fabric interior with a zipper pocket. ", - "discounted_price": 5695, - "discounted_tier": 1, - "filters": { - "bags": [ - "Crossbody", - "Handbags", - "Shoulder Bags" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Chanel" - ], - "color": [ - "Greens" - ], - "material": [ - "Beaded & Sequins", - "Fabrics" - ], - "bag_feature": [ - "Structured" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "Over $2000", - "condition": [ - "Excellent" - ], - "locations": [ - "New York" - ] - }, - "following_count": 53, - "id": 1587901, - "made_available_at": 1740433020, - "price": 5995, - "priced_at": 1743023875, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/cfab47f10361b3c1e3b6e7eab7523d4b.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/cfab47f10361b3c1e3b6e7eab7523d4b.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/cfab47f10361b3c1e3b6e7eab7523d4b.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/a10706a80f27f7320212e9013d07950e.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/a10706a80f27f7320212e9013d07950e.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/a10706a80f27f7320212e9013d07950e.jpg" - } - ], - "title": "CHANEL Sequin Quilted Medium Chanel 19 Flap Light Green", - "title_without_brand": "Sequin Quilted Medium Chanel 19 Flap Light Green", - "_tags": [ - "1587901" - ], - "objectID": "1587901", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-19-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "crossbody-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-crossbody-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "cross-body", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic CHANEL Sequin Quilted Medium Chanel 19 Flap in Light Green. This chic shoulder bag is crafted of circular sequins on a base of light green fabric. The bag features coral leather threaded silver, ruthenium, and an aged gold chain-link shoulder straps with leather threaded aged gold Chanel 19 CC turn-lock on the front flap. This opens to a matching fabric interior with a zipper pocket. ", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Chanel", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Greens", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Beaded & Sequins", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Fabrics", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1587901", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "CHANEL Sequin Quilted Medium Chanel 19 Flap Light Green", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Gucci", + "product_name": "Stainless Steel 42mm Interlocking Quartz Watch Grey", + "condition": "Excellent", + "discounted_price": 20, + "price": 425, + "id": 10746088816943 }, { - "best_value": 0, - "categories": [ - "Greens", - "Structured", - "Womens", - "Beaded & Sequins", - "Fabrics", - "Crossbody", - "Handbags", - "Shoulder Bags", - "General", - "Styles", - "Chanel" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoulder-bags-on-sale", - "chanel-on-sale", - "bags-under-1000", - "chanel-shoulder-bags", - "bags-on-sale", - "chanel", - "chanel-19-bags", - "crossbody-bags-on-sale", - "handbag-styles", - "chanel-bags", - "chanel-crossbody-bags", - "shoulder-bags", - "handbags", - "cross-body" - ], - "description": "This is an authentic CHANEL Sequin Quilted Medium Chanel 19 Flap in Light Green. This chic shoulder bag is crafted of circular sequins on a base of light green fabric. The bag features coral leather threaded silver, ruthenium, and an aged gold chain-link shoulder straps with leather threaded aged gold Chanel 19 CC turn-lock on the front flap. This opens to a matching fabric interior with a zipper pocket. ", - "discounted_price": 5695, - "discounted_tier": 1, - "filters": { - "bags": [ - "Crossbody", - "Handbags", - "Shoulder Bags" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Chanel" - ], - "color": [ - "Greens" - ], - "material": [ - "Beaded & Sequins", - "Fabrics" - ], - "bag_feature": [ - "Structured" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "Over $2000", - "condition": [ - "Excellent" - ], - "locations": [ - "New York" - ] - }, - "following_count": 53, - "id": 1587901, - "made_available_at": 1740433020, - "price": 5995, - "priced_at": 1743023875, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/cfab47f10361b3c1e3b6e7eab7523d4b.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/cfab47f10361b3c1e3b6e7eab7523d4b.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/cfab47f10361b3c1e3b6e7eab7523d4b.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/a10706a80f27f7320212e9013d07950e.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/a10706a80f27f7320212e9013d07950e.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/a10706a80f27f7320212e9013d07950e.jpg" - } - ], - "title": "CHANEL Sequin Quilted Medium Chanel 19 Flap Light Green", - "title_without_brand": "Sequin Quilted Medium Chanel 19 Flap Light Green", - "_tags": [ - "1587901" - ], - "objectID": "1587901", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-19-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "crossbody-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-crossbody-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "cross-body", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic CHANEL Sequin Quilted Medium Chanel 19 Flap in Light Green. This chic shoulder bag is crafted of circular sequins on a base of light green fabric. The bag features coral leather threaded silver, ruthenium, and an aged gold chain-link shoulder straps with leather threaded aged gold Chanel 19 CC turn-lock on the front flap. This opens to a matching fabric interior with a zipper pocket. ", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Chanel", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Greens", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Beaded & Sequins", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Fabrics", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1587901", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "CHANEL Sequin Quilted Medium Chanel 19 Flap Light Green", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Chanel", + "product_name": "Fabric Womens Logo Sneakers 39.5 Black White", + "condition": "Shows Wear", + "discounted_price": 30, + "price": 550, + "id": 10746088423727 }, { - "best_value": 0, - "categories": [ - "Greens", - "Structured", - "Womens", - "Beaded & Sequins", - "Fabrics", - "Crossbody", - "Handbags", - "Shoulder Bags", - "General", - "Styles", - "Chanel" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoulder-bags-on-sale", - "chanel-on-sale", - "bags-under-1000", - "chanel-shoulder-bags", - "bags-on-sale", - "chanel", - "chanel-19-bags", - "crossbody-bags-on-sale", - "handbag-styles", - "chanel-bags", - "chanel-crossbody-bags", - "shoulder-bags", - "handbags", - "cross-body" - ], - "description": "This is an authentic CHANEL Sequin Quilted Medium Chanel 19 Flap in Light Green. This chic shoulder bag is crafted of circular sequins on a base of light green fabric. The bag features coral leather threaded silver, ruthenium, and an aged gold chain-link shoulder straps with leather threaded aged gold Chanel 19 CC turn-lock on the front flap. This opens to a matching fabric interior with a zipper pocket. ", - "discounted_price": 5695, - "discounted_tier": 1, - "filters": { - "bags": [ - "Crossbody", - "Handbags", - "Shoulder Bags" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Chanel" - ], - "color": [ - "Greens" - ], - "material": [ - "Beaded & Sequins", - "Fabrics" - ], - "bag_feature": [ - "Structured" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "Over $2000", - "condition": [ - "Excellent" - ], - "locations": [ - "New York" - ] - }, - "following_count": 53, - "id": 1587901, - "made_available_at": 1740433020, - "price": 5995, - "priced_at": 1743023875, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/cfab47f10361b3c1e3b6e7eab7523d4b.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/cfab47f10361b3c1e3b6e7eab7523d4b.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/cfab47f10361b3c1e3b6e7eab7523d4b.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/a10706a80f27f7320212e9013d07950e.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/a10706a80f27f7320212e9013d07950e.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/a10706a80f27f7320212e9013d07950e.jpg" - } - ], - "title": "CHANEL Sequin Quilted Medium Chanel 19 Flap Light Green", - "title_without_brand": "Sequin Quilted Medium Chanel 19 Flap Light Green", - "_tags": [ - "1587901" - ], - "objectID": "1587901", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-19-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "crossbody-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-crossbody-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "cross-body", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic CHANEL Sequin Quilted Medium Chanel 19 Flap in Light Green. This chic shoulder bag is crafted of circular sequins on a base of light green fabric. The bag features coral leather threaded silver, ruthenium, and an aged gold chain-link shoulder straps with leather threaded aged gold Chanel 19 CC turn-lock on the front flap. This opens to a matching fabric interior with a zipper pocket. ", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Chanel", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Greens", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Beaded & Sequins", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Fabrics", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1587901", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "CHANEL Sequin Quilted Medium Chanel 19 Flap Light Green", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Jimmy Choo", + "product_name": "Suede Romy 100 Pumps 37.5 Black", + "condition": "Excellent", + "discounted_price": 20, + "price": 395, + "id": 10746088259887 }, { - "best_value": 0, - "categories": [ - "Cosmetic Cases", - "Pouches", - "Black", - "Zip Top", - "Leather", - "Lambskin", - "Monogram", - "Accessories", - "Art / Scene on Exterior", - "General", - "Womens", - "Travel Essentials", - "Chanel" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "lambskin", - "chanel-on-sale", - "travel-pouches", - "travel-essentials", - "chanel", - "cosmetic-cases", - "louis-vuitton-monogram", - "accessories-on-sale", - "zip-top", - "travel-cosmetic-cases", - "pouches", - "accessories" - ], - "description": "This is an authentic CHANEL Lambskin Quilted Large Data Center Cosmetic Case in Black. This stylish large cosmetic pouch is crafted in diamond quilted lambskin leather in black and a Chanel CC embellishment. The top zipper opens to a nylon lining, ideal for cosmetics and accessories.", - "discounted_price": 755, - "discounted_tier": 1, - "filters": { - "bags": [], - "jewelry": [], - "accessories": [ - "Cosmetic Cases", - "Pouches" - ], - "watches": [], - "shoes": [], - "brands": [ - "Chanel" - ], - "color": [ - "Black" - ], - "material": [ - "Leather", - "Art / Scene on Exterior" - ], - "bag_feature": [ - "Zip Top" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$500-$1000", - "condition": [ - "Shows Wear" - ], - "locations": [ - "New York" - ] - }, - "following_count": 17, - "id": 1587906, - "made_available_at": 1740433018, - "price": 795, - "priced_at": 1743023874, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/bca75681a4a6c6d5aea328b9adc4fca9.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/bca75681a4a6c6d5aea328b9adc4fca9.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/bca75681a4a6c6d5aea328b9adc4fca9.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/99ce0da1c6c2ad595779e6eeb4205fff.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/99ce0da1c6c2ad595779e6eeb4205fff.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/99ce0da1c6c2ad595779e6eeb4205fff.jpg" - } - ], - "title": "CHANEL Lambskin Quilted Large Data Center Cosmetic Case Black", - "title_without_brand": "Lambskin Quilted Large Data Center Cosmetic Case Black", - "_tags": [ - "1587906" - ], - "objectID": "1587906", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "lambskin", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "travel-pouches", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "travel-essentials", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "cosmetic-cases", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-monogram", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "zip-top", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "travel-cosmetic-cases", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "pouches", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic CHANEL Lambskin Quilted Large Data Center Cosmetic Case in Black. This stylish large cosmetic pouch is crafted in diamond quilted lambskin leather in black and a Chanel CC embellishment. The top zipper opens to a nylon lining, ideal for cosmetics and accessories.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Chanel", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Black", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Art / Scene on Exterior", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1587906", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "CHANEL Lambskin Quilted Large Data Center Cosmetic Case Black", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Hermes", + "product_name": "Togo BIRKIN 35 Bleu France", + "condition": "Shows Wear", + "discounted_price": 630, + "price": 11965, + "id": 10746085146927 }, { - "best_value": 0, - "categories": [ - "Cosmetic Cases", - "Pouches", - "Black", - "Zip Top", - "Leather", - "Lambskin", - "Monogram", - "Accessories", - "Art / Scene on Exterior", - "General", - "Womens", - "Travel Essentials", - "Chanel" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "lambskin", - "chanel-on-sale", - "travel-pouches", - "travel-essentials", - "chanel", - "cosmetic-cases", - "louis-vuitton-monogram", - "accessories-on-sale", - "zip-top", - "travel-cosmetic-cases", - "pouches", - "accessories" - ], - "description": "This is an authentic CHANEL Lambskin Quilted Large Data Center Cosmetic Case in Black. This stylish large cosmetic pouch is crafted in diamond quilted lambskin leather in black and a Chanel CC embellishment. The top zipper opens to a nylon lining, ideal for cosmetics and accessories.", - "discounted_price": 755, - "discounted_tier": 1, - "filters": { - "bags": [], - "jewelry": [], - "accessories": [ - "Cosmetic Cases", - "Pouches" - ], - "watches": [], - "shoes": [], - "brands": [ - "Chanel" - ], - "color": [ - "Black" - ], - "material": [ - "Leather", - "Art / Scene on Exterior" - ], - "bag_feature": [ - "Zip Top" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$500-$1000", - "condition": [ - "Shows Wear" - ], - "locations": [ - "New York" - ] - }, - "following_count": 17, - "id": 1587906, - "made_available_at": 1740433018, - "price": 795, - "priced_at": 1743023874, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/bca75681a4a6c6d5aea328b9adc4fca9.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/bca75681a4a6c6d5aea328b9adc4fca9.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/bca75681a4a6c6d5aea328b9adc4fca9.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/99ce0da1c6c2ad595779e6eeb4205fff.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/99ce0da1c6c2ad595779e6eeb4205fff.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/99ce0da1c6c2ad595779e6eeb4205fff.jpg" - } - ], - "title": "CHANEL Lambskin Quilted Large Data Center Cosmetic Case Black", - "title_without_brand": "Lambskin Quilted Large Data Center Cosmetic Case Black", - "_tags": [ - "1587906" - ], - "objectID": "1587906", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "lambskin", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "travel-pouches", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "travel-essentials", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "cosmetic-cases", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-monogram", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "zip-top", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "travel-cosmetic-cases", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "pouches", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic CHANEL Lambskin Quilted Large Data Center Cosmetic Case in Black. This stylish large cosmetic pouch is crafted in diamond quilted lambskin leather in black and a Chanel CC embellishment. The top zipper opens to a nylon lining, ideal for cosmetics and accessories.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Chanel", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Black", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Art / Scene on Exterior", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1587906", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "CHANEL Lambskin Quilted Large Data Center Cosmetic Case Black", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Gucci", + "product_name": "Velvet Super Mini Dionysus Shoulder Bag Pavone Cyan", + "condition": "Shows Wear", + "discounted_price": 30, + "price": 595, + "id": 10746085114159 }, { - "best_value": 0, - "categories": [ - "Cosmetic Cases", - "Pouches", - "Black", - "Zip Top", - "Leather", - "Lambskin", - "Monogram", - "Accessories", - "Art / Scene on Exterior", - "General", - "Womens", - "Travel Essentials", - "Chanel" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "lambskin", - "chanel-on-sale", - "travel-pouches", - "travel-essentials", - "chanel", - "cosmetic-cases", - "louis-vuitton-monogram", - "accessories-on-sale", - "zip-top", - "travel-cosmetic-cases", - "pouches", - "accessories" - ], - "description": "This is an authentic CHANEL Lambskin Quilted Large Data Center Cosmetic Case in Black. This stylish large cosmetic pouch is crafted in diamond quilted lambskin leather in black and a Chanel CC embellishment. The top zipper opens to a nylon lining, ideal for cosmetics and accessories.", - "discounted_price": 755, - "discounted_tier": 1, - "filters": { - "bags": [], - "jewelry": [], - "accessories": [ - "Cosmetic Cases", - "Pouches" - ], - "watches": [], - "shoes": [], - "brands": [ - "Chanel" - ], - "color": [ - "Black" - ], - "material": [ - "Leather", - "Art / Scene on Exterior" - ], - "bag_feature": [ - "Zip Top" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$500-$1000", - "condition": [ - "Shows Wear" - ], - "locations": [ - "New York" - ] - }, - "following_count": 17, - "id": 1587906, - "made_available_at": 1740433018, - "price": 795, - "priced_at": 1743023874, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/bca75681a4a6c6d5aea328b9adc4fca9.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/bca75681a4a6c6d5aea328b9adc4fca9.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/bca75681a4a6c6d5aea328b9adc4fca9.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/99ce0da1c6c2ad595779e6eeb4205fff.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/99ce0da1c6c2ad595779e6eeb4205fff.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/99ce0da1c6c2ad595779e6eeb4205fff.jpg" - } - ], - "title": "CHANEL Lambskin Quilted Large Data Center Cosmetic Case Black", - "title_without_brand": "Lambskin Quilted Large Data Center Cosmetic Case Black", - "_tags": [ - "1587906" - ], - "objectID": "1587906", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "lambskin", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "travel-pouches", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "travel-essentials", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "cosmetic-cases", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-monogram", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "zip-top", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "travel-cosmetic-cases", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "pouches", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic CHANEL Lambskin Quilted Large Data Center Cosmetic Case in Black. This stylish large cosmetic pouch is crafted in diamond quilted lambskin leather in black and a Chanel CC embellishment. The top zipper opens to a nylon lining, ideal for cosmetics and accessories.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Chanel", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Black", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Art / Scene on Exterior", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1587906", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "CHANEL Lambskin Quilted Large Data Center Cosmetic Case Black", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Gucci", + "product_name": "Dollar Calfskin Small Interlocking G Shoulder Bag Red", + "condition": "Shows Wear", + "discounted_price": 35, + "price": 695, + "id": 10746084229423 }, { - "best_value": 150, - "categories": [ - "Wallets", - "Black", - "Zip Top", - "Leather", - "Solid Color", - "Accessories", - "General", - "Womens", - "Structured", - "Saint Laurent" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "ysl", - "saint-laurent-sale", - "wallets-on-sale", - "saint-laurent-wallets", - "accessories-on-sale", - "zip-top", - "wallets", - "accessories" - ], - "description": "This is an authentic SAINT LAURENT Grain De Poudre Matelasse Chevron Monogram Compact Zip Around Wallet in Black. This chic wallet is crafted of grained calfskin leather in black, with a gold YSL monogram detail on the front. The wallet snaps open to a matching leather interior with card slots, a bill fold, and a zipper compartment.", - "discounted_price": 595, - "discounted_tier": 1, - "filters": { - "bags": [], - "jewelry": [], - "accessories": [ - "Wallets" - ], - "watches": [], - "shoes": [], - "brands": [ - "Saint Laurent" - ], - "color": [ - "Black" - ], - "material": [ - "Leather", - "Solid Color" - ], - "bag_feature": [ - "Zip Top", - "Structured" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$500-$1000", - "condition": [ - "Shows Wear" - ], - "locations": [ - "New York" - ] - }, - "following_count": 12, - "id": 1587915, - "made_available_at": 1740433032, - "price": 625, - "priced_at": 1743023877, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/fafff5445d2a3e5a212b0c217fb7e2b3.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/fafff5445d2a3e5a212b0c217fb7e2b3.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/fafff5445d2a3e5a212b0c217fb7e2b3.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/8659f795eb0b74cd7689607db8b5a06e.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/8659f795eb0b74cd7689607db8b5a06e.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/8659f795eb0b74cd7689607db8b5a06e.jpg" - } - ], - "title": "SAINT LAURENT Grain De Poudre Matelasse Chevron Monogram Compact Zip Around Wallet Black", - "title_without_brand": "Grain De Poudre Matelasse Chevron Monogram Compact Zip Around Wallet Black", - "_tags": [ - "1587915" - ], - "objectID": "1587915", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "ysl", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "saint-laurent-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "wallets-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "saint-laurent-wallets", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "zip-top", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "wallets", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic SAINT LAURENT Grain De Poudre Matelasse Chevron Monogram Compact Zip Around Wallet in Black. This chic wallet is crafted of grained calfskin leather in black, with a gold YSL monogram detail on the front. The wallet snaps open to a matching leather interior with card slots, a bill fold, and a zipper compartment.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Saint Laurent", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Black", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1587915", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "SAINT LAURENT Grain De Poudre Matelasse Chevron Monogram Compact Zip Around Wallet Black", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Louis Vuitton", + "product_name": "Monogram Montsouris NM Backpack", + "condition": "Shows Wear", + "discounted_price": 75, + "price": 1450, + "id": 10746083836207 }, { - "best_value": 150, - "categories": [ - "Wallets", - "Black", - "Zip Top", - "Leather", - "Solid Color", - "Accessories", - "General", - "Womens", - "Structured", - "Saint Laurent" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "ysl", - "saint-laurent-sale", - "wallets-on-sale", - "saint-laurent-wallets", - "accessories-on-sale", - "zip-top", - "wallets", - "accessories" - ], - "description": "This is an authentic SAINT LAURENT Grain De Poudre Matelasse Chevron Monogram Compact Zip Around Wallet in Black. This chic wallet is crafted of grained calfskin leather in black, with a gold YSL monogram detail on the front. The wallet snaps open to a matching leather interior with card slots, a bill fold, and a zipper compartment.", - "discounted_price": 595, - "discounted_tier": 1, - "filters": { - "bags": [], - "jewelry": [], - "accessories": [ - "Wallets" - ], - "watches": [], - "shoes": [], - "brands": [ - "Saint Laurent" - ], - "color": [ - "Black" - ], - "material": [ - "Leather", - "Solid Color" - ], - "bag_feature": [ - "Zip Top", - "Structured" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$500-$1000", - "condition": [ - "Shows Wear" - ], - "locations": [ - "New York" - ] - }, - "following_count": 12, - "id": 1587915, - "made_available_at": 1740433032, - "price": 625, - "priced_at": 1743023877, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/fafff5445d2a3e5a212b0c217fb7e2b3.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/fafff5445d2a3e5a212b0c217fb7e2b3.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/fafff5445d2a3e5a212b0c217fb7e2b3.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/8659f795eb0b74cd7689607db8b5a06e.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/8659f795eb0b74cd7689607db8b5a06e.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/8659f795eb0b74cd7689607db8b5a06e.jpg" - } - ], - "title": "SAINT LAURENT Grain De Poudre Matelasse Chevron Monogram Compact Zip Around Wallet Black", - "title_without_brand": "Grain De Poudre Matelasse Chevron Monogram Compact Zip Around Wallet Black", - "_tags": [ - "1587915" - ], - "objectID": "1587915", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "ysl", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "saint-laurent-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "wallets-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "saint-laurent-wallets", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "zip-top", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "wallets", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic SAINT LAURENT Grain De Poudre Matelasse Chevron Monogram Compact Zip Around Wallet in Black. This chic wallet is crafted of grained calfskin leather in black, with a gold YSL monogram detail on the front. The wallet snaps open to a matching leather interior with card slots, a bill fold, and a zipper compartment.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Saint Laurent", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Black", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1587915", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "SAINT LAURENT Grain De Poudre Matelasse Chevron Monogram Compact Zip Around Wallet Black", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Chloe", + "product_name": "Calfskin Mini Marcie Round Crossbody Bag Black", + "condition": "Shows Wear", + "discounted_price": 30, + "price": 595, + "id": 10746587054383 }, { - "best_value": 150, - "categories": [ - "Wallets", - "Black", - "Zip Top", - "Leather", - "Solid Color", - "Accessories", - "General", - "Womens", - "Structured", - "Saint Laurent" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "ysl", - "saint-laurent-sale", - "wallets-on-sale", - "saint-laurent-wallets", - "accessories-on-sale", - "zip-top", - "wallets", - "accessories" - ], - "description": "This is an authentic SAINT LAURENT Grain De Poudre Matelasse Chevron Monogram Compact Zip Around Wallet in Black. This chic wallet is crafted of grained calfskin leather in black, with a gold YSL monogram detail on the front. The wallet snaps open to a matching leather interior with card slots, a bill fold, and a zipper compartment.", - "discounted_price": 595, - "discounted_tier": 1, - "filters": { - "bags": [], - "jewelry": [], - "accessories": [ - "Wallets" - ], - "watches": [], - "shoes": [], - "brands": [ - "Saint Laurent" - ], - "color": [ - "Black" - ], - "material": [ - "Leather", - "Solid Color" - ], - "bag_feature": [ - "Zip Top", - "Structured" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$500-$1000", - "condition": [ - "Shows Wear" - ], - "locations": [ - "New York" - ] - }, - "following_count": 12, - "id": 1587915, - "made_available_at": 1740433032, - "price": 625, - "priced_at": 1743023877, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/fafff5445d2a3e5a212b0c217fb7e2b3.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/fafff5445d2a3e5a212b0c217fb7e2b3.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/fafff5445d2a3e5a212b0c217fb7e2b3.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/8659f795eb0b74cd7689607db8b5a06e.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/8659f795eb0b74cd7689607db8b5a06e.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/8659f795eb0b74cd7689607db8b5a06e.jpg" - } - ], - "title": "SAINT LAURENT Grain De Poudre Matelasse Chevron Monogram Compact Zip Around Wallet Black", - "title_without_brand": "Grain De Poudre Matelasse Chevron Monogram Compact Zip Around Wallet Black", - "_tags": [ - "1587915" - ], - "objectID": "1587915", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "ysl", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "saint-laurent-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "wallets-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "saint-laurent-wallets", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "zip-top", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "wallets", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic SAINT LAURENT Grain De Poudre Matelasse Chevron Monogram Compact Zip Around Wallet in Black. This chic wallet is crafted of grained calfskin leather in black, with a gold YSL monogram detail on the front. The wallet snaps open to a matching leather interior with card slots, a bill fold, and a zipper compartment.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Saint Laurent", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Black", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1587915", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "SAINT LAURENT Grain De Poudre Matelasse Chevron Monogram Compact Zip Around Wallet Black", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Loewe", + "product_name": "Soft Grained Calfskin Small Puzzle Edge Bag Pale Aubergine Glaze", + "condition": "Excellent", + "discounted_price": 145, + "price": 2790, + "id": 10746586857775 }, { - "best_value": 0, - "categories": [ - "Browns", - "Open Top", - "Fabrics", - "Handbags", - "Monogram", - "Styles", - "Top Handles", - "Womens", - "Top Designers", - "Gucci", - "Live Shopping with FASHIONPHILE" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "gucci-bags-on-sale", - "bags-under-1000", - "gucci", - "gucci-bags", - "bags-on-sale", - "instagram-live-shopping", - "gucci-monogram", - "top-handles", - "top-designers", - "handbag-styles", - "gucci-on-sale", - "handbags" - ], - "description": "This is an authentic GUCCI Monogram Tote in Brown. This chic tote is finely crafted of beige Gucci GG monogram canvas. The bag features chocolate brown cowhide leather trim and leather strap handles. The top opens to a mocha brown fabric interior with a zipper pocket. This is a stylish tote that will be ideal for day with the sophisticated, one of a kind style of Gucci!", - "discounted_price": 520, - "discounted_tier": 1, - "filters": { - "bags": [ - "Handbags" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Gucci" - ], - "color": [ - "Browns" - ], - "material": [ - "Fabrics" - ], - "bag_feature": [ - "Open Top", - "Top Handles" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$500-$1000", - "condition": [ - "Shows Wear" - ], - "locations": [ - "New York" - ] - }, - "following_count": 13, - "id": 1588076, - "made_available_at": 1740433027, - "price": 550, - "priced_at": 1743023876, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/55b0e1af65875854eaebf8008f952212.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/55b0e1af65875854eaebf8008f952212.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/55b0e1af65875854eaebf8008f952212.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/1d7fad322139e933dc6e5b4f8898f752.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/1d7fad322139e933dc6e5b4f8898f752.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/1d7fad322139e933dc6e5b4f8898f752.jpg" - } - ], - "title": "GUCCI Monogram Tote Brown", - "title_without_brand": "Monogram Tote Brown", - "_tags": [ - "1588076" - ], - "objectID": "1588076", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "instagram-live-shopping", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-monogram", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "top-handles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "top-designers", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic GUCCI Monogram Tote in Brown. This chic tote is finely crafted of beige Gucci GG monogram canvas. The bag features chocolate brown cowhide leather trim and leather strap handles. The top opens to a mocha brown fabric interior with a zipper pocket. This is a stylish tote that will be ideal for day with the sophisticated, one of a kind style of Gucci!", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Gucci", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Browns", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Fabrics", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1588076", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "GUCCI Monogram Tote Brown", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Balenciaga", + "product_name": "Smooth Calfskin Mini Bel Air Carry All Bag Mineral Green", + "condition": "New", + "discounted_price": 180, + "price": 3440, + "id": 10577544610095 }, { - "best_value": 0, - "categories": [ - "Browns", - "Open Top", - "Fabrics", - "Handbags", - "Monogram", - "Styles", - "Top Handles", - "Womens", - "Top Designers", - "Gucci", - "Live Shopping with FASHIONPHILE" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "gucci-bags-on-sale", - "bags-under-1000", - "gucci", - "gucci-bags", - "bags-on-sale", - "instagram-live-shopping", - "gucci-monogram", - "top-handles", - "top-designers", - "handbag-styles", - "gucci-on-sale", - "handbags" - ], - "description": "This is an authentic GUCCI Monogram Tote in Brown. This chic tote is finely crafted of beige Gucci GG monogram canvas. The bag features chocolate brown cowhide leather trim and leather strap handles. The top opens to a mocha brown fabric interior with a zipper pocket. This is a stylish tote that will be ideal for day with the sophisticated, one of a kind style of Gucci!", - "discounted_price": 520, - "discounted_tier": 1, - "filters": { - "bags": [ - "Handbags" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Gucci" - ], - "color": [ - "Browns" - ], - "material": [ - "Fabrics" - ], - "bag_feature": [ - "Open Top", - "Top Handles" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$500-$1000", - "condition": [ - "Shows Wear" - ], - "locations": [ - "New York" - ] - }, - "following_count": 13, - "id": 1588076, - "made_available_at": 1740433027, - "price": 550, - "priced_at": 1743023876, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/55b0e1af65875854eaebf8008f952212.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/55b0e1af65875854eaebf8008f952212.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/55b0e1af65875854eaebf8008f952212.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/1d7fad322139e933dc6e5b4f8898f752.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/1d7fad322139e933dc6e5b4f8898f752.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/1d7fad322139e933dc6e5b4f8898f752.jpg" - } - ], - "title": "GUCCI Monogram Tote Brown", - "title_without_brand": "Monogram Tote Brown", - "_tags": [ - "1588076" - ], - "objectID": "1588076", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "instagram-live-shopping", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-monogram", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "top-handles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "top-designers", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic GUCCI Monogram Tote in Brown. This chic tote is finely crafted of beige Gucci GG monogram canvas. The bag features chocolate brown cowhide leather trim and leather strap handles. The top opens to a mocha brown fabric interior with a zipper pocket. This is a stylish tote that will be ideal for day with the sophisticated, one of a kind style of Gucci!", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Gucci", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Browns", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Fabrics", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1588076", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "GUCCI Monogram Tote Brown", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Louis Vuitton", + "product_name": "Empreinte Monogram Giant Neverfull MM Pochette Black", + "condition": "Excellent", + "discounted_price": 40, + "price": 795, + "id": 10746586792239 }, { - "best_value": 0, - "categories": [ - "Browns", - "Open Top", - "Fabrics", - "Handbags", - "Monogram", - "Styles", - "Top Handles", - "Womens", - "Top Designers", - "Gucci", - "Live Shopping with FASHIONPHILE" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "gucci-bags-on-sale", - "bags-under-1000", - "gucci", - "gucci-bags", - "bags-on-sale", - "instagram-live-shopping", - "gucci-monogram", - "top-handles", - "top-designers", - "handbag-styles", - "gucci-on-sale", - "handbags" - ], - "description": "This is an authentic GUCCI Monogram Tote in Brown. This chic tote is finely crafted of beige Gucci GG monogram canvas. The bag features chocolate brown cowhide leather trim and leather strap handles. The top opens to a mocha brown fabric interior with a zipper pocket. This is a stylish tote that will be ideal for day with the sophisticated, one of a kind style of Gucci!", - "discounted_price": 520, - "discounted_tier": 1, - "filters": { - "bags": [ - "Handbags" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Gucci" - ], - "color": [ - "Browns" - ], - "material": [ - "Fabrics" - ], - "bag_feature": [ - "Open Top", - "Top Handles" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$500-$1000", - "condition": [ - "Shows Wear" - ], - "locations": [ - "New York" - ] - }, - "following_count": 13, - "id": 1588076, - "made_available_at": 1740433027, - "price": 550, - "priced_at": 1743023876, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/55b0e1af65875854eaebf8008f952212.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/55b0e1af65875854eaebf8008f952212.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/55b0e1af65875854eaebf8008f952212.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/1d7fad322139e933dc6e5b4f8898f752.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/1d7fad322139e933dc6e5b4f8898f752.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/1d7fad322139e933dc6e5b4f8898f752.jpg" - } - ], - "title": "GUCCI Monogram Tote Brown", - "title_without_brand": "Monogram Tote Brown", - "_tags": [ - "1588076" - ], - "objectID": "1588076", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "instagram-live-shopping", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-monogram", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "top-handles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "top-designers", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic GUCCI Monogram Tote in Brown. This chic tote is finely crafted of beige Gucci GG monogram canvas. The bag features chocolate brown cowhide leather trim and leather strap handles. The top opens to a mocha brown fabric interior with a zipper pocket. This is a stylish tote that will be ideal for day with the sophisticated, one of a kind style of Gucci!", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Gucci", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Browns", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Fabrics", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1588076", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "GUCCI Monogram Tote Brown", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Gucci", + "product_name": "Acetate GG Web Round Eye Sunglasses GG0416SK Black", + "condition": "Shows Wear", + "discounted_price": 10, + "price": 195, + "id": 10746586726703 }, { - "best_value": 955, - "categories": [ - "Structured", - "Top Handles", - "Zip Top", - "Leather", - "Solid Color", - "Crossbody", - "Handbags", - "Shoulder Bags", - "Styles", - "Head-to-Toe Neutrals", - "Pink", - "Y2K & Today", - "Givenchy", - "Live Shopping with FASHIONPHILE" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoulder-bags-on-sale", - "bags-under-1000", - "bags-on-sale", - "instagram-live-shopping", - "top-handles", - "y2k-icons", - "crossbody-bags-on-sale", - "zip-top", - "handbag-styles", - "givenchy", - "shoulder-bags", - "handbags", - "cross-body", - "neutrals" - ], - "description": "This is an authentic GIVENCHY Sugar Goatskin Mini Antigona in Nude Pink. This handbag is composed of grained goatskin leather in light pink. This bag features rolled leather top handles and an optional leather shoulder strap with silver hardware. The top opens with a zipper to a beige fabric interior with zipper and patch pockets.", - "discounted_price": 995, - "discounted_tier": 1, - "filters": { - "bags": [ - "Crossbody", - "Handbags", - "Shoulder Bags" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Givenchy" - ], - "color": [ - "Pink" - ], - "material": [ - "Leather", - "Solid Color" - ], - "bag_feature": [ - "Structured", - "Top Handles", - "Zip Top" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$500-$1000", - "condition": [ - "Excellent" - ], - "locations": [ - "New York" - ] - }, - "following_count": 40, - "id": 1588137, - "made_available_at": 1740430361, - "price": 1050, - "priced_at": 1743019211, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/e217be1590802a3a1a2dfc4d040c18a0.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/e217be1590802a3a1a2dfc4d040c18a0.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/e217be1590802a3a1a2dfc4d040c18a0.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/51b2f01a552124b56a991ec2283ceeed.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/51b2f01a552124b56a991ec2283ceeed.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/51b2f01a552124b56a991ec2283ceeed.jpg" - } - ], - "title": "GIVENCHY Sugar Goatskin Mini Antigona Nude Pink", - "title_without_brand": "Sugar Goatskin Mini Antigona Nude Pink", - "_tags": [ - "1588137" - ], - "objectID": "1588137", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "instagram-live-shopping", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "top-handles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "y2k-icons", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "crossbody-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "zip-top", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "givenchy", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "cross-body", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "neutrals", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic GIVENCHY Sugar Goatskin Mini Antigona in Nude Pink. This handbag is composed of grained goatskin leather in light pink. This bag features rolled leather top handles and an optional leather shoulder strap with silver hardware. The top opens with a zipper to a beige fabric interior with zipper and patch pockets.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Givenchy", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Pink", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1588137", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "GIVENCHY Sugar Goatskin Mini Antigona Nude Pink", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Louis Vuitton", + "product_name": "Empreinte Rosalie Coin Purse Rose Poudre", + "condition": "Excellent", + "discounted_price": 20, + "price": 425, + "id": 10746586628399 }, { - "best_value": 955, - "categories": [ - "Structured", - "Top Handles", - "Zip Top", - "Leather", - "Solid Color", - "Crossbody", - "Handbags", - "Shoulder Bags", - "Styles", - "Head-to-Toe Neutrals", - "Pink", - "Y2K & Today", - "Givenchy", - "Live Shopping with FASHIONPHILE" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoulder-bags-on-sale", - "bags-under-1000", - "bags-on-sale", - "instagram-live-shopping", - "top-handles", - "y2k-icons", - "crossbody-bags-on-sale", - "zip-top", - "handbag-styles", - "givenchy", - "shoulder-bags", - "handbags", - "cross-body", - "neutrals" - ], - "description": "This is an authentic GIVENCHY Sugar Goatskin Mini Antigona in Nude Pink. This handbag is composed of grained goatskin leather in light pink. This bag features rolled leather top handles and an optional leather shoulder strap with silver hardware. The top opens with a zipper to a beige fabric interior with zipper and patch pockets.", - "discounted_price": 995, - "discounted_tier": 1, - "filters": { - "bags": [ - "Crossbody", - "Handbags", - "Shoulder Bags" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Givenchy" - ], - "color": [ - "Pink" - ], - "material": [ - "Leather", - "Solid Color" - ], - "bag_feature": [ - "Structured", - "Top Handles", - "Zip Top" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$500-$1000", - "condition": [ - "Excellent" - ], - "locations": [ - "New York" - ] - }, - "following_count": 40, - "id": 1588137, - "made_available_at": 1740430361, - "price": 1050, - "priced_at": 1743019211, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/e217be1590802a3a1a2dfc4d040c18a0.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/e217be1590802a3a1a2dfc4d040c18a0.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/e217be1590802a3a1a2dfc4d040c18a0.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/51b2f01a552124b56a991ec2283ceeed.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/51b2f01a552124b56a991ec2283ceeed.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/51b2f01a552124b56a991ec2283ceeed.jpg" - } - ], - "title": "GIVENCHY Sugar Goatskin Mini Antigona Nude Pink", - "title_without_brand": "Sugar Goatskin Mini Antigona Nude Pink", - "_tags": [ - "1588137" - ], - "objectID": "1588137", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "instagram-live-shopping", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "top-handles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "y2k-icons", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "crossbody-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "zip-top", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "givenchy", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "cross-body", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "neutrals", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic GIVENCHY Sugar Goatskin Mini Antigona in Nude Pink. This handbag is composed of grained goatskin leather in light pink. This bag features rolled leather top handles and an optional leather shoulder strap with silver hardware. The top opens with a zipper to a beige fabric interior with zipper and patch pockets.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Givenchy", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Pink", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1588137", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "GIVENCHY Sugar Goatskin Mini Antigona Nude Pink", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Louis Vuitton", + "product_name": "Monogram Multicolor Carnet de Bal Mini Agenda Cover White", + "condition": "Shows Wear", + "discounted_price": 20, + "price": 395, + "id": 10746586595631 }, { - "best_value": 955, - "categories": [ - "Structured", - "Top Handles", - "Zip Top", - "Leather", - "Solid Color", - "Crossbody", - "Handbags", - "Shoulder Bags", - "Styles", - "Head-to-Toe Neutrals", - "Pink", - "Y2K & Today", - "Givenchy", - "Live Shopping with FASHIONPHILE" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoulder-bags-on-sale", - "bags-under-1000", - "bags-on-sale", - "instagram-live-shopping", - "top-handles", - "y2k-icons", - "crossbody-bags-on-sale", - "zip-top", - "handbag-styles", - "givenchy", - "shoulder-bags", - "handbags", - "cross-body", - "neutrals" - ], - "description": "This is an authentic GIVENCHY Sugar Goatskin Mini Antigona in Nude Pink. This handbag is composed of grained goatskin leather in light pink. This bag features rolled leather top handles and an optional leather shoulder strap with silver hardware. The top opens with a zipper to a beige fabric interior with zipper and patch pockets.", - "discounted_price": 995, - "discounted_tier": 1, - "filters": { - "bags": [ - "Crossbody", - "Handbags", - "Shoulder Bags" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Givenchy" - ], - "color": [ - "Pink" - ], - "material": [ - "Leather", - "Solid Color" - ], - "bag_feature": [ - "Structured", - "Top Handles", - "Zip Top" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$500-$1000", - "condition": [ - "Excellent" - ], - "locations": [ - "New York" - ] - }, - "following_count": 40, - "id": 1588137, - "made_available_at": 1740430361, - "price": 1050, - "priced_at": 1743019211, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/e217be1590802a3a1a2dfc4d040c18a0.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/e217be1590802a3a1a2dfc4d040c18a0.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/e217be1590802a3a1a2dfc4d040c18a0.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/51b2f01a552124b56a991ec2283ceeed.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/51b2f01a552124b56a991ec2283ceeed.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/51b2f01a552124b56a991ec2283ceeed.jpg" - } - ], - "title": "GIVENCHY Sugar Goatskin Mini Antigona Nude Pink", - "title_without_brand": "Sugar Goatskin Mini Antigona Nude Pink", - "_tags": [ - "1588137" - ], - "objectID": "1588137", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "instagram-live-shopping", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "top-handles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "y2k-icons", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "crossbody-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "zip-top", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "givenchy", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "cross-body", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "neutrals", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic GIVENCHY Sugar Goatskin Mini Antigona in Nude Pink. This handbag is composed of grained goatskin leather in light pink. This bag features rolled leather top handles and an optional leather shoulder strap with silver hardware. The top opens with a zipper to a beige fabric interior with zipper and patch pockets.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Givenchy", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Pink", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1588137", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "GIVENCHY Sugar Goatskin Mini Antigona Nude Pink", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Louis Vuitton", + "product_name": "Calfskin Felicie Card Holder Insert Rose Ballerine", + "condition": "Excellent", + "discounted_price": 10, + "price": 225, + "id": 10746586431791 }, { - "best_value": 305, - "categories": [ - "Men's Wallets", - "Blues", - "Multicolor", - "Coated Canvas", - "Damier", - "Accessories", - "Styles", - "Mens", - "Louis Vuitton" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "damier", - "mens", - "menswallets", - "louis-vuitton-on-sale", - "louis-vuitton-wallets", - "louis-vuitton", - "wallets-on-sale", - "handbag-styles", - "accessories" - ], - "description": "This is an authentic LOUIS VUITTON Damier Cobalt Regatta Slender Wallet. This wallet is made of damier cobalt coated canvas with a red, white and blue V overlay. The holder opens to a black leather interior with card slots, patch pockets, and a billfold. ", - "discounted_price": 280, - "discounted_tier": 1, - "filters": { - "bags": [], - "jewelry": [], - "accessories": [ - "Men's Wallets" - ], - "watches": [], - "shoes": [], - "brands": [ - "Louis Vuitton" - ], - "color": [ - "Blues", - "Multicolor" - ], - "material": [ - "Coated Canvas" - ], - "bag_feature": [], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$200-$500", - "condition": [ - "Worn" - ], - "locations": [ - "New York" - ] - }, - "following_count": 5, - "id": 1588157, - "made_available_at": 1740433037, - "price": 295, - "priced_at": 1743023878, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/9dbce24beb53e5ee289f8a5507d7b1c7.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/9dbce24beb53e5ee289f8a5507d7b1c7.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/9dbce24beb53e5ee289f8a5507d7b1c7.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/1c6c4b57555742010471462ec2836b2c.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/1c6c4b57555742010471462ec2836b2c.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/1c6c4b57555742010471462ec2836b2c.jpg" - } - ], - "title": "LOUIS VUITTON Damier Cobalt Regatta Slender Wallet", - "title_without_brand": "Damier Cobalt Regatta Slender Wallet", - "_tags": [ - "1588157" - ], - "objectID": "1588157", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "damier", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "mens", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "menswallets", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-wallets", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "wallets-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic LOUIS VUITTON Damier Cobalt Regatta Slender Wallet. This wallet is made of damier cobalt coated canvas with a red, white and blue V overlay. The holder opens to a black leather interior with card slots, patch pockets, and a billfold. ", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Louis Vuitton", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Blues", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Multicolor", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Coated Canvas", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1588157", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "LOUIS VUITTON Damier Cobalt Regatta Slender Wallet", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Gucci", + "product_name": "Metallic Calfskin Super Mini Dionysus Shoulder Bag Gold", + "condition": "Excellent", + "discounted_price": 70, + "price": 1350, + "id": 10746586005807 }, { - "best_value": 305, - "categories": [ - "Men's Wallets", - "Blues", - "Multicolor", - "Coated Canvas", - "Damier", - "Accessories", - "Styles", - "Mens", - "Louis Vuitton" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "damier", - "mens", - "menswallets", - "louis-vuitton-on-sale", - "louis-vuitton-wallets", - "louis-vuitton", - "wallets-on-sale", - "handbag-styles", - "accessories" - ], - "description": "This is an authentic LOUIS VUITTON Damier Cobalt Regatta Slender Wallet. This wallet is made of damier cobalt coated canvas with a red, white and blue V overlay. The holder opens to a black leather interior with card slots, patch pockets, and a billfold. ", - "discounted_price": 280, - "discounted_tier": 1, - "filters": { - "bags": [], - "jewelry": [], - "accessories": [ - "Men's Wallets" - ], - "watches": [], - "shoes": [], - "brands": [ - "Louis Vuitton" - ], - "color": [ - "Blues", - "Multicolor" - ], - "material": [ - "Coated Canvas" - ], - "bag_feature": [], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$200-$500", - "condition": [ - "Worn" - ], - "locations": [ - "New York" - ] - }, - "following_count": 5, - "id": 1588157, - "made_available_at": 1740433037, + "brand_name": "Saint Laurent", + "product_name": "Kate Cat Eye SL429 Sunglasses Black", + "condition": "Shows Wear", + "discounted_price": 15, "price": 295, - "priced_at": 1743023878, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/9dbce24beb53e5ee289f8a5507d7b1c7.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/9dbce24beb53e5ee289f8a5507d7b1c7.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/9dbce24beb53e5ee289f8a5507d7b1c7.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/1c6c4b57555742010471462ec2836b2c.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/1c6c4b57555742010471462ec2836b2c.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/1c6c4b57555742010471462ec2836b2c.jpg" - } - ], - "title": "LOUIS VUITTON Damier Cobalt Regatta Slender Wallet", - "title_without_brand": "Damier Cobalt Regatta Slender Wallet", - "_tags": [ - "1588157" - ], - "objectID": "1588157", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "damier", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "mens", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "menswallets", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-wallets", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "wallets-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic LOUIS VUITTON Damier Cobalt Regatta Slender Wallet. This wallet is made of damier cobalt coated canvas with a red, white and blue V overlay. The holder opens to a black leather interior with card slots, patch pockets, and a billfold. ", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Louis Vuitton", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Blues", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Multicolor", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Coated Canvas", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1588157", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "LOUIS VUITTON Damier Cobalt Regatta Slender Wallet", - "matchLevel": "none", - "matchedWords": [] - } - } + "id": 10746585907503 }, { - "best_value": 305, - "categories": [ - "Men's Wallets", - "Blues", - "Multicolor", - "Coated Canvas", - "Damier", - "Accessories", - "Styles", - "Mens", - "Louis Vuitton" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "damier", - "mens", - "menswallets", - "louis-vuitton-on-sale", - "louis-vuitton-wallets", - "louis-vuitton", - "wallets-on-sale", - "handbag-styles", - "accessories" - ], - "description": "This is an authentic LOUIS VUITTON Damier Cobalt Regatta Slender Wallet. This wallet is made of damier cobalt coated canvas with a red, white and blue V overlay. The holder opens to a black leather interior with card slots, patch pockets, and a billfold. ", - "discounted_price": 280, - "discounted_tier": 1, - "filters": { - "bags": [], - "jewelry": [], - "accessories": [ - "Men's Wallets" - ], - "watches": [], - "shoes": [], - "brands": [ - "Louis Vuitton" - ], - "color": [ - "Blues", - "Multicolor" - ], - "material": [ - "Coated Canvas" - ], - "bag_feature": [], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$200-$500", - "condition": [ - "Worn" - ], - "locations": [ - "New York" - ] - }, - "following_count": 5, - "id": 1588157, - "made_available_at": 1740433037, - "price": 295, - "priced_at": 1743023878, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/9dbce24beb53e5ee289f8a5507d7b1c7.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/9dbce24beb53e5ee289f8a5507d7b1c7.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/9dbce24beb53e5ee289f8a5507d7b1c7.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/1c6c4b57555742010471462ec2836b2c.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/1c6c4b57555742010471462ec2836b2c.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/1c6c4b57555742010471462ec2836b2c.jpg" - } - ], - "title": "LOUIS VUITTON Damier Cobalt Regatta Slender Wallet", - "title_without_brand": "Damier Cobalt Regatta Slender Wallet", - "_tags": [ - "1588157" - ], - "objectID": "1588157", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "damier", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "mens", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "menswallets", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-wallets", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "wallets-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic LOUIS VUITTON Damier Cobalt Regatta Slender Wallet. This wallet is made of damier cobalt coated canvas with a red, white and blue V overlay. The holder opens to a black leather interior with card slots, patch pockets, and a billfold. ", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Louis Vuitton", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Blues", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Multicolor", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Coated Canvas", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1588157", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "LOUIS VUITTON Damier Cobalt Regatta Slender Wallet", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Louis Vuitton", + "product_name": "Monogram Pochette Accessories", + "condition": "Shows Wear", + "discounted_price": 35, + "price": 650, + "id": 10746585874735 }, { - "best_value": 0, - "categories": [ - "Black", - "Structured", - "Womens", - "Leather", - "Solid Color", - "Clutch & Evening", - "Crossbody", - "Handbags", - "Shoulder Bags", - "Wallet Style", - "General", - "Styles", - "Hot Picks Sale", - "Designer Deals", - "National Handbag Day", - "Little Luxuries Sale", - "Iconic Leathers", - "Top Designers", - "Year-End Sale", - "Saint Laurent", - "Live Shopping with FASHIONPHILE" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoulder-bags-on-sale", - "ysl", - "saint-laurent-shoulder-bags", - "designer-deals", - "little-luxuries-sale-2024", - "bags-under-1000", - "saint-laurent-sale", - "national-handbag-day-sale", - "saint-laurent-envelope-bags", - "bags-on-sale", - "instagram-live-shopping", - "saint-laurent-clutches-evening-bags", - "top-designers", - "clutch-evening", - "crossbody-bags-on-sale", - "saint-laurent-bags", - "wallet-style", - "handbag-styles", - "shoulder-bags", - "saint-laurent-bags-under-1000", - "iconic-leathers", - "handbags", - "cross-body", - "saint-laurent-wallet-style", - "year-end-sale", - "saint-laurent-crossbody-bags" - ], - "description": "This is an authentic SAINT LAURENT Grain De Poudre Matelasse Chevron Monogram Envelope Chain Wallet in Black. This wallet on a chain is crafted of finely pebbled chevron-quilted leather in black. It features a removable waist-length gold chain shoulder strap with a shoulder pad and a gold classic YSL emblem on the flap. This opens to a black leather interior with card slots, a zipper compartment, and pockets.", - "discounted_price": 1375, - "discounted_tier": 1, - "filters": { - "bags": [ - "Clutch & Evening", - "Crossbody", - "Handbags", - "Shoulder Bags", - "Wallet Style" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Saint Laurent" - ], - "color": [ - "Black" - ], - "material": [ - "Leather", - "Solid Color" - ], - "bag_feature": [ - "Structured" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$1000-$2000", - "condition": [ - "Excellent" - ], - "locations": [ - "New York" - ] - }, - "following_count": 12, - "id": 1588201, - "made_available_at": 1740433034, - "price": 1450, - "priced_at": 1743023877, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/bbc1c12dfe20304583859abdbbe6740b.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/bbc1c12dfe20304583859abdbbe6740b.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/bbc1c12dfe20304583859abdbbe6740b.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/7b88be2eff4aa5250c76174ab5e887d0.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/7b88be2eff4aa5250c76174ab5e887d0.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/7b88be2eff4aa5250c76174ab5e887d0.jpg" - } - ], - "title": "SAINT LAURENT Grain De Poudre Matelasse Chevron Monogram Envelope Chain Wallet Black", - "title_without_brand": "Grain De Poudre Matelasse Chevron Monogram Envelope Chain Wallet Black", - "_tags": [ - "1588201" - ], - "objectID": "1588201", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "ysl", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "saint-laurent-shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "designer-deals", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "little-luxuries-sale-2024", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "saint-laurent-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "national-handbag-day-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "saint-laurent-envelope-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "instagram-live-shopping", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "saint-laurent-clutches-evening-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "top-designers", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "clutch-evening", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "crossbody-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "saint-laurent-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "wallet-style", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "saint-laurent-bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "iconic-leathers", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "cross-body", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "saint-laurent-wallet-style", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "year-end-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "saint-laurent-crossbody-bags", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic SAINT LAURENT Grain De Poudre Matelasse Chevron Monogram Envelope Chain Wallet in Black. This wallet on a chain is crafted of finely pebbled chevron-quilted leather in black. It features a removable waist-length gold chain shoulder strap with a shoulder pad and a gold classic YSL emblem on the flap. This opens to a black leather interior with card slots, a zipper compartment, and pockets.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Saint Laurent", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Black", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1588201", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "SAINT LAURENT Grain De Poudre Matelasse Chevron Monogram Envelope Chain Wallet Black", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Louis Vuitton", + "product_name": "Graffiti Alma MM Peach", + "condition": "Shows Wear", + "discounted_price": 95, + "price": 1790, + "id": 10746585809199 }, { - "best_value": 0, - "categories": [ - "Black", - "Structured", - "Womens", - "Leather", - "Solid Color", - "Clutch & Evening", - "Crossbody", - "Handbags", - "Shoulder Bags", - "Wallet Style", - "General", - "Styles", - "Hot Picks Sale", - "Designer Deals", - "National Handbag Day", - "Little Luxuries Sale", - "Iconic Leathers", - "Top Designers", - "Year-End Sale", - "Saint Laurent", - "Live Shopping with FASHIONPHILE" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoulder-bags-on-sale", - "ysl", - "saint-laurent-shoulder-bags", - "designer-deals", - "little-luxuries-sale-2024", - "bags-under-1000", - "saint-laurent-sale", - "national-handbag-day-sale", - "saint-laurent-envelope-bags", - "bags-on-sale", - "instagram-live-shopping", - "saint-laurent-clutches-evening-bags", - "top-designers", - "clutch-evening", - "crossbody-bags-on-sale", - "saint-laurent-bags", - "wallet-style", - "handbag-styles", - "shoulder-bags", - "saint-laurent-bags-under-1000", - "iconic-leathers", - "handbags", - "cross-body", - "saint-laurent-wallet-style", - "year-end-sale", - "saint-laurent-crossbody-bags" - ], - "description": "This is an authentic SAINT LAURENT Grain De Poudre Matelasse Chevron Monogram Envelope Chain Wallet in Black. This wallet on a chain is crafted of finely pebbled chevron-quilted leather in black. It features a removable waist-length gold chain shoulder strap with a shoulder pad and a gold classic YSL emblem on the flap. This opens to a black leather interior with card slots, a zipper compartment, and pockets.", - "discounted_price": 1375, - "discounted_tier": 1, - "filters": { - "bags": [ - "Clutch & Evening", - "Crossbody", - "Handbags", - "Shoulder Bags", - "Wallet Style" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Saint Laurent" - ], - "color": [ - "Black" - ], - "material": [ - "Leather", - "Solid Color" - ], - "bag_feature": [ - "Structured" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$1000-$2000", - "condition": [ - "Excellent" - ], - "locations": [ - "New York" - ] - }, - "following_count": 12, - "id": 1588201, - "made_available_at": 1740433034, - "price": 1450, - "priced_at": 1743023877, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/bbc1c12dfe20304583859abdbbe6740b.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/bbc1c12dfe20304583859abdbbe6740b.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/bbc1c12dfe20304583859abdbbe6740b.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/7b88be2eff4aa5250c76174ab5e887d0.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/7b88be2eff4aa5250c76174ab5e887d0.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/7b88be2eff4aa5250c76174ab5e887d0.jpg" - } - ], - "title": "SAINT LAURENT Grain De Poudre Matelasse Chevron Monogram Envelope Chain Wallet Black", - "title_without_brand": "Grain De Poudre Matelasse Chevron Monogram Envelope Chain Wallet Black", - "_tags": [ - "1588201" - ], - "objectID": "1588201", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "ysl", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "saint-laurent-shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "designer-deals", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "little-luxuries-sale-2024", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "saint-laurent-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "national-handbag-day-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "saint-laurent-envelope-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "instagram-live-shopping", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "saint-laurent-clutches-evening-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "top-designers", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "clutch-evening", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "crossbody-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "saint-laurent-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "wallet-style", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "saint-laurent-bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "iconic-leathers", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "cross-body", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "saint-laurent-wallet-style", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "year-end-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "saint-laurent-crossbody-bags", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic SAINT LAURENT Grain De Poudre Matelasse Chevron Monogram Envelope Chain Wallet in Black. This wallet on a chain is crafted of finely pebbled chevron-quilted leather in black. It features a removable waist-length gold chain shoulder strap with a shoulder pad and a gold classic YSL emblem on the flap. This opens to a black leather interior with card slots, a zipper compartment, and pockets.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Saint Laurent", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Black", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1588201", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "SAINT LAURENT Grain De Poudre Matelasse Chevron Monogram Envelope Chain Wallet Black", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Louis Vuitton", + "product_name": "Mahina On My Side PM Black", + "condition": "Shows Wear", + "discounted_price": 150, + "price": 2890, + "id": 10746585776431 }, { - "best_value": 0, - "categories": [ - "Black", - "Structured", - "Womens", - "Leather", - "Solid Color", - "Clutch & Evening", - "Crossbody", - "Handbags", - "Shoulder Bags", - "Wallet Style", - "General", - "Styles", - "Hot Picks Sale", - "Designer Deals", - "National Handbag Day", - "Little Luxuries Sale", - "Iconic Leathers", - "Top Designers", - "Year-End Sale", - "Saint Laurent", - "Live Shopping with FASHIONPHILE" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoulder-bags-on-sale", - "ysl", - "saint-laurent-shoulder-bags", - "designer-deals", - "little-luxuries-sale-2024", - "bags-under-1000", - "saint-laurent-sale", - "national-handbag-day-sale", - "saint-laurent-envelope-bags", - "bags-on-sale", - "instagram-live-shopping", - "saint-laurent-clutches-evening-bags", - "top-designers", - "clutch-evening", - "crossbody-bags-on-sale", - "saint-laurent-bags", - "wallet-style", - "handbag-styles", - "shoulder-bags", - "saint-laurent-bags-under-1000", - "iconic-leathers", - "handbags", - "cross-body", - "saint-laurent-wallet-style", - "year-end-sale", - "saint-laurent-crossbody-bags" - ], - "description": "This is an authentic SAINT LAURENT Grain De Poudre Matelasse Chevron Monogram Envelope Chain Wallet in Black. This wallet on a chain is crafted of finely pebbled chevron-quilted leather in black. It features a removable waist-length gold chain shoulder strap with a shoulder pad and a gold classic YSL emblem on the flap. This opens to a black leather interior with card slots, a zipper compartment, and pockets.", - "discounted_price": 1375, - "discounted_tier": 1, - "filters": { - "bags": [ - "Clutch & Evening", - "Crossbody", - "Handbags", - "Shoulder Bags", - "Wallet Style" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Saint Laurent" - ], - "color": [ - "Black" - ], - "material": [ - "Leather", - "Solid Color" - ], - "bag_feature": [ - "Structured" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$1000-$2000", - "condition": [ - "Excellent" - ], - "locations": [ - "New York" - ] - }, - "following_count": 12, - "id": 1588201, - "made_available_at": 1740433034, - "price": 1450, - "priced_at": 1743023877, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/bbc1c12dfe20304583859abdbbe6740b.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/bbc1c12dfe20304583859abdbbe6740b.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/bbc1c12dfe20304583859abdbbe6740b.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/7b88be2eff4aa5250c76174ab5e887d0.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/7b88be2eff4aa5250c76174ab5e887d0.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/7b88be2eff4aa5250c76174ab5e887d0.jpg" - } - ], - "title": "SAINT LAURENT Grain De Poudre Matelasse Chevron Monogram Envelope Chain Wallet Black", - "title_without_brand": "Grain De Poudre Matelasse Chevron Monogram Envelope Chain Wallet Black", - "_tags": [ - "1588201" - ], - "objectID": "1588201", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "ysl", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "saint-laurent-shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "designer-deals", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "little-luxuries-sale-2024", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "saint-laurent-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "national-handbag-day-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "saint-laurent-envelope-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "instagram-live-shopping", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "saint-laurent-clutches-evening-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "top-designers", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "clutch-evening", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "crossbody-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "saint-laurent-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "wallet-style", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "saint-laurent-bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "iconic-leathers", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "cross-body", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "saint-laurent-wallet-style", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "year-end-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "saint-laurent-crossbody-bags", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic SAINT LAURENT Grain De Poudre Matelasse Chevron Monogram Envelope Chain Wallet in Black. This wallet on a chain is crafted of finely pebbled chevron-quilted leather in black. It features a removable waist-length gold chain shoulder strap with a shoulder pad and a gold classic YSL emblem on the flap. This opens to a black leather interior with card slots, a zipper compartment, and pockets.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Saint Laurent", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Black", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1588201", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "SAINT LAURENT Grain De Poudre Matelasse Chevron Monogram Envelope Chain Wallet Black", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Chanel", + "product_name": "Lambskin Quilted Top Handle Flap Coin Purse With Chain Dark Pink", + "condition": "Shows Wear", + "discounted_price": 120, + "price": 2290, + "id": 10746585678127 }, { - "best_value": 1515, - "categories": [ - "Zip Top", - "Coated Canvas", - "Handbags", - "Shoulder Bags", - "Monogram", - "Styles", - "Browns", - "Beige", - "Structured", - "Over 50% off Retail", - "Gifts for Her", - "Gucci", - "Live Shopping with FASHIONPHILE" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoulder-bags-on-sale", - "gucci-shoulder-bags", - "gucci-bags-on-sale", - "bags-under-1000", - "gucci", - "gucci-bags", - "bags-on-sale", - "gucci-gg-supreme-monogram", - "instagram-live-shopping", - "gucci-monogram", - "gifts-for-her", - "50-off-retail", - "zip-top", - "gucci-gg-supreme-monogram-bags", - "handbag-styles", - "gucci-on-sale", - "shoulder-bags", - "handbags" - ], - "description": "This is an authentic GUCCI GG Supreme Monogram Textured Dollar Calfskin Medium Detail Tote in Beige, Eboy, and New Acero. This stylish tote is crafted of Gucci GG monogram coated canvas in brown. The bag features dark brown leather shoulder straps and trim. The top zipper opens to a red fabric interior with a zipper pocket and card slots.", - "discounted_price": 1135, - "discounted_tier": 1, - "filters": { - "bags": [ - "Handbags", - "Shoulder Bags" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Gucci" - ], - "color": [ - "Browns", - "Beige" - ], - "material": [ - "Coated Canvas" - ], - "bag_feature": [ - "Zip Top", - "Structured" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$1000-$2000", - "condition": [ - "Excellent" - ], - "locations": [ - "New York" - ] - }, - "following_count": 41, - "id": 1588366, - "made_available_at": 1740430375, - "price": 1195, - "priced_at": 1743019212, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/1d665a7c270fdac5e161a1cfaeffe3a5.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/1d665a7c270fdac5e161a1cfaeffe3a5.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/1d665a7c270fdac5e161a1cfaeffe3a5.jpg" - }, - { - "order": 3, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/a26f5d1810efbaa542176e2cb2e9e0b7.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/a26f5d1810efbaa542176e2cb2e9e0b7.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/a26f5d1810efbaa542176e2cb2e9e0b7.jpg" - } - ], - "title": "GUCCI GG Supreme Monogram Textured Dollar Calfskin Medium Detail Tote Beige Ebony New Acero", - "title_without_brand": "GG Supreme Monogram Textured Dollar Calfskin Medium Detail Tote Beige Ebony New Acero", - "_tags": [ - "1588366" - ], - "objectID": "1588366", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-gg-supreme-monogram", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "instagram-live-shopping", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-monogram", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gifts-for-her", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "50-off-retail", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "zip-top", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-gg-supreme-monogram-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic GUCCI GG Supreme Monogram Textured Dollar Calfskin Medium Detail Tote in Beige, Eboy, and New Acero. This stylish tote is crafted of Gucci GG monogram coated canvas in brown. The bag features dark brown leather shoulder straps and trim. The top zipper opens to a red fabric interior with a zipper pocket and card slots.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Gucci", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Browns", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Beige", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Coated Canvas", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1588366", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "GUCCI GG Supreme Monogram Textured Dollar Calfskin Medium Detail Tote Beige Ebony New Acero", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Gucci", + "product_name": "Acetate GG Cat Eye Sunglasses GG0809S Pink", + "condition": "Excellent", + "discounted_price": 15, + "price": 325, + "id": 10746585514287 }, { - "best_value": 1515, - "categories": [ - "Zip Top", - "Coated Canvas", - "Handbags", - "Shoulder Bags", - "Monogram", - "Styles", - "Browns", - "Beige", - "Structured", - "Over 50% off Retail", - "Gifts for Her", - "Gucci", - "Live Shopping with FASHIONPHILE" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoulder-bags-on-sale", - "gucci-shoulder-bags", - "gucci-bags-on-sale", - "bags-under-1000", - "gucci", - "gucci-bags", - "bags-on-sale", - "gucci-gg-supreme-monogram", - "instagram-live-shopping", - "gucci-monogram", - "gifts-for-her", - "50-off-retail", - "zip-top", - "gucci-gg-supreme-monogram-bags", - "handbag-styles", - "gucci-on-sale", - "shoulder-bags", - "handbags" - ], - "description": "This is an authentic GUCCI GG Supreme Monogram Textured Dollar Calfskin Medium Detail Tote in Beige, Eboy, and New Acero. This stylish tote is crafted of Gucci GG monogram coated canvas in brown. The bag features dark brown leather shoulder straps and trim. The top zipper opens to a red fabric interior with a zipper pocket and card slots.", - "discounted_price": 1135, - "discounted_tier": 1, - "filters": { - "bags": [ - "Handbags", - "Shoulder Bags" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Gucci" - ], - "color": [ - "Browns", - "Beige" - ], - "material": [ - "Coated Canvas" - ], - "bag_feature": [ - "Zip Top", - "Structured" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$1000-$2000", - "condition": [ - "Excellent" - ], - "locations": [ - "New York" - ] - }, - "following_count": 41, - "id": 1588366, - "made_available_at": 1740430375, - "price": 1195, - "priced_at": 1743019212, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/1d665a7c270fdac5e161a1cfaeffe3a5.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/1d665a7c270fdac5e161a1cfaeffe3a5.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/1d665a7c270fdac5e161a1cfaeffe3a5.jpg" - }, - { - "order": 3, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/a26f5d1810efbaa542176e2cb2e9e0b7.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/a26f5d1810efbaa542176e2cb2e9e0b7.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/a26f5d1810efbaa542176e2cb2e9e0b7.jpg" - } - ], - "title": "GUCCI GG Supreme Monogram Textured Dollar Calfskin Medium Detail Tote Beige Ebony New Acero", - "title_without_brand": "GG Supreme Monogram Textured Dollar Calfskin Medium Detail Tote Beige Ebony New Acero", - "_tags": [ - "1588366" - ], - "objectID": "1588366", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-gg-supreme-monogram", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "instagram-live-shopping", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-monogram", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gifts-for-her", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "50-off-retail", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "zip-top", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-gg-supreme-monogram-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic GUCCI GG Supreme Monogram Textured Dollar Calfskin Medium Detail Tote in Beige, Eboy, and New Acero. This stylish tote is crafted of Gucci GG monogram coated canvas in brown. The bag features dark brown leather shoulder straps and trim. The top zipper opens to a red fabric interior with a zipper pocket and card slots.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Gucci", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Browns", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Beige", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Coated Canvas", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1588366", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "GUCCI GG Supreme Monogram Textured Dollar Calfskin Medium Detail Tote Beige Ebony New Acero", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Chanel", + "product_name": "Lambskin Chevron Quilted Zip Around Wallet Black", + "condition": "Shows Wear", + "discounted_price": 40, + "price": 750, + "id": 10746585448751 }, { - "best_value": 1515, - "categories": [ - "Zip Top", - "Coated Canvas", - "Handbags", - "Shoulder Bags", - "Monogram", - "Styles", - "Browns", - "Beige", - "Structured", - "Over 50% off Retail", - "Gifts for Her", - "Gucci", - "Live Shopping with FASHIONPHILE" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoulder-bags-on-sale", - "gucci-shoulder-bags", - "gucci-bags-on-sale", - "bags-under-1000", - "gucci", - "gucci-bags", - "bags-on-sale", - "gucci-gg-supreme-monogram", - "instagram-live-shopping", - "gucci-monogram", - "gifts-for-her", - "50-off-retail", - "zip-top", - "gucci-gg-supreme-monogram-bags", - "handbag-styles", - "gucci-on-sale", - "shoulder-bags", - "handbags" - ], - "description": "This is an authentic GUCCI GG Supreme Monogram Textured Dollar Calfskin Medium Detail Tote in Beige, Eboy, and New Acero. This stylish tote is crafted of Gucci GG monogram coated canvas in brown. The bag features dark brown leather shoulder straps and trim. The top zipper opens to a red fabric interior with a zipper pocket and card slots.", - "discounted_price": 1135, - "discounted_tier": 1, - "filters": { - "bags": [ - "Handbags", - "Shoulder Bags" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Gucci" - ], - "color": [ - "Browns", - "Beige" - ], - "material": [ - "Coated Canvas" - ], - "bag_feature": [ - "Zip Top", - "Structured" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$1000-$2000", - "condition": [ - "Excellent" - ], - "locations": [ - "New York" - ] - }, - "following_count": 41, - "id": 1588366, - "made_available_at": 1740430375, - "price": 1195, - "priced_at": 1743019212, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/1d665a7c270fdac5e161a1cfaeffe3a5.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/1d665a7c270fdac5e161a1cfaeffe3a5.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/1d665a7c270fdac5e161a1cfaeffe3a5.jpg" - }, - { - "order": 3, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/a26f5d1810efbaa542176e2cb2e9e0b7.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/a26f5d1810efbaa542176e2cb2e9e0b7.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/a26f5d1810efbaa542176e2cb2e9e0b7.jpg" - } - ], - "title": "GUCCI GG Supreme Monogram Textured Dollar Calfskin Medium Detail Tote Beige Ebony New Acero", - "title_without_brand": "GG Supreme Monogram Textured Dollar Calfskin Medium Detail Tote Beige Ebony New Acero", - "_tags": [ - "1588366" - ], - "objectID": "1588366", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-gg-supreme-monogram", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "instagram-live-shopping", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-monogram", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gifts-for-her", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "50-off-retail", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "zip-top", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-gg-supreme-monogram-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic GUCCI GG Supreme Monogram Textured Dollar Calfskin Medium Detail Tote in Beige, Eboy, and New Acero. This stylish tote is crafted of Gucci GG monogram coated canvas in brown. The bag features dark brown leather shoulder straps and trim. The top zipper opens to a red fabric interior with a zipper pocket and card slots.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Gucci", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Browns", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Beige", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Coated Canvas", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1588366", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "GUCCI GG Supreme Monogram Textured Dollar Calfskin Medium Detail Tote Beige Ebony New Acero", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Louis Vuitton", + "product_name": "Damier Ebene Neverfull MM GM Pochette", + "condition": "Shows Wear", + "discounted_price": 30, + "price": 575, + "id": 10746585415983 }, { - "best_value": 545, - "categories": [ - "Wallets", - "Beige", - "Leather", - "Solid Color", - "Empreinte", - "Monogram", - "Accessories", - "General", - "Womens", - "Friends & Family Event", - "Top Designers", - "Louis Vuitton", - "Over 50% off Retail" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "empreinte", - "louis-vuitton-on-sale", - "louis-vuitton-wallets", - "louis-vuitton-monogram", - "louis-vuitton", - "wallets-on-sale", - "top-designers", - "50-off-retail", - "accessories-on-sale", - "friends-and-family-event", - "wallets", - "accessories" - ], - "description": "This is an authentic LOUIS VUITTON Empreinte Sarah Wallet NM Tourterelle. This Louis Vuitton is crafted in monogram embossed leather in taupe. The wallet has an envelope style flap that opens to an interior of matching leather with card slots, patch pockets, and a central zippered compartment.", - "discounted_price": 405, - "discounted_tier": 1, - "filters": { - "bags": [], - "jewelry": [], - "accessories": [ - "Wallets" - ], - "watches": [], - "shoes": [], - "brands": [ - "Louis Vuitton" - ], - "color": [ - "Beige" - ], - "material": [ - "Leather", - "Solid Color" - ], - "bag_feature": [], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$200-$500", - "condition": [ - "Shows Wear" - ], - "locations": [ - "New York" - ] - }, - "following_count": 2, - "id": 1588410, - "made_available_at": 1740433058, - "price": 425, - "priced_at": 1743023879, - "thumbnails": [ - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/65ddac660fd1b19b601a3f535f7c1886.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/65ddac660fd1b19b601a3f535f7c1886.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/65ddac660fd1b19b601a3f535f7c1886.jpg" - }, - { - "order": 4, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/46b33301472c3a7e0b503ca90ff9799d.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/46b33301472c3a7e0b503ca90ff9799d.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/46b33301472c3a7e0b503ca90ff9799d.jpg" - } - ], - "title": "LOUIS VUITTON Empreinte Sarah Wallet NM Tourterelle", - "title_without_brand": "Empreinte Sarah Wallet NM Tourterelle", - "_tags": [ - "1588410" - ], - "objectID": "1588410", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "empreinte", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-wallets", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-monogram", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "wallets-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "top-designers", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "50-off-retail", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "friends-and-family-event", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "wallets", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic LOUIS VUITTON Empreinte Sarah Wallet NM Tourterelle. This Louis Vuitton is crafted in monogram embossed leather in taupe. The wallet has an envelope style flap that opens to an interior of matching leather with card slots, patch pockets, and a central zippered compartment.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Louis Vuitton", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Beige", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1588410", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "LOUIS VUITTON Empreinte Sarah Wallet NM Tourterelle", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Chanel", + "product_name": "Nylon Suede Calfskin CC Sneakers 39.5 White Dark Grey", + "condition": "Shows Wear", + "discounted_price": 35, + "price": 680, + "id": 10546927960367 }, { - "best_value": 545, - "categories": [ - "Wallets", - "Beige", - "Leather", - "Solid Color", - "Empreinte", - "Monogram", - "Accessories", - "General", - "Womens", - "Friends & Family Event", - "Top Designers", - "Louis Vuitton", - "Over 50% off Retail" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "empreinte", - "louis-vuitton-on-sale", - "louis-vuitton-wallets", - "louis-vuitton-monogram", - "louis-vuitton", - "wallets-on-sale", - "top-designers", - "50-off-retail", - "accessories-on-sale", - "friends-and-family-event", - "wallets", - "accessories" - ], - "description": "This is an authentic LOUIS VUITTON Empreinte Sarah Wallet NM Tourterelle. This Louis Vuitton is crafted in monogram embossed leather in taupe. The wallet has an envelope style flap that opens to an interior of matching leather with card slots, patch pockets, and a central zippered compartment.", - "discounted_price": 405, - "discounted_tier": 1, - "filters": { - "bags": [], - "jewelry": [], - "accessories": [ - "Wallets" - ], - "watches": [], - "shoes": [], - "brands": [ - "Louis Vuitton" - ], - "color": [ - "Beige" - ], - "material": [ - "Leather", - "Solid Color" - ], - "bag_feature": [], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$200-$500", - "condition": [ - "Shows Wear" - ], - "locations": [ - "New York" - ] - }, - "following_count": 2, - "id": 1588410, - "made_available_at": 1740433058, - "price": 425, - "priced_at": 1743023879, - "thumbnails": [ - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/65ddac660fd1b19b601a3f535f7c1886.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/65ddac660fd1b19b601a3f535f7c1886.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/65ddac660fd1b19b601a3f535f7c1886.jpg" - }, - { - "order": 4, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/46b33301472c3a7e0b503ca90ff9799d.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/46b33301472c3a7e0b503ca90ff9799d.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/46b33301472c3a7e0b503ca90ff9799d.jpg" - } - ], - "title": "LOUIS VUITTON Empreinte Sarah Wallet NM Tourterelle", - "title_without_brand": "Empreinte Sarah Wallet NM Tourterelle", - "_tags": [ - "1588410" - ], - "objectID": "1588410", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "empreinte", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-wallets", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-monogram", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "wallets-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "top-designers", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "50-off-retail", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "friends-and-family-event", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "wallets", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic LOUIS VUITTON Empreinte Sarah Wallet NM Tourterelle. This Louis Vuitton is crafted in monogram embossed leather in taupe. The wallet has an envelope style flap that opens to an interior of matching leather with card slots, patch pockets, and a central zippered compartment.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Louis Vuitton", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Beige", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1588410", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "LOUIS VUITTON Empreinte Sarah Wallet NM Tourterelle", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Louis Vuitton", + "product_name": "Monogram Metis 20mm Adjustable Strap", + "condition": "Excellent", + "discounted_price": 25, + "price": 495, + "id": 10746585252143 }, { - "best_value": 545, - "categories": [ - "Wallets", - "Beige", - "Leather", - "Solid Color", - "Empreinte", - "Monogram", - "Accessories", - "General", - "Womens", - "Friends & Family Event", - "Top Designers", - "Louis Vuitton", - "Over 50% off Retail" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "empreinte", - "louis-vuitton-on-sale", - "louis-vuitton-wallets", - "louis-vuitton-monogram", - "louis-vuitton", - "wallets-on-sale", - "top-designers", - "50-off-retail", - "accessories-on-sale", - "friends-and-family-event", - "wallets", - "accessories" - ], - "description": "This is an authentic LOUIS VUITTON Empreinte Sarah Wallet NM Tourterelle. This Louis Vuitton is crafted in monogram embossed leather in taupe. The wallet has an envelope style flap that opens to an interior of matching leather with card slots, patch pockets, and a central zippered compartment.", - "discounted_price": 405, - "discounted_tier": 1, - "filters": { - "bags": [], - "jewelry": [], - "accessories": [ - "Wallets" - ], - "watches": [], - "shoes": [], - "brands": [ - "Louis Vuitton" - ], - "color": [ - "Beige" - ], - "material": [ - "Leather", - "Solid Color" - ], - "bag_feature": [], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$200-$500", - "condition": [ - "Shows Wear" - ], - "locations": [ - "New York" - ] - }, - "following_count": 2, - "id": 1588410, - "made_available_at": 1740433058, - "price": 425, - "priced_at": 1743023879, - "thumbnails": [ - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/65ddac660fd1b19b601a3f535f7c1886.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/65ddac660fd1b19b601a3f535f7c1886.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/65ddac660fd1b19b601a3f535f7c1886.jpg" - }, - { - "order": 4, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/46b33301472c3a7e0b503ca90ff9799d.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/46b33301472c3a7e0b503ca90ff9799d.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/46b33301472c3a7e0b503ca90ff9799d.jpg" - } - ], - "title": "LOUIS VUITTON Empreinte Sarah Wallet NM Tourterelle", - "title_without_brand": "Empreinte Sarah Wallet NM Tourterelle", - "_tags": [ - "1588410" - ], - "objectID": "1588410", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "empreinte", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-wallets", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-monogram", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "wallets-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "top-designers", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "50-off-retail", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "friends-and-family-event", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "wallets", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic LOUIS VUITTON Empreinte Sarah Wallet NM Tourterelle. This Louis Vuitton is crafted in monogram embossed leather in taupe. The wallet has an envelope style flap that opens to an interior of matching leather with card slots, patch pockets, and a central zippered compartment.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Louis Vuitton", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Beige", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1588410", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "LOUIS VUITTON Empreinte Sarah Wallet NM Tourterelle", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Louis Vuitton", + "product_name": "Damier Ebene Speedy Bandouliere 30", + "condition": "Excellent", + "discounted_price": 95, + "price": 1790, + "id": 10746585219375 }, { - "best_value": 0, - "categories": [ - "Open Top", - "Structured", - "Top Handles", - "Leather", - "Solid Color", - "Handbags", - "Totes", - "Clemence", - "Picotin", - "Styles", - "Black", - "Womens", - "Hermes" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "hermes-picotin-bags", - "bags-under-1000", - "bags-on-sale", - "hermes-totes", - "totes-on-sale", - "top-handles", - "totes", - "picotin", - "hermes", - "clemence", - "handbag-styles", - "handbags", - "hermes-on-sale", - "hermes-bags" - ], - "description": "This is an authentic HERMES Taurillon Clemence Picotin Lock 18 PM in Black. This chic tote is crafted of soft taurillon clemence calfskin leather in black with gold plated hardware. The handbag features leather top handles and open top that leads to a spacious matching suede interior", - "discounted_price": 4840, - "discounted_tier": 1, - "filters": { - "bags": [ - "Handbags", - "Totes" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Hermes" - ], - "color": [ - "Black" - ], - "material": [ - "Leather", - "Solid Color" - ], - "bag_feature": [ - "Open Top", - "Structured", - "Top Handles" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "Over $2000", - "condition": [ - "Excellent" - ], - "locations": [ - "New York" - ] - }, - "following_count": 42, - "id": 1588880, - "made_available_at": 1740433063, - "price": 5095, - "priced_at": 1743023879, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/f80663e05c8e9efe45ec7b72fdbcb769.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/f80663e05c8e9efe45ec7b72fdbcb769.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/f80663e05c8e9efe45ec7b72fdbcb769.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/2384878aa37d4bb3f0bd03fbbd5a88f0.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/2384878aa37d4bb3f0bd03fbbd5a88f0.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/2384878aa37d4bb3f0bd03fbbd5a88f0.jpg" - } - ], - "title": "HERMES Taurillon Clemence Picotin Lock 18 PM Black", - "title_without_brand": "Taurillon Clemence Picotin Lock 18 PM Black", - "_tags": [ - "1588880" - ], - "objectID": "1588880", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-picotin-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-totes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "totes-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "top-handles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "totes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "picotin", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "clemence", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-bags", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic HERMES Taurillon Clemence Picotin Lock 18 PM in Black. This chic tote is crafted of soft taurillon clemence calfskin leather in black with gold plated hardware. The handbag features leather top handles and open top that leads to a spacious matching suede interior", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Hermes", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Black", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1588880", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "HERMES Taurillon Clemence Picotin Lock 18 PM Black", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Louis Vuitton", + "product_name": "Monogram Carryall MM", + "condition": "Excellent", + "discounted_price": 115, + "price": 2190, + "id": 10746585121071 }, { - "best_value": 0, - "categories": [ - "Open Top", - "Structured", - "Top Handles", - "Leather", - "Solid Color", - "Handbags", - "Totes", - "Clemence", - "Picotin", - "Styles", - "Black", - "Womens", - "Hermes" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "hermes-picotin-bags", - "bags-under-1000", - "bags-on-sale", - "hermes-totes", - "totes-on-sale", - "top-handles", - "totes", - "picotin", - "hermes", - "clemence", - "handbag-styles", - "handbags", - "hermes-on-sale", - "hermes-bags" - ], - "description": "This is an authentic HERMES Taurillon Clemence Picotin Lock 18 PM in Black. This chic tote is crafted of soft taurillon clemence calfskin leather in black with gold plated hardware. The handbag features leather top handles and open top that leads to a spacious matching suede interior", - "discounted_price": 4840, - "discounted_tier": 1, - "filters": { - "bags": [ - "Handbags", - "Totes" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Hermes" - ], - "color": [ - "Black" - ], - "material": [ - "Leather", - "Solid Color" - ], - "bag_feature": [ - "Open Top", - "Structured", - "Top Handles" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "Over $2000", - "condition": [ - "Excellent" - ], - "locations": [ - "New York" - ] - }, - "following_count": 42, - "id": 1588880, - "made_available_at": 1740433063, - "price": 5095, - "priced_at": 1743023879, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/f80663e05c8e9efe45ec7b72fdbcb769.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/f80663e05c8e9efe45ec7b72fdbcb769.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/f80663e05c8e9efe45ec7b72fdbcb769.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/2384878aa37d4bb3f0bd03fbbd5a88f0.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/2384878aa37d4bb3f0bd03fbbd5a88f0.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/2384878aa37d4bb3f0bd03fbbd5a88f0.jpg" - } - ], - "title": "HERMES Taurillon Clemence Picotin Lock 18 PM Black", - "title_without_brand": "Taurillon Clemence Picotin Lock 18 PM Black", - "_tags": [ - "1588880" - ], - "objectID": "1588880", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-picotin-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-totes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "totes-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "top-handles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "totes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "picotin", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "clemence", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-bags", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic HERMES Taurillon Clemence Picotin Lock 18 PM in Black. This chic tote is crafted of soft taurillon clemence calfskin leather in black with gold plated hardware. The handbag features leather top handles and open top that leads to a spacious matching suede interior", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Hermes", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Black", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1588880", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "HERMES Taurillon Clemence Picotin Lock 18 PM Black", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Goyard", + "product_name": "Goyardine Reversible Mini Anjou Green", + "condition": "Shows Wear", + "discounted_price": 130, + "price": 2445, + "id": 10746584891695 }, { - "best_value": 0, - "categories": [ - "Open Top", - "Structured", - "Top Handles", - "Leather", - "Solid Color", - "Handbags", - "Totes", - "Clemence", - "Picotin", - "Styles", - "Black", - "Womens", - "Hermes" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "hermes-picotin-bags", - "bags-under-1000", - "bags-on-sale", - "hermes-totes", - "totes-on-sale", - "top-handles", - "totes", - "picotin", - "hermes", - "clemence", - "handbag-styles", - "handbags", - "hermes-on-sale", - "hermes-bags" - ], - "description": "This is an authentic HERMES Taurillon Clemence Picotin Lock 18 PM in Black. This chic tote is crafted of soft taurillon clemence calfskin leather in black with gold plated hardware. The handbag features leather top handles and open top that leads to a spacious matching suede interior", - "discounted_price": 4840, - "discounted_tier": 1, - "filters": { - "bags": [ - "Handbags", - "Totes" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Hermes" - ], - "color": [ - "Black" - ], - "material": [ - "Leather", - "Solid Color" - ], - "bag_feature": [ - "Open Top", - "Structured", - "Top Handles" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "Over $2000", - "condition": [ - "Excellent" - ], - "locations": [ - "New York" - ] - }, - "following_count": 42, - "id": 1588880, - "made_available_at": 1740433063, - "price": 5095, - "priced_at": 1743023879, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/f80663e05c8e9efe45ec7b72fdbcb769.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/f80663e05c8e9efe45ec7b72fdbcb769.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/f80663e05c8e9efe45ec7b72fdbcb769.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/2384878aa37d4bb3f0bd03fbbd5a88f0.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/2384878aa37d4bb3f0bd03fbbd5a88f0.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/2384878aa37d4bb3f0bd03fbbd5a88f0.jpg" - } - ], - "title": "HERMES Taurillon Clemence Picotin Lock 18 PM Black", - "title_without_brand": "Taurillon Clemence Picotin Lock 18 PM Black", - "_tags": [ - "1588880" - ], - "objectID": "1588880", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-picotin-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-totes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "totes-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "top-handles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "totes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "picotin", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "clemence", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-bags", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic HERMES Taurillon Clemence Picotin Lock 18 PM in Black. This chic tote is crafted of soft taurillon clemence calfskin leather in black with gold plated hardware. The handbag features leather top handles and open top that leads to a spacious matching suede interior", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Hermes", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Black", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1588880", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "HERMES Taurillon Clemence Picotin Lock 18 PM Black", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Loewe", + "product_name": "Calfskin Mini Hammock Shoulder Bag Sand Mink", + "condition": "Shows Wear", + "discounted_price": 80, + "price": 1490, + "id": 10746584858927 }, { - "best_value": 715, - "categories": [ - "Shoes", - "Leather", - "Solid Color", - "Flats", - "Accessories", - "Black", - "General", - "Womens", - "37", - "Hermes" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "hermes-kelly", - "shoes-on-sale", - "hermes", - "hermes-shoes", - "flats-shoes", - "accessories-on-sale", - "shoes", - "accessories", - "hermes-on-sale" - ], - "description": "This is an authentic pair of  HERMES Calfskin Iota Mules size 37 in Black. These stylish mules are crafted of smooth black calfskin leather with a polished palladium Kelly-style faux turn-lock on the vamp.", - "discounted_price": 1185, - "discounted_tier": 1, - "filters": { - "bags": [], - "jewelry": [], - "accessories": [ - "Shoes" - ], - "watches": [], - "shoes": [ - "Flats" - ], - "brands": [ - "Hermes" - ], - "color": [ - "Black" - ], - "material": [ - "Leather", - "Solid Color" - ], - "bag_feature": [], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [ - "37" - ], - "on_sale": [ - "5% Off" - ], - "price": "$1000-$2000", - "condition": [ - "Excellent" - ], - "locations": [ - "New York" - ] - }, - "following_count": 26, - "id": 1588895, - "made_available_at": 1740431094, - "price": 1250, - "priced_at": 1743023858, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/92d83d2aabd47d739111d1a182f06753.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/92d83d2aabd47d739111d1a182f06753.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/92d83d2aabd47d739111d1a182f06753.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/9cfe76fcdf308c41b43e89be908b1be8.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/9cfe76fcdf308c41b43e89be908b1be8.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/9cfe76fcdf308c41b43e89be908b1be8.jpg" - } - ], - "title": "HERMES Calfskin Iota Mules 37 Black", - "title_without_brand": "Calfskin Iota Mules 37 Black", - "_tags": [ - "1588895" - ], - "objectID": "1588895", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-kelly", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoes-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-shoes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "flats-shoes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-on-sale", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic pair of  HERMES Calfskin Iota Mules size 37 in Black. These stylish mules are crafted of smooth black calfskin leather with a polished palladium Kelly-style faux turn-lock on the vamp.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Hermes", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Black", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1588895", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "HERMES Calfskin Iota Mules 37 Black", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Chanel", + "product_name": "Lambskin Quilted Camera Bag Black", + "condition": "Excellent", + "discounted_price": 175, + "price": 3285, + "id": 10746584793391 }, { - "best_value": 715, - "categories": [ - "Shoes", - "Leather", - "Solid Color", - "Flats", - "Accessories", - "Black", - "General", - "Womens", - "37", - "Hermes" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "hermes-kelly", - "shoes-on-sale", - "hermes", - "hermes-shoes", - "flats-shoes", - "accessories-on-sale", - "shoes", - "accessories", - "hermes-on-sale" - ], - "description": "This is an authentic pair of  HERMES Calfskin Iota Mules size 37 in Black. These stylish mules are crafted of smooth black calfskin leather with a polished palladium Kelly-style faux turn-lock on the vamp.", - "discounted_price": 1185, - "discounted_tier": 1, - "filters": { - "bags": [], - "jewelry": [], - "accessories": [ - "Shoes" - ], - "watches": [], - "shoes": [ - "Flats" - ], - "brands": [ - "Hermes" - ], - "color": [ - "Black" - ], - "material": [ - "Leather", - "Solid Color" - ], - "bag_feature": [], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [ - "37" - ], - "on_sale": [ - "5% Off" - ], - "price": "$1000-$2000", - "condition": [ - "Excellent" - ], - "locations": [ - "New York" - ] - }, - "following_count": 26, - "id": 1588895, - "made_available_at": 1740431094, - "price": 1250, - "priced_at": 1743023858, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/92d83d2aabd47d739111d1a182f06753.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/92d83d2aabd47d739111d1a182f06753.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/92d83d2aabd47d739111d1a182f06753.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/9cfe76fcdf308c41b43e89be908b1be8.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/9cfe76fcdf308c41b43e89be908b1be8.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/9cfe76fcdf308c41b43e89be908b1be8.jpg" - } - ], - "title": "HERMES Calfskin Iota Mules 37 Black", - "title_without_brand": "Calfskin Iota Mules 37 Black", - "_tags": [ - "1588895" - ], - "objectID": "1588895", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-kelly", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoes-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-shoes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "flats-shoes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-on-sale", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic pair of  HERMES Calfskin Iota Mules size 37 in Black. These stylish mules are crafted of smooth black calfskin leather with a polished palladium Kelly-style faux turn-lock on the vamp.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Hermes", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Black", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1588895", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "HERMES Calfskin Iota Mules 37 Black", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Loewe", + "product_name": "Calfskin Small Puzzle Bag Tan", + "condition": "Shows Wear", + "discounted_price": 135, + "price": 2590, + "id": 10746584564015 }, { - "best_value": 715, - "categories": [ - "Shoes", - "Leather", - "Solid Color", - "Flats", - "Accessories", - "Black", - "General", - "Womens", - "37", - "Hermes" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "hermes-kelly", - "shoes-on-sale", - "hermes", - "hermes-shoes", - "flats-shoes", - "accessories-on-sale", - "shoes", - "accessories", - "hermes-on-sale" - ], - "description": "This is an authentic pair of  HERMES Calfskin Iota Mules size 37 in Black. These stylish mules are crafted of smooth black calfskin leather with a polished palladium Kelly-style faux turn-lock on the vamp.", - "discounted_price": 1185, - "discounted_tier": 1, - "filters": { - "bags": [], - "jewelry": [], - "accessories": [ - "Shoes" - ], - "watches": [], - "shoes": [ - "Flats" - ], - "brands": [ - "Hermes" - ], - "color": [ - "Black" - ], - "material": [ - "Leather", - "Solid Color" - ], - "bag_feature": [], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [ - "37" - ], - "on_sale": [ - "5% Off" - ], - "price": "$1000-$2000", - "condition": [ - "Excellent" - ], - "locations": [ - "New York" - ] - }, - "following_count": 26, - "id": 1588895, - "made_available_at": 1740431094, - "price": 1250, - "priced_at": 1743023858, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/92d83d2aabd47d739111d1a182f06753.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/92d83d2aabd47d739111d1a182f06753.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/92d83d2aabd47d739111d1a182f06753.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/9cfe76fcdf308c41b43e89be908b1be8.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/9cfe76fcdf308c41b43e89be908b1be8.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/9cfe76fcdf308c41b43e89be908b1be8.jpg" - } - ], - "title": "HERMES Calfskin Iota Mules 37 Black", - "title_without_brand": "Calfskin Iota Mules 37 Black", - "_tags": [ - "1588895" - ], - "objectID": "1588895", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-kelly", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoes-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-shoes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "flats-shoes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hermes-on-sale", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic pair of  HERMES Calfskin Iota Mules size 37 in Black. These stylish mules are crafted of smooth black calfskin leather with a polished palladium Kelly-style faux turn-lock on the vamp.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Hermes", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Black", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1588895", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "HERMES Calfskin Iota Mules 37 Black", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Goyard", + "product_name": "Goyardine Vendome Toiletry Pouch Yellow", + "condition": "Excellent", + "discounted_price": 65, + "price": 1190, + "id": 10746584465711 }, { - "best_value": 0, - "categories": [ - "Shoes", - "Gold", - "Fabrics", - "Pumps", - "Accessories", - "Silver", - "40", - "Christian Louboutin" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoes-on-sale", - "gold", - "christian-louboutin-shoes", - "pumps-shoes", - "accessories-on-sale", - "louboutin", - "shoes", - "accessories" - ], - "description": "This is an authentic pair of CHRISTIAN LOUBOUTINLeopard 130 Pumps size 40. These stylish pumps have 4 inch stiletto and are crafted of calfskin leather and leopard fur print at the toe.", - "discounted_price": 330, - "discounted_tier": 1, - "filters": { - "bags": [], - "jewelry": [], - "accessories": [ - "Shoes" - ], - "watches": [], - "shoes": [ - "Pumps" - ], - "brands": [ - "Christian Louboutin" - ], - "color": [ - "Gold", - "Silver" - ], - "material": [ - "Fabrics" - ], - "bag_feature": [], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [ - "40" - ], - "on_sale": [ - "5% Off" - ], - "price": "$200-$500", - "condition": [ - "Shows Wear" - ], - "locations": [ - "New York" - ] - }, - "following_count": 19, - "id": 1589034, - "made_available_at": 1740431111, - "price": 350, - "priced_at": 1743023859, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/82b0092076ea995ede9081d9adfb16a9.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/82b0092076ea995ede9081d9adfb16a9.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/82b0092076ea995ede9081d9adfb16a9.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/7db92c08d997fe5309f13ba893c59a93.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/7db92c08d997fe5309f13ba893c59a93.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/7db92c08d997fe5309f13ba893c59a93.jpg" - } - ], - "title": "CHRISTIAN LOUBOUTIN Leopard 130 Pumps 40", - "title_without_brand": "Leopard 130 Pumps 40", - "_tags": [ - "1589034" - ], - "objectID": "1589034", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoes-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gold", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "christian-louboutin-shoes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "pumps-shoes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louboutin", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic pair of CHRISTIAN LOUBOUTINLeopard 130 Pumps size 40. These stylish pumps have 4 inch stiletto and are crafted of calfskin leather and leopard fur print at the toe.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Christian Louboutin", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Gold", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Silver", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Fabrics", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1589034", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "CHRISTIAN LOUBOUTIN Leopard 130 Pumps 40", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Prada", + "product_name": "Saffiano Flap Shoulder Bag White", + "condition": "Excellent", + "discounted_price": 75, + "price": 1450, + "id": 10746584301871 }, { - "best_value": 0, - "categories": [ - "Shoes", - "Gold", - "Fabrics", - "Pumps", - "Accessories", - "Silver", - "40", - "Christian Louboutin" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoes-on-sale", - "gold", - "christian-louboutin-shoes", - "pumps-shoes", - "accessories-on-sale", - "louboutin", - "shoes", - "accessories" - ], - "description": "This is an authentic pair of CHRISTIAN LOUBOUTINLeopard 130 Pumps size 40. These stylish pumps have 4 inch stiletto and are crafted of calfskin leather and leopard fur print at the toe.", - "discounted_price": 330, - "discounted_tier": 1, - "filters": { - "bags": [], - "jewelry": [], - "accessories": [ - "Shoes" - ], - "watches": [], - "shoes": [ - "Pumps" - ], - "brands": [ - "Christian Louboutin" - ], - "color": [ - "Gold", - "Silver" - ], - "material": [ - "Fabrics" - ], - "bag_feature": [], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [ - "40" - ], - "on_sale": [ - "5% Off" - ], - "price": "$200-$500", - "condition": [ - "Shows Wear" - ], - "locations": [ - "New York" - ] - }, - "following_count": 19, - "id": 1589034, - "made_available_at": 1740431111, - "price": 350, - "priced_at": 1743023859, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/82b0092076ea995ede9081d9adfb16a9.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/82b0092076ea995ede9081d9adfb16a9.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/82b0092076ea995ede9081d9adfb16a9.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/7db92c08d997fe5309f13ba893c59a93.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/7db92c08d997fe5309f13ba893c59a93.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/7db92c08d997fe5309f13ba893c59a93.jpg" - } - ], - "title": "CHRISTIAN LOUBOUTIN Leopard 130 Pumps 40", - "title_without_brand": "Leopard 130 Pumps 40", - "_tags": [ - "1589034" - ], - "objectID": "1589034", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoes-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gold", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "christian-louboutin-shoes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "pumps-shoes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louboutin", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic pair of CHRISTIAN LOUBOUTINLeopard 130 Pumps size 40. These stylish pumps have 4 inch stiletto and are crafted of calfskin leather and leopard fur print at the toe.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Christian Louboutin", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Gold", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Silver", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Fabrics", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1589034", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "CHRISTIAN LOUBOUTIN Leopard 130 Pumps 40", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Bottega Veneta", + "product_name": "Nappa Maxi Intrecciato The Pouch Oversized Clutch Ice Cream", + "condition": "Excellent", + "discounted_price": 125, + "price": 2345, + "id": 10746584138031 }, { - "best_value": 0, - "categories": [ - "Shoes", - "Gold", - "Fabrics", - "Pumps", - "Accessories", - "Silver", - "40", - "Christian Louboutin" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoes-on-sale", - "gold", - "christian-louboutin-shoes", - "pumps-shoes", - "accessories-on-sale", - "louboutin", - "shoes", - "accessories" - ], - "description": "This is an authentic pair of CHRISTIAN LOUBOUTINLeopard 130 Pumps size 40. These stylish pumps have 4 inch stiletto and are crafted of calfskin leather and leopard fur print at the toe.", - "discounted_price": 330, - "discounted_tier": 1, - "filters": { - "bags": [], - "jewelry": [], - "accessories": [ - "Shoes" - ], - "watches": [], - "shoes": [ - "Pumps" - ], - "brands": [ - "Christian Louboutin" - ], - "color": [ - "Gold", - "Silver" - ], - "material": [ - "Fabrics" - ], - "bag_feature": [], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [ - "40" - ], - "on_sale": [ - "5% Off" - ], - "price": "$200-$500", - "condition": [ - "Shows Wear" - ], - "locations": [ - "New York" - ] - }, - "following_count": 19, - "id": 1589034, - "made_available_at": 1740431111, - "price": 350, - "priced_at": 1743023859, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/82b0092076ea995ede9081d9adfb16a9.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/82b0092076ea995ede9081d9adfb16a9.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/82b0092076ea995ede9081d9adfb16a9.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/7db92c08d997fe5309f13ba893c59a93.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/7db92c08d997fe5309f13ba893c59a93.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/7db92c08d997fe5309f13ba893c59a93.jpg" - } - ], - "title": "CHRISTIAN LOUBOUTIN Leopard 130 Pumps 40", - "title_without_brand": "Leopard 130 Pumps 40", - "_tags": [ - "1589034" - ], - "objectID": "1589034", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoes-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gold", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "christian-louboutin-shoes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "pumps-shoes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louboutin", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic pair of CHRISTIAN LOUBOUTINLeopard 130 Pumps size 40. These stylish pumps have 4 inch stiletto and are crafted of calfskin leather and leopard fur print at the toe.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Christian Louboutin", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Gold", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Silver", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Fabrics", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1589034", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "CHRISTIAN LOUBOUTIN Leopard 130 Pumps 40", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Louis Vuitton", + "product_name": "Monogram Pochette Metis", + "condition": "Worn", + "discounted_price": 80, + "price": 1470, + "id": 10746584105263 }, { - "best_value": 695, - "categories": [ - "Top Handles", - "Zip Top", - "Leather", - "Handbags", - "Travel & Luggage", - "Guccissima", - "Styles", - "Gifts for Him", - "Grays", - "Gucci", - "Live Shopping with FASHIONPHILE" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "gucci-bags-on-sale", - "bags-under-1000", - "gucci", - "gucci-bags", - "travel-luggage", - "guccissima", - "bags-on-sale", - "instagram-live-shopping", - "top-handles", - "gifts-for-him", - "gucci-travel-luggage", - "zip-top", - "handbag-styles", - "gucci-on-sale", - "handbags" - ], - "description": "This is an authentic GUCCI Calfskin GG Tennis Embossed Duffle Bag in New Shamarock. This chic duffle bag is crafted of fine Gucci GG monogram embossed leather. The bag features very attractive leather top handles with silver links and an optional leather shoulder strap with silver clasps. The top zipper opens to a spacious tonal interior.", - "discounted_price": 1895, - "discounted_tier": 1, - "filters": { - "bags": [ - "Handbags", - "Travel & Luggage" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Gucci" - ], - "color": [ - "Grays" - ], - "material": [ - "Leather" - ], - "bag_feature": [ - "Top Handles", - "Zip Top" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$1000-$2000", - "condition": [ - "Excellent" - ], - "locations": [ - "New York" - ] - }, - "following_count": 44, - "id": 1589226, - "made_available_at": 1740430460, - "price": 1995, - "priced_at": 1743019213, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/b3ed38892ee22a537c2eca05a65b5158.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/b3ed38892ee22a537c2eca05a65b5158.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/b3ed38892ee22a537c2eca05a65b5158.jpg" - }, - { - "order": 3, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/a448798a53e9d8b1b650b3d9e3e4649c.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/a448798a53e9d8b1b650b3d9e3e4649c.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/a448798a53e9d8b1b650b3d9e3e4649c.jpg" - } - ], - "title": "GUCCI Calfskin GG Tennis Embossed Duffle Bag Grey", - "title_without_brand": "Calfskin GG Tennis Embossed Duffle Bag Grey", - "_tags": [ - "1589226" - ], - "objectID": "1589226", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "travel-luggage", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "guccissima", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "instagram-live-shopping", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "top-handles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gifts-for-him", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-travel-luggage", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "zip-top", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic GUCCI Calfskin GG Tennis Embossed Duffle Bag in New Shamarock. This chic duffle bag is crafted of fine Gucci GG monogram embossed leather. The bag features very attractive leather top handles with silver links and an optional leather shoulder strap with silver clasps. The top zipper opens to a spacious tonal interior.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Gucci", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Grays", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1589226", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "GUCCI Calfskin GG Tennis Embossed Duffle Bag Grey", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Louis Vuitton", + "product_name": "Monogram Jungle Dots Palm Springs Backpack PM Coquelicot Denim", + "condition": "Shows Wear", + "discounted_price": 70, + "price": 1350, + "id": 10746583974191 }, { - "best_value": 695, - "categories": [ - "Top Handles", - "Zip Top", - "Leather", - "Handbags", - "Travel & Luggage", - "Guccissima", - "Styles", - "Gifts for Him", - "Grays", - "Gucci", - "Live Shopping with FASHIONPHILE" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "gucci-bags-on-sale", - "bags-under-1000", - "gucci", - "gucci-bags", - "travel-luggage", - "guccissima", - "bags-on-sale", - "instagram-live-shopping", - "top-handles", - "gifts-for-him", - "gucci-travel-luggage", - "zip-top", - "handbag-styles", - "gucci-on-sale", - "handbags" - ], - "description": "This is an authentic GUCCI Calfskin GG Tennis Embossed Duffle Bag in New Shamarock. This chic duffle bag is crafted of fine Gucci GG monogram embossed leather. The bag features very attractive leather top handles with silver links and an optional leather shoulder strap with silver clasps. The top zipper opens to a spacious tonal interior.", - "discounted_price": 1895, - "discounted_tier": 1, - "filters": { - "bags": [ - "Handbags", - "Travel & Luggage" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Gucci" - ], - "color": [ - "Grays" - ], - "material": [ - "Leather" - ], - "bag_feature": [ - "Top Handles", - "Zip Top" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$1000-$2000", - "condition": [ - "Excellent" - ], - "locations": [ - "New York" - ] - }, - "following_count": 44, - "id": 1589226, - "made_available_at": 1740430460, - "price": 1995, - "priced_at": 1743019213, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/b3ed38892ee22a537c2eca05a65b5158.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/b3ed38892ee22a537c2eca05a65b5158.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/b3ed38892ee22a537c2eca05a65b5158.jpg" - }, - { - "order": 3, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/a448798a53e9d8b1b650b3d9e3e4649c.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/a448798a53e9d8b1b650b3d9e3e4649c.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/a448798a53e9d8b1b650b3d9e3e4649c.jpg" - } - ], - "title": "GUCCI Calfskin GG Tennis Embossed Duffle Bag Grey", - "title_without_brand": "Calfskin GG Tennis Embossed Duffle Bag Grey", - "_tags": [ - "1589226" - ], - "objectID": "1589226", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "travel-luggage", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "guccissima", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "instagram-live-shopping", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "top-handles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gifts-for-him", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-travel-luggage", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "zip-top", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic GUCCI Calfskin GG Tennis Embossed Duffle Bag in New Shamarock. This chic duffle bag is crafted of fine Gucci GG monogram embossed leather. The bag features very attractive leather top handles with silver links and an optional leather shoulder strap with silver clasps. The top zipper opens to a spacious tonal interior.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Gucci", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Grays", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1589226", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "GUCCI Calfskin GG Tennis Embossed Duffle Bag Grey", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Louis Vuitton", + "product_name": "Monogram Pochette Marelle PM", + "condition": "Shows Wear", + "discounted_price": 45, + "price": 850, + "id": 10746583941423 }, { - "best_value": 695, - "categories": [ - "Top Handles", - "Zip Top", - "Leather", - "Handbags", - "Travel & Luggage", - "Guccissima", - "Styles", - "Gifts for Him", - "Grays", - "Gucci", - "Live Shopping with FASHIONPHILE" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "gucci-bags-on-sale", - "bags-under-1000", - "gucci", - "gucci-bags", - "travel-luggage", - "guccissima", - "bags-on-sale", - "instagram-live-shopping", - "top-handles", - "gifts-for-him", - "gucci-travel-luggage", - "zip-top", - "handbag-styles", - "gucci-on-sale", - "handbags" - ], - "description": "This is an authentic GUCCI Calfskin GG Tennis Embossed Duffle Bag in New Shamarock. This chic duffle bag is crafted of fine Gucci GG monogram embossed leather. The bag features very attractive leather top handles with silver links and an optional leather shoulder strap with silver clasps. The top zipper opens to a spacious tonal interior.", - "discounted_price": 1895, - "discounted_tier": 1, - "filters": { - "bags": [ - "Handbags", - "Travel & Luggage" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Gucci" - ], - "color": [ - "Grays" - ], - "material": [ - "Leather" - ], - "bag_feature": [ - "Top Handles", - "Zip Top" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$1000-$2000", - "condition": [ - "Excellent" - ], - "locations": [ - "New York" - ] - }, - "following_count": 44, - "id": 1589226, - "made_available_at": 1740430460, - "price": 1995, - "priced_at": 1743019213, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/b3ed38892ee22a537c2eca05a65b5158.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/b3ed38892ee22a537c2eca05a65b5158.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/b3ed38892ee22a537c2eca05a65b5158.jpg" - }, - { - "order": 3, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/a448798a53e9d8b1b650b3d9e3e4649c.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/a448798a53e9d8b1b650b3d9e3e4649c.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/a448798a53e9d8b1b650b3d9e3e4649c.jpg" - } - ], - "title": "GUCCI Calfskin GG Tennis Embossed Duffle Bag Grey", - "title_without_brand": "Calfskin GG Tennis Embossed Duffle Bag Grey", - "_tags": [ - "1589226" - ], - "objectID": "1589226", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "travel-luggage", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "guccissima", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "instagram-live-shopping", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "top-handles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gifts-for-him", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-travel-luggage", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "zip-top", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic GUCCI Calfskin GG Tennis Embossed Duffle Bag in New Shamarock. This chic duffle bag is crafted of fine Gucci GG monogram embossed leather. The bag features very attractive leather top handles with silver links and an optional leather shoulder strap with silver clasps. The top zipper opens to a spacious tonal interior.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Gucci", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Grays", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1589226", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "GUCCI Calfskin GG Tennis Embossed Duffle Bag Grey", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Christian Dior", + "product_name": "Canvas Embroidered Dway Mules Slide Sandals 35 Deep Blue", + "condition": "Giftable", + "discounted_price": 40, + "price": 795, + "id": 10746583089455 }, { - "best_value": 0, - "categories": [ - "Womens", - "Leather", - "Solid Color", - "Crossbody", - "Handbags", - "Shoulder Bags", - "General", - "Styles", - "Beige", - "Hot Picks Sale", - "Weekend Getaway", - "Gucci", - "Live Shopping with FASHIONPHILE" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoulder-bags-on-sale", - "gucci-shoulder-bags", - "gucci-crossbody-bags", - "gucci-bags-on-sale", - "bags-under-1000", - "gucci", - "gucci-bags", - "bags-on-sale", - "instagram-live-shopping", - "weekend-getaway", - "crossbody-bags-on-sale", - "handbag-styles", - "gucci-on-sale", - "shoulder-bags", - "handbags", - "cross-body" - ], - "description": "This is an authentic GUCCI Calfskin GG Matelasse Medium Duffle Bag in Naturale. This shoulder bag is crafted of calfskin leather in beige. This bag features leather top handles, leather shoulder strap, s fabric shoulder strap, and gold hardware. The top zipper opens to a beige fabric interior with a zipper pocket.", - "discounted_price": 1610, - "discounted_tier": 1, - "filters": { - "bags": [ - "Crossbody", - "Handbags", - "Shoulder Bags" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Gucci" - ], - "color": [ - "Beige" - ], - "material": [ - "Leather", - "Solid Color" - ], - "bag_feature": [], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$1000-$2000", - "condition": [ - "Excellent" - ], - "locations": [ - "New York" - ] - }, - "following_count": 30, - "id": 1589229, - "made_available_at": 1740430472, - "price": 1695, - "priced_at": 1743019213, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/6bbcc0cba22d5e9f154b35d4da689cf3.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/6bbcc0cba22d5e9f154b35d4da689cf3.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/6bbcc0cba22d5e9f154b35d4da689cf3.jpg" - }, - { - "order": 3, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/362e8092eabefe790bb09a0c65db51e0.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/362e8092eabefe790bb09a0c65db51e0.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/362e8092eabefe790bb09a0c65db51e0.jpg" - } - ], - "title": "GUCCI Calfskin GG Matelasse Medium Duffle Bag Naturale", - "title_without_brand": "Calfskin GG Matelasse Medium Duffle Bag Naturale", - "_tags": [ - "1589229" - ], - "objectID": "1589229", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-crossbody-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "instagram-live-shopping", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "weekend-getaway", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "crossbody-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "cross-body", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic GUCCI Calfskin GG Matelasse Medium Duffle Bag in Naturale. This shoulder bag is crafted of calfskin leather in beige. This bag features leather top handles, leather shoulder strap, s fabric shoulder strap, and gold hardware. The top zipper opens to a beige fabric interior with a zipper pocket.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Gucci", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Beige", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1589229", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "GUCCI Calfskin GG Matelasse Medium Duffle Bag Naturale", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Hermes", + "product_name": "Enamel Narrow Clic Clac H Bracelet PM Black", + "condition": "Worn", + "discounted_price": 15, + "price": 325, + "id": 10746583056687 }, { - "best_value": 0, - "categories": [ - "Womens", - "Leather", - "Solid Color", - "Crossbody", - "Handbags", - "Shoulder Bags", - "General", - "Styles", - "Beige", - "Hot Picks Sale", - "Weekend Getaway", - "Gucci", - "Live Shopping with FASHIONPHILE" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoulder-bags-on-sale", - "gucci-shoulder-bags", - "gucci-crossbody-bags", - "gucci-bags-on-sale", - "bags-under-1000", - "gucci", - "gucci-bags", - "bags-on-sale", - "instagram-live-shopping", - "weekend-getaway", - "crossbody-bags-on-sale", - "handbag-styles", - "gucci-on-sale", - "shoulder-bags", - "handbags", - "cross-body" - ], - "description": "This is an authentic GUCCI Calfskin GG Matelasse Medium Duffle Bag in Naturale. This shoulder bag is crafted of calfskin leather in beige. This bag features leather top handles, leather shoulder strap, s fabric shoulder strap, and gold hardware. The top zipper opens to a beige fabric interior with a zipper pocket.", - "discounted_price": 1610, - "discounted_tier": 1, - "filters": { - "bags": [ - "Crossbody", - "Handbags", - "Shoulder Bags" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Gucci" - ], - "color": [ - "Beige" - ], - "material": [ - "Leather", - "Solid Color" - ], - "bag_feature": [], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$1000-$2000", - "condition": [ - "Excellent" - ], - "locations": [ - "New York" - ] - }, - "following_count": 30, - "id": 1589229, - "made_available_at": 1740430472, - "price": 1695, - "priced_at": 1743019213, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/6bbcc0cba22d5e9f154b35d4da689cf3.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/6bbcc0cba22d5e9f154b35d4da689cf3.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/6bbcc0cba22d5e9f154b35d4da689cf3.jpg" - }, - { - "order": 3, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/362e8092eabefe790bb09a0c65db51e0.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/362e8092eabefe790bb09a0c65db51e0.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/362e8092eabefe790bb09a0c65db51e0.jpg" - } - ], - "title": "GUCCI Calfskin GG Matelasse Medium Duffle Bag Naturale", - "title_without_brand": "Calfskin GG Matelasse Medium Duffle Bag Naturale", - "_tags": [ - "1589229" - ], - "objectID": "1589229", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-crossbody-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "instagram-live-shopping", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "weekend-getaway", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "crossbody-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "cross-body", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic GUCCI Calfskin GG Matelasse Medium Duffle Bag in Naturale. This shoulder bag is crafted of calfskin leather in beige. This bag features leather top handles, leather shoulder strap, s fabric shoulder strap, and gold hardware. The top zipper opens to a beige fabric interior with a zipper pocket.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Gucci", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Beige", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1589229", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "GUCCI Calfskin GG Matelasse Medium Duffle Bag Naturale", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Chanel", + "product_name": "Denim Embossed Small Boy Flap Blue", + "condition": "Shows Wear", + "discounted_price": 180, + "price": 3385, + "id": 10746582860079 }, { - "best_value": 0, - "categories": [ - "Womens", - "Leather", - "Solid Color", - "Crossbody", - "Handbags", - "Shoulder Bags", - "General", - "Styles", - "Beige", - "Hot Picks Sale", - "Weekend Getaway", - "Gucci", - "Live Shopping with FASHIONPHILE" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoulder-bags-on-sale", - "gucci-shoulder-bags", - "gucci-crossbody-bags", - "gucci-bags-on-sale", - "bags-under-1000", - "gucci", - "gucci-bags", - "bags-on-sale", - "instagram-live-shopping", - "weekend-getaway", - "crossbody-bags-on-sale", - "handbag-styles", - "gucci-on-sale", - "shoulder-bags", - "handbags", - "cross-body" - ], - "description": "This is an authentic GUCCI Calfskin GG Matelasse Medium Duffle Bag in Naturale. This shoulder bag is crafted of calfskin leather in beige. This bag features leather top handles, leather shoulder strap, s fabric shoulder strap, and gold hardware. The top zipper opens to a beige fabric interior with a zipper pocket.", - "discounted_price": 1610, - "discounted_tier": 1, - "filters": { - "bags": [ - "Crossbody", - "Handbags", - "Shoulder Bags" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Gucci" - ], - "color": [ - "Beige" - ], - "material": [ - "Leather", - "Solid Color" - ], - "bag_feature": [], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$1000-$2000", - "condition": [ - "Excellent" - ], - "locations": [ - "New York" - ] - }, - "following_count": 30, - "id": 1589229, - "made_available_at": 1740430472, - "price": 1695, - "priced_at": 1743019213, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/6bbcc0cba22d5e9f154b35d4da689cf3.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/6bbcc0cba22d5e9f154b35d4da689cf3.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/6bbcc0cba22d5e9f154b35d4da689cf3.jpg" - }, - { - "order": 3, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/362e8092eabefe790bb09a0c65db51e0.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/362e8092eabefe790bb09a0c65db51e0.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/362e8092eabefe790bb09a0c65db51e0.jpg" - } - ], - "title": "GUCCI Calfskin GG Matelasse Medium Duffle Bag Naturale", - "title_without_brand": "Calfskin GG Matelasse Medium Duffle Bag Naturale", - "_tags": [ - "1589229" - ], - "objectID": "1589229", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-crossbody-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "instagram-live-shopping", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "weekend-getaway", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "crossbody-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "cross-body", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic GUCCI Calfskin GG Matelasse Medium Duffle Bag in Naturale. This shoulder bag is crafted of calfskin leather in beige. This bag features leather top handles, leather shoulder strap, s fabric shoulder strap, and gold hardware. The top zipper opens to a beige fabric interior with a zipper pocket.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Gucci", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Beige", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1589229", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "GUCCI Calfskin GG Matelasse Medium Duffle Bag Naturale", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Chanel", + "product_name": "Velvet Calfskin Mixed Fibers CC Sneakers 38 White Gray Yellow", + "condition": "Shows Wear", + "discounted_price": 50, + "price": 965, + "id": 10656436420911 }, { - "best_value": 0, - "categories": [ - "Browns", - "Zip Top", - "Womens", - "Coated Canvas", - "Belt Bags", - "Handbags", - "Bumbag", - "Monogram", - "General", - "Styles", - "Father's Day Gifts", - "Top Designers", - "Louis Vuitton" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "under-1000-belt-bags", - "bags-under-1000", - "louis-vuitton-monogram-bags", - "bags-on-sale", - "belt-bags", - "louis-vuitton-on-sale", - "belt-bags-on-sale", - "louis-vuitton-monogram", - "louis-vuitton", - "louis-vuitton-belt-bags", - "top-designers", - "zip-top", - "louis-vuitton-bags", - "handbag-styles", - "fathers-day-gift-guide", - "louis-vuitton-bumbag", - "bumbag", - "handbags" - ], - "description": "This is an authentic LOUIS VUITTON Monogram Bumbag. This stylish belt bag is crafted out of traditional Louis Vuitton monogram on toile canvas. The bag features a vachetta cowhide leather top handle, an adjustable waist strap, and a rear zipper pocket. The main zipper opens to a black fabric interior.", - "discounted_price": 2325, - "discounted_tier": 1, - "filters": { - "bags": [ - "Belt Bags", - "Handbags" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Louis Vuitton" - ], - "color": [ - "Browns" - ], - "material": [ - "Coated Canvas" - ], - "bag_feature": [ - "Zip Top" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "Over $2000", - "condition": [ - "Shows Wear" - ], - "locations": [ - "New York" - ] - }, - "following_count": 34, - "id": 1589288, - "made_available_at": 1740433073, - "price": 2450, - "priced_at": 1743023881, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/76d33d069b08a255583fb2cf5e09f169.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/76d33d069b08a255583fb2cf5e09f169.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/76d33d069b08a255583fb2cf5e09f169.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/291055812974c80cd3d7a4def292c29d.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/291055812974c80cd3d7a4def292c29d.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/291055812974c80cd3d7a4def292c29d.jpg" - } - ], - "title": "LOUIS VUITTON Monogram Bumbag", - "title_without_brand": "Monogram Bumbag", - "_tags": [ - "1589288" - ], - "objectID": "1589288", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "under-1000-belt-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-monogram-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "belt-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "belt-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-monogram", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-belt-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "top-designers", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "zip-top", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "fathers-day-gift-guide", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-bumbag", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bumbag", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic LOUIS VUITTON Monogram Bumbag. This stylish belt bag is crafted out of traditional Louis Vuitton monogram on toile canvas. The bag features a vachetta cowhide leather top handle, an adjustable waist strap, and a rear zipper pocket. The main zipper opens to a black fabric interior.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Louis Vuitton", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Browns", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Coated Canvas", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1589288", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "LOUIS VUITTON Monogram Bumbag", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Chanel", + "product_name": "Suede Calfskin Nylon Grosgrain CC Sneakers 38 Light Blue", + "condition": "Shows Wear", + "discounted_price": 40, + "price": 725, + "id": 10689487733039 }, { - "best_value": 0, - "categories": [ - "Browns", - "Zip Top", - "Womens", - "Coated Canvas", - "Belt Bags", - "Handbags", - "Bumbag", - "Monogram", - "General", - "Styles", - "Father's Day Gifts", - "Top Designers", - "Louis Vuitton" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "under-1000-belt-bags", - "bags-under-1000", - "louis-vuitton-monogram-bags", - "bags-on-sale", - "belt-bags", - "louis-vuitton-on-sale", - "belt-bags-on-sale", - "louis-vuitton-monogram", - "louis-vuitton", - "louis-vuitton-belt-bags", - "top-designers", - "zip-top", - "louis-vuitton-bags", - "handbag-styles", - "fathers-day-gift-guide", - "louis-vuitton-bumbag", - "bumbag", - "handbags" - ], - "description": "This is an authentic LOUIS VUITTON Monogram Bumbag. This stylish belt bag is crafted out of traditional Louis Vuitton monogram on toile canvas. The bag features a vachetta cowhide leather top handle, an adjustable waist strap, and a rear zipper pocket. The main zipper opens to a black fabric interior.", - "discounted_price": 2325, - "discounted_tier": 1, - "filters": { - "bags": [ - "Belt Bags", - "Handbags" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Louis Vuitton" - ], - "color": [ - "Browns" - ], - "material": [ - "Coated Canvas" - ], - "bag_feature": [ - "Zip Top" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "Over $2000", - "condition": [ - "Shows Wear" - ], - "locations": [ - "New York" - ] - }, - "following_count": 34, - "id": 1589288, - "made_available_at": 1740433073, - "price": 2450, - "priced_at": 1743023881, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/76d33d069b08a255583fb2cf5e09f169.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/76d33d069b08a255583fb2cf5e09f169.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/76d33d069b08a255583fb2cf5e09f169.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/291055812974c80cd3d7a4def292c29d.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/291055812974c80cd3d7a4def292c29d.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/291055812974c80cd3d7a4def292c29d.jpg" - } - ], - "title": "LOUIS VUITTON Monogram Bumbag", - "title_without_brand": "Monogram Bumbag", - "_tags": [ - "1589288" - ], - "objectID": "1589288", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "under-1000-belt-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-monogram-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "belt-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "belt-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-monogram", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-belt-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "top-designers", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "zip-top", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "fathers-day-gift-guide", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-bumbag", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bumbag", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic LOUIS VUITTON Monogram Bumbag. This stylish belt bag is crafted out of traditional Louis Vuitton monogram on toile canvas. The bag features a vachetta cowhide leather top handle, an adjustable waist strap, and a rear zipper pocket. The main zipper opens to a black fabric interior.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Louis Vuitton", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Browns", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Coated Canvas", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1589288", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "LOUIS VUITTON Monogram Bumbag", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Prada", + "product_name": "Nappa Antique Rosette Flower Mini Tote Bag Black", + "condition": "Shows Wear", + "discounted_price": 85, + "price": 1590, + "id": 10746582040879 }, { - "best_value": 0, - "categories": [ - "Browns", - "Zip Top", - "Womens", - "Coated Canvas", - "Belt Bags", - "Handbags", - "Bumbag", - "Monogram", - "General", - "Styles", - "Father's Day Gifts", - "Top Designers", - "Louis Vuitton" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "under-1000-belt-bags", - "bags-under-1000", - "louis-vuitton-monogram-bags", - "bags-on-sale", - "belt-bags", - "louis-vuitton-on-sale", - "belt-bags-on-sale", - "louis-vuitton-monogram", - "louis-vuitton", - "louis-vuitton-belt-bags", - "top-designers", - "zip-top", - "louis-vuitton-bags", - "handbag-styles", - "fathers-day-gift-guide", - "louis-vuitton-bumbag", - "bumbag", - "handbags" - ], - "description": "This is an authentic LOUIS VUITTON Monogram Bumbag. This stylish belt bag is crafted out of traditional Louis Vuitton monogram on toile canvas. The bag features a vachetta cowhide leather top handle, an adjustable waist strap, and a rear zipper pocket. The main zipper opens to a black fabric interior.", - "discounted_price": 2325, - "discounted_tier": 1, - "filters": { - "bags": [ - "Belt Bags", - "Handbags" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Louis Vuitton" - ], - "color": [ - "Browns" - ], - "material": [ - "Coated Canvas" - ], - "bag_feature": [ - "Zip Top" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "Over $2000", - "condition": [ - "Shows Wear" - ], - "locations": [ - "New York" - ] - }, - "following_count": 34, - "id": 1589288, - "made_available_at": 1740433073, - "price": 2450, - "priced_at": 1743023881, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/76d33d069b08a255583fb2cf5e09f169.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/76d33d069b08a255583fb2cf5e09f169.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/76d33d069b08a255583fb2cf5e09f169.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/291055812974c80cd3d7a4def292c29d.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/291055812974c80cd3d7a4def292c29d.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/291055812974c80cd3d7a4def292c29d.jpg" - } - ], - "title": "LOUIS VUITTON Monogram Bumbag", - "title_without_brand": "Monogram Bumbag", - "_tags": [ - "1589288" - ], - "objectID": "1589288", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "under-1000-belt-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-monogram-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "belt-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "belt-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-monogram", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-belt-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "top-designers", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "zip-top", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "fathers-day-gift-guide", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-bumbag", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bumbag", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic LOUIS VUITTON Monogram Bumbag. This stylish belt bag is crafted out of traditional Louis Vuitton monogram on toile canvas. The bag features a vachetta cowhide leather top handle, an adjustable waist strap, and a rear zipper pocket. The main zipper opens to a black fabric interior.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Louis Vuitton", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Browns", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Coated Canvas", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1589288", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "LOUIS VUITTON Monogram Bumbag", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Louis Vuitton", + "product_name": "Empreinte Gloria Loafers 37 Black", + "condition": "Shows Wear", + "discounted_price": 25, + "price": 495, + "id": 10746582008111 }, { - "best_value": 1030, - "categories": [ - "Shoes", - "Leather", - "Solid Color", - "Boots & Booties", - "Accessories", - "Whites", - "General", - "Womens", - "41", - "Valentino Garavani", - "Over 50% off Retail" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoes-on-sale", - "boots-booties", - "50-off-retail", - "accessories-on-sale", - "valentino-garavani", - "shoes", - "accessories" - ], - "description": "This is an authentic pair of VALENTINO GARAVANI Calfskin One Stud Beatle 45mm Boots size 41 in Light Ivory. These chic ankle boots are crafted of smooth calfskin leather in light ivory with elastic side panels and black rubber soles. They feature a rounded toe and a removable ankle strap with a signature Valentino pyramid stud.", - "discounted_price": 660, - "discounted_tier": 1, - "filters": { - "bags": [], - "jewelry": [], - "accessories": [ - "Shoes" - ], - "watches": [], - "shoes": [ - "Boots & Booties" - ], - "brands": [ - "Valentino Garavani" - ], - "color": [ - "Whites" - ], - "material": [ - "Leather", - "Solid Color" - ], - "bag_feature": [], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [ - "41" - ], - "on_sale": [ - "5% Off" - ], - "price": "$500-$1000", - "condition": [ - "Excellent" - ], - "locations": [ - "New York" - ] - }, - "following_count": 11, - "id": 1589359, - "made_available_at": 1740431469, - "price": 695, - "priced_at": 1743023864, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/2b7ab37c53e108bc0dab4e19dd3bc9d7.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/2b7ab37c53e108bc0dab4e19dd3bc9d7.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/2b7ab37c53e108bc0dab4e19dd3bc9d7.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/a585905310763726dc41d15b8ed65671.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/a585905310763726dc41d15b8ed65671.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/a585905310763726dc41d15b8ed65671.jpg" - } - ], - "title": "VALENTINO GARAVANI Calfskin One Stud Beatle 45mm Boots 41 Light Ivory", - "title_without_brand": "Calfskin One Stud Beatle 45mm Boots 41 Light Ivory", - "_tags": [ - "1589359" - ], - "objectID": "1589359", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoes-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "boots-booties", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "50-off-retail", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "valentino-garavani", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic pair of VALENTINO GARAVANI Calfskin One Stud Beatle 45mm Boots size 41 in Light Ivory. These chic ankle boots are crafted of smooth calfskin leather in light ivory with elastic side panels and black rubber soles. They feature a rounded toe and a removable ankle strap with a signature Valentino pyramid stud.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Valentino Garavani", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Whites", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1589359", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "VALENTINO GARAVANI Calfskin One Stud Beatle 45mm Boots 41 Light Ivory", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Valentino Garavani", + "product_name": "Sequin Fringed Vlogo Slingback Pumps 37 Black", + "condition": "Shows Wear", + "discounted_price": 25, + "price": 495, + "id": 10746581975343 }, { - "best_value": 1030, - "categories": [ - "Shoes", - "Leather", - "Solid Color", - "Boots & Booties", - "Accessories", - "Whites", - "General", - "Womens", - "41", - "Valentino Garavani", - "Over 50% off Retail" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoes-on-sale", - "boots-booties", - "50-off-retail", - "accessories-on-sale", - "valentino-garavani", - "shoes", - "accessories" - ], - "description": "This is an authentic pair of VALENTINO GARAVANI Calfskin One Stud Beatle 45mm Boots size 41 in Light Ivory. These chic ankle boots are crafted of smooth calfskin leather in light ivory with elastic side panels and black rubber soles. They feature a rounded toe and a removable ankle strap with a signature Valentino pyramid stud.", - "discounted_price": 660, - "discounted_tier": 1, - "filters": { - "bags": [], - "jewelry": [], - "accessories": [ - "Shoes" - ], - "watches": [], - "shoes": [ - "Boots & Booties" - ], - "brands": [ - "Valentino Garavani" - ], - "color": [ - "Whites" - ], - "material": [ - "Leather", - "Solid Color" - ], - "bag_feature": [], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [ - "41" - ], - "on_sale": [ - "5% Off" - ], - "price": "$500-$1000", - "condition": [ - "Excellent" - ], - "locations": [ - "New York" - ] - }, - "following_count": 11, - "id": 1589359, - "made_available_at": 1740431469, - "price": 695, - "priced_at": 1743023864, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/2b7ab37c53e108bc0dab4e19dd3bc9d7.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/2b7ab37c53e108bc0dab4e19dd3bc9d7.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/2b7ab37c53e108bc0dab4e19dd3bc9d7.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/a585905310763726dc41d15b8ed65671.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/a585905310763726dc41d15b8ed65671.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/a585905310763726dc41d15b8ed65671.jpg" - } - ], - "title": "VALENTINO GARAVANI Calfskin One Stud Beatle 45mm Boots 41 Light Ivory", - "title_without_brand": "Calfskin One Stud Beatle 45mm Boots 41 Light Ivory", - "_tags": [ - "1589359" - ], - "objectID": "1589359", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoes-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "boots-booties", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "50-off-retail", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "valentino-garavani", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic pair of VALENTINO GARAVANI Calfskin One Stud Beatle 45mm Boots size 41 in Light Ivory. These chic ankle boots are crafted of smooth calfskin leather in light ivory with elastic side panels and black rubber soles. They feature a rounded toe and a removable ankle strap with a signature Valentino pyramid stud.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Valentino Garavani", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Whites", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1589359", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "VALENTINO GARAVANI Calfskin One Stud Beatle 45mm Boots 41 Light Ivory", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Van Cleef & Arpels", + "product_name": "18K Yellow Gold Black Onyx Sweet Alhambra Earrings", + "condition": "Excellent", + "discounted_price": 140, + "price": 2645, + "id": 10746581582127 }, { - "best_value": 1030, - "categories": [ - "Shoes", - "Leather", - "Solid Color", - "Boots & Booties", - "Accessories", - "Whites", - "General", - "Womens", - "41", - "Valentino Garavani", - "Over 50% off Retail" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoes-on-sale", - "boots-booties", - "50-off-retail", - "accessories-on-sale", - "valentino-garavani", - "shoes", - "accessories" - ], - "description": "This is an authentic pair of VALENTINO GARAVANI Calfskin One Stud Beatle 45mm Boots size 41 in Light Ivory. These chic ankle boots are crafted of smooth calfskin leather in light ivory with elastic side panels and black rubber soles. They feature a rounded toe and a removable ankle strap with a signature Valentino pyramid stud.", - "discounted_price": 660, - "discounted_tier": 1, - "filters": { - "bags": [], - "jewelry": [], - "accessories": [ - "Shoes" - ], - "watches": [], - "shoes": [ - "Boots & Booties" - ], - "brands": [ - "Valentino Garavani" - ], - "color": [ - "Whites" - ], - "material": [ - "Leather", - "Solid Color" - ], - "bag_feature": [], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [ - "41" - ], - "on_sale": [ - "5% Off" - ], - "price": "$500-$1000", - "condition": [ - "Excellent" - ], - "locations": [ - "New York" - ] - }, - "following_count": 11, - "id": 1589359, - "made_available_at": 1740431469, - "price": 695, - "priced_at": 1743023864, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/2b7ab37c53e108bc0dab4e19dd3bc9d7.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/2b7ab37c53e108bc0dab4e19dd3bc9d7.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/2b7ab37c53e108bc0dab4e19dd3bc9d7.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/a585905310763726dc41d15b8ed65671.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/a585905310763726dc41d15b8ed65671.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/a585905310763726dc41d15b8ed65671.jpg" - } - ], - "title": "VALENTINO GARAVANI Calfskin One Stud Beatle 45mm Boots 41 Light Ivory", - "title_without_brand": "Calfskin One Stud Beatle 45mm Boots 41 Light Ivory", - "_tags": [ - "1589359" - ], - "objectID": "1589359", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoes-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "boots-booties", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "50-off-retail", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "valentino-garavani", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic pair of VALENTINO GARAVANI Calfskin One Stud Beatle 45mm Boots size 41 in Light Ivory. These chic ankle boots are crafted of smooth calfskin leather in light ivory with elastic side panels and black rubber soles. They feature a rounded toe and a removable ankle strap with a signature Valentino pyramid stud.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Valentino Garavani", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Whites", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1589359", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "VALENTINO GARAVANI Calfskin One Stud Beatle 45mm Boots 41 Light Ivory", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Louis Vuitton", + "product_name": "Monogram Pochette Accessories NM", + "condition": "Excellent", + "discounted_price": 65, + "price": 1250, + "id": 10746581188911 }, { - "best_value": 830, - "categories": [ - "Browns", - "Top Handles", - "Zip Top", - "Womens", - "Coated Canvas", - "Crossbody", - "Handbags", - "Shoulder Bags", - "Monogram", - "Styles", - "OLD - National Handbag Day", - "Top Designers", - "Louis Vuitton", - "Live Shopping with FASHIONPHILE" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoulder-bags-on-sale", - "bags-under-1000", - "louis-vuitton-shoulder-bags", - "louis-vuitton-monogram-bags", - "bags-on-sale", - "louis-vuitton-crossbody-bags", - "instagram-live-shopping", - "louis-vuitton-on-sale", - "louis-vuitton-monogram", - "louis-vuitton", - "top-handles", - "top-designers", - "crossbody-bags-on-sale", - "zip-top", - "louis-vuitton-bags", - "handbag-styles", - "shoulder-bags", - "handbags", - "cross-body" - ], - "description": "This is an authentic LOUIS VUITTON Monogram Retiro NM in Black. This stylish tote is crafted of classic Louis Vuitton monogram on toile canvas. This stylish handbag features black grained leather accents including sturdy handles, an optional leather shoulder strap, polished brass hardware and decorative trimmed corners. The top wrap around zipper opens to a black microfiber interior with pockets.", - "discounted_price": 1280, - "discounted_tier": 1, - "filters": { - "bags": [ - "Crossbody", - "Handbags", - "Shoulder Bags" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Louis Vuitton" - ], - "color": [ - "Browns" - ], - "material": [ - "Coated Canvas" - ], - "bag_feature": [ - "Top Handles", - "Zip Top" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$1000-$2000", - "condition": [ - "Shows Wear" - ], - "locations": [ - "New York" - ] - }, - "following_count": 27, - "id": 1589379, - "made_available_at": 1740433065, - "price": 1350, - "priced_at": 1743023880, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/712923d1277a23d0c5218757c244f5ba.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/712923d1277a23d0c5218757c244f5ba.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/712923d1277a23d0c5218757c244f5ba.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/77548f59acad459927c411af397f3fa1.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/77548f59acad459927c411af397f3fa1.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/77548f59acad459927c411af397f3fa1.jpg" - } - ], - "title": "LOUIS VUITTON Monogram Retiro NM Black", - "title_without_brand": "Monogram Retiro NM Black", - "_tags": [ - "1589379" - ], - "objectID": "1589379", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-monogram-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-crossbody-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "instagram-live-shopping", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-monogram", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "top-handles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "top-designers", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "crossbody-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "zip-top", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "cross-body", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic LOUIS VUITTON Monogram Retiro NM in Black. This stylish tote is crafted of classic Louis Vuitton monogram on toile canvas. This stylish handbag features black grained leather accents including sturdy handles, an optional leather shoulder strap, polished brass hardware and decorative trimmed corners. The top wrap around zipper opens to a black microfiber interior with pockets.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Louis Vuitton", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Browns", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Coated Canvas", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1589379", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "LOUIS VUITTON Monogram Retiro NM Black", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Gucci", + "product_name": "Pebbled Calfskin Small Soho Disco Bag Black", + "condition": "Shows Wear", + "discounted_price": 60, + "price": 1090, + "id": 10746581123375 }, { - "best_value": 830, - "categories": [ - "Browns", - "Top Handles", - "Zip Top", - "Womens", - "Coated Canvas", - "Crossbody", - "Handbags", - "Shoulder Bags", - "Monogram", - "Styles", - "OLD - National Handbag Day", - "Top Designers", - "Louis Vuitton", - "Live Shopping with FASHIONPHILE" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoulder-bags-on-sale", - "bags-under-1000", - "louis-vuitton-shoulder-bags", - "louis-vuitton-monogram-bags", - "bags-on-sale", - "louis-vuitton-crossbody-bags", - "instagram-live-shopping", - "louis-vuitton-on-sale", - "louis-vuitton-monogram", - "louis-vuitton", - "top-handles", - "top-designers", - "crossbody-bags-on-sale", - "zip-top", - "louis-vuitton-bags", - "handbag-styles", - "shoulder-bags", - "handbags", - "cross-body" - ], - "description": "This is an authentic LOUIS VUITTON Monogram Retiro NM in Black. This stylish tote is crafted of classic Louis Vuitton monogram on toile canvas. This stylish handbag features black grained leather accents including sturdy handles, an optional leather shoulder strap, polished brass hardware and decorative trimmed corners. The top wrap around zipper opens to a black microfiber interior with pockets.", - "discounted_price": 1280, - "discounted_tier": 1, - "filters": { - "bags": [ - "Crossbody", - "Handbags", - "Shoulder Bags" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Louis Vuitton" - ], - "color": [ - "Browns" - ], - "material": [ - "Coated Canvas" - ], - "bag_feature": [ - "Top Handles", - "Zip Top" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$1000-$2000", - "condition": [ - "Shows Wear" - ], - "locations": [ - "New York" - ] - }, - "following_count": 27, - "id": 1589379, - "made_available_at": 1740433065, - "price": 1350, - "priced_at": 1743023880, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/712923d1277a23d0c5218757c244f5ba.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/712923d1277a23d0c5218757c244f5ba.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/712923d1277a23d0c5218757c244f5ba.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/77548f59acad459927c411af397f3fa1.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/77548f59acad459927c411af397f3fa1.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/77548f59acad459927c411af397f3fa1.jpg" - } - ], - "title": "LOUIS VUITTON Monogram Retiro NM Black", - "title_without_brand": "Monogram Retiro NM Black", - "_tags": [ - "1589379" - ], - "objectID": "1589379", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-monogram-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-crossbody-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "instagram-live-shopping", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-monogram", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "top-handles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "top-designers", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "crossbody-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "zip-top", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "cross-body", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic LOUIS VUITTON Monogram Retiro NM in Black. This stylish tote is crafted of classic Louis Vuitton monogram on toile canvas. This stylish handbag features black grained leather accents including sturdy handles, an optional leather shoulder strap, polished brass hardware and decorative trimmed corners. The top wrap around zipper opens to a black microfiber interior with pockets.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Louis Vuitton", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Browns", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Coated Canvas", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1589379", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "LOUIS VUITTON Monogram Retiro NM Black", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Louis Vuitton", + "product_name": "Monogram Zippy Wallet", + "condition": "Shows Wear", + "discounted_price": 25, + "price": 450, + "id": 10746581025071 }, { - "best_value": 830, - "categories": [ - "Browns", - "Top Handles", - "Zip Top", - "Womens", - "Coated Canvas", - "Crossbody", - "Handbags", - "Shoulder Bags", - "Monogram", - "Styles", - "OLD - National Handbag Day", - "Top Designers", - "Louis Vuitton", - "Live Shopping with FASHIONPHILE" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoulder-bags-on-sale", - "bags-under-1000", - "louis-vuitton-shoulder-bags", - "louis-vuitton-monogram-bags", - "bags-on-sale", - "louis-vuitton-crossbody-bags", - "instagram-live-shopping", - "louis-vuitton-on-sale", - "louis-vuitton-monogram", - "louis-vuitton", - "top-handles", - "top-designers", - "crossbody-bags-on-sale", - "zip-top", - "louis-vuitton-bags", - "handbag-styles", - "shoulder-bags", - "handbags", - "cross-body" - ], - "description": "This is an authentic LOUIS VUITTON Monogram Retiro NM in Black. This stylish tote is crafted of classic Louis Vuitton monogram on toile canvas. This stylish handbag features black grained leather accents including sturdy handles, an optional leather shoulder strap, polished brass hardware and decorative trimmed corners. The top wrap around zipper opens to a black microfiber interior with pockets.", - "discounted_price": 1280, - "discounted_tier": 1, - "filters": { - "bags": [ - "Crossbody", - "Handbags", - "Shoulder Bags" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Louis Vuitton" - ], - "color": [ - "Browns" - ], - "material": [ - "Coated Canvas" - ], - "bag_feature": [ - "Top Handles", - "Zip Top" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$1000-$2000", - "condition": [ - "Shows Wear" - ], - "locations": [ - "New York" - ] - }, - "following_count": 27, - "id": 1589379, - "made_available_at": 1740433065, - "price": 1350, - "priced_at": 1743023880, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/712923d1277a23d0c5218757c244f5ba.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/712923d1277a23d0c5218757c244f5ba.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/712923d1277a23d0c5218757c244f5ba.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/77548f59acad459927c411af397f3fa1.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/77548f59acad459927c411af397f3fa1.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/77548f59acad459927c411af397f3fa1.jpg" - } - ], - "title": "LOUIS VUITTON Monogram Retiro NM Black", - "title_without_brand": "Monogram Retiro NM Black", - "_tags": [ - "1589379" - ], - "objectID": "1589379", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-monogram-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-crossbody-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "instagram-live-shopping", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-monogram", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "top-handles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "top-designers", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "crossbody-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "zip-top", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "cross-body", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic LOUIS VUITTON Monogram Retiro NM in Black. This stylish tote is crafted of classic Louis Vuitton monogram on toile canvas. This stylish handbag features black grained leather accents including sturdy handles, an optional leather shoulder strap, polished brass hardware and decorative trimmed corners. The top wrap around zipper opens to a black microfiber interior with pockets.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Louis Vuitton", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Browns", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Coated Canvas", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1589379", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "LOUIS VUITTON Monogram Retiro NM Black", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Chanel", + "product_name": "Patent Quilted Wallet On Chain WOC Blue", + "condition": "Shows Wear", + "discounted_price": 85, + "price": 1650, + "id": 10746580730159 }, { - "best_value": 985, - "categories": [ - "Whites", - "Open Top", - "Coated Canvas", - "Handbags", - "Shoulder Bags", - "Artsy", - "Damier", - "Styles", - "Blues", - "Womens", - "Louis Vuitton", - "Live Shopping with FASHIONPHILE" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoulder-bags-on-sale", - "damier", - "bags-under-1000", - "louis-vuitton-shoulder-bags", - "bags-on-sale", - "instagram-live-shopping", - "louis-vuitton-on-sale", - "hobo-bags", - "artsy", - "louis-vuitton", - "louis-vuitton-damier-azur-bags", - "louis-vuitton-bags", - "handbag-styles", - "shoulder-bags", - "handbags" - ], - "description": "This is an authentic LOUIS VUITTON Damier Azur Artsy MM. This stylish hobo style shoulder bag is crafted of Louis Vuitton signature damier check canvas in azur. This bag features a vachetta cowhide leather looping shoulder strap with polished gold plated loop strap links and bottom feet. The top opens to a spacious ivory microfiber interior with zipper and patch pockets.", - "discounted_price": 1515, - "discounted_tier": 1, - "filters": { - "bags": [ - "Handbags", - "Shoulder Bags" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Louis Vuitton" - ], - "color": [ - "Whites", - "Blues" - ], - "material": [ - "Coated Canvas" - ], - "bag_feature": [ - "Open Top" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$1000-$2000", - "condition": [ - "Shows Wear" - ], - "locations": [ - "New York" - ] - }, - "following_count": 13, - "id": 1589456, - "made_available_at": 1740430548, - "price": 1595, - "priced_at": 1743019215, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/ed7c536beb231c0e1e3e8c9576ccb1e7.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/ed7c536beb231c0e1e3e8c9576ccb1e7.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/ed7c536beb231c0e1e3e8c9576ccb1e7.jpg" - }, - { - "order": 2, - "path": "/thumb/fb0c1a3511cd6aa055a36968f70bcc96/22aa8bb1fa7689f218003dd58e38b065.jpg", - "thumb": "/thumb/fb0c1a3511cd6aa055a36968f70bcc96/22aa8bb1fa7689f218003dd58e38b065.jpg", - "tiny": "/tiny/fb0c1a3511cd6aa055a36968f70bcc96/22aa8bb1fa7689f218003dd58e38b065.jpg" - } - ], - "title": "LOUIS VUITTON Damier Azur Artsy MM", - "title_without_brand": "Damier Azur Artsy MM", - "_tags": [ - "1589456" - ], - "objectID": "1589456", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "damier", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "instagram-live-shopping", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hobo-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "artsy", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-damier-azur-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic LOUIS VUITTON Damier Azur Artsy MM. This stylish hobo style shoulder bag is crafted of Louis Vuitton signature damier check canvas in azur. This bag features a vachetta cowhide leather looping shoulder strap with polished gold plated loop strap links and bottom feet. The top opens to a spacious ivory microfiber interior with zipper and patch pockets.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Louis Vuitton", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Whites", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Blues", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Coated Canvas", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1589456", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "LOUIS VUITTON Damier Azur Artsy MM", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Chanel", + "product_name": "Woven Straw Raffia Medium Deauville Tote Navy", + "condition": "Shows Wear", + "discounted_price": 150, + "price": 2890, + "id": 10746580631855 }, { - "best_value": 985, - "categories": [ - "Whites", - "Open Top", - "Coated Canvas", - "Handbags", - "Shoulder Bags", - "Artsy", - "Damier", - "Styles", - "Blues", - "Womens", - "Louis Vuitton", - "Live Shopping with FASHIONPHILE" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoulder-bags-on-sale", - "damier", - "bags-under-1000", - "louis-vuitton-shoulder-bags", - "bags-on-sale", - "instagram-live-shopping", - "louis-vuitton-on-sale", - "hobo-bags", - "artsy", - "louis-vuitton", - "louis-vuitton-damier-azur-bags", - "louis-vuitton-bags", - "handbag-styles", - "shoulder-bags", - "handbags" - ], - "description": "This is an authentic LOUIS VUITTON Damier Azur Artsy MM. This stylish hobo style shoulder bag is crafted of Louis Vuitton signature damier check canvas in azur. This bag features a vachetta cowhide leather looping shoulder strap with polished gold plated loop strap links and bottom feet. The top opens to a spacious ivory microfiber interior with zipper and patch pockets.", - "discounted_price": 1515, - "discounted_tier": 1, - "filters": { - "bags": [ - "Handbags", - "Shoulder Bags" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Louis Vuitton" - ], - "color": [ - "Whites", - "Blues" - ], - "material": [ - "Coated Canvas" - ], - "bag_feature": [ - "Open Top" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$1000-$2000", - "condition": [ - "Shows Wear" - ], - "locations": [ - "New York" - ] - }, - "following_count": 13, - "id": 1589456, - "made_available_at": 1740430548, - "price": 1595, - "priced_at": 1743019215, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/ed7c536beb231c0e1e3e8c9576ccb1e7.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/ed7c536beb231c0e1e3e8c9576ccb1e7.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/ed7c536beb231c0e1e3e8c9576ccb1e7.jpg" - }, - { - "order": 2, - "path": "/thumb/fb0c1a3511cd6aa055a36968f70bcc96/22aa8bb1fa7689f218003dd58e38b065.jpg", - "thumb": "/thumb/fb0c1a3511cd6aa055a36968f70bcc96/22aa8bb1fa7689f218003dd58e38b065.jpg", - "tiny": "/tiny/fb0c1a3511cd6aa055a36968f70bcc96/22aa8bb1fa7689f218003dd58e38b065.jpg" - } - ], - "title": "LOUIS VUITTON Damier Azur Artsy MM", - "title_without_brand": "Damier Azur Artsy MM", - "_tags": [ - "1589456" - ], - "objectID": "1589456", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "damier", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "instagram-live-shopping", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hobo-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "artsy", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-damier-azur-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic LOUIS VUITTON Damier Azur Artsy MM. This stylish hobo style shoulder bag is crafted of Louis Vuitton signature damier check canvas in azur. This bag features a vachetta cowhide leather looping shoulder strap with polished gold plated loop strap links and bottom feet. The top opens to a spacious ivory microfiber interior with zipper and patch pockets.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Louis Vuitton", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Whites", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Blues", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Coated Canvas", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1589456", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "LOUIS VUITTON Damier Azur Artsy MM", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Burberry", + "product_name": "Derby Calfskin House Check Small Macken Crossbody Bag Tan", + "condition": "Shows Wear", + "discounted_price": 35, + "price": 620, + "id": 10746580468015 }, { - "best_value": 985, - "categories": [ - "Whites", - "Open Top", - "Coated Canvas", - "Handbags", - "Shoulder Bags", - "Artsy", - "Damier", - "Styles", - "Blues", - "Womens", - "Louis Vuitton", - "Live Shopping with FASHIONPHILE" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoulder-bags-on-sale", - "damier", - "bags-under-1000", - "louis-vuitton-shoulder-bags", - "bags-on-sale", - "instagram-live-shopping", - "louis-vuitton-on-sale", - "hobo-bags", - "artsy", - "louis-vuitton", - "louis-vuitton-damier-azur-bags", - "louis-vuitton-bags", - "handbag-styles", - "shoulder-bags", - "handbags" - ], - "description": "This is an authentic LOUIS VUITTON Damier Azur Artsy MM. This stylish hobo style shoulder bag is crafted of Louis Vuitton signature damier check canvas in azur. This bag features a vachetta cowhide leather looping shoulder strap with polished gold plated loop strap links and bottom feet. The top opens to a spacious ivory microfiber interior with zipper and patch pockets.", - "discounted_price": 1515, - "discounted_tier": 1, - "filters": { - "bags": [ - "Handbags", - "Shoulder Bags" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Louis Vuitton" - ], - "color": [ - "Whites", - "Blues" - ], - "material": [ - "Coated Canvas" - ], - "bag_feature": [ - "Open Top" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$1000-$2000", - "condition": [ - "Shows Wear" - ], - "locations": [ - "New York" - ] - }, - "following_count": 13, - "id": 1589456, - "made_available_at": 1740430548, - "price": 1595, - "priced_at": 1743019215, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/ed7c536beb231c0e1e3e8c9576ccb1e7.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/ed7c536beb231c0e1e3e8c9576ccb1e7.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/ed7c536beb231c0e1e3e8c9576ccb1e7.jpg" - }, - { - "order": 2, - "path": "/thumb/fb0c1a3511cd6aa055a36968f70bcc96/22aa8bb1fa7689f218003dd58e38b065.jpg", - "thumb": "/thumb/fb0c1a3511cd6aa055a36968f70bcc96/22aa8bb1fa7689f218003dd58e38b065.jpg", - "tiny": "/tiny/fb0c1a3511cd6aa055a36968f70bcc96/22aa8bb1fa7689f218003dd58e38b065.jpg" - } - ], - "title": "LOUIS VUITTON Damier Azur Artsy MM", - "title_without_brand": "Damier Azur Artsy MM", - "_tags": [ - "1589456" - ], - "objectID": "1589456", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "damier", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "instagram-live-shopping", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "hobo-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "artsy", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-damier-azur-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic LOUIS VUITTON Damier Azur Artsy MM. This stylish hobo style shoulder bag is crafted of Louis Vuitton signature damier check canvas in azur. This bag features a vachetta cowhide leather looping shoulder strap with polished gold plated loop strap links and bottom feet. The top opens to a spacious ivory microfiber interior with zipper and patch pockets.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Louis Vuitton", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Whites", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Blues", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Coated Canvas", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1589456", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "LOUIS VUITTON Damier Azur Artsy MM", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Hermes", + "product_name": "Ostrich Micro Picotin Lock Black", + "condition": "Excellent", + "discounted_price": 485, + "price": 9170, + "id": 10746580402479 }, { - "best_value": 8655, - "categories": [ - "Grays", - "Structured", - "Womens", - "Leather", - "Solid Color", - "Crossbody", - "Handbags", - "Shoulder Bags", - "General", - "Styles", - "Over 50% off Retail", - "Top Designers", - "Chanel" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoulder-bags-on-sale", - "chanel-22-bags", - "chanel-on-sale", - "bags-under-1000", - "chanel-shoulder-bags", - "chanel-255-reissue-bags", - "bags-on-sale", - "chanel", - "top-designers", - "50-off-retail", - "crossbody-bags-on-sale", - "handbag-styles", - "chanel-bags", - "chanel-crossbody-bags", - "shoulder-bags", - "handbags", - "cross-body" - ], - "description": "This is an authentic CHANEL Aged Calfskin Quilted 2.55 Reissue 227 Flap in Grey. This stylish classic flap shoulder bag is crafted of diamond-quilted textured aged calfskin leather in grey. The handbag features an aged silver reissue chain shoulder strap and an aged silver Mademoiselle turn lock. This opens to reveal an inner flap and a matching leather interior with patch pockets.", - "discounted_price": 2845, - "discounted_tier": 1, - "filters": { - "bags": [ - "Crossbody", - "Handbags", - "Shoulder Bags" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Chanel" - ], - "color": [ - "Grays" - ], - "material": [ - "Leather", - "Solid Color" - ], - "bag_feature": [ - "Structured" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "Over $2000", - "condition": [ - "Shows Wear" - ], - "locations": [ - "New York" - ] - }, - "following_count": 29, - "id": 1589470, - "made_available_at": 1740430566, - "price": 2995, - "priced_at": 1743019215, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/b1c090111a5204ca61fbadd49e81f085.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/b1c090111a5204ca61fbadd49e81f085.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/b1c090111a5204ca61fbadd49e81f085.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/76cf70460fe013315306de4a9f444ced.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/76cf70460fe013315306de4a9f444ced.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/76cf70460fe013315306de4a9f444ced.jpg" - } - ], - "title": "CHANEL Aged Calfskin Quilted 2.55 Reissue 227 Flap Grey", - "title_without_brand": "Aged Calfskin Quilted 2.55 Reissue 227 Flap Grey", - "_tags": [ - "1589470" - ], - "objectID": "1589470", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-22-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-255-reissue-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "top-designers", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "50-off-retail", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "crossbody-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-crossbody-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "cross-body", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic CHANEL Aged Calfskin Quilted 2.55 Reissue 227 Flap in Grey. This stylish classic flap shoulder bag is crafted of diamond-quilted textured aged calfskin leather in grey. The handbag features an aged silver reissue chain shoulder strap and an aged silver Mademoiselle turn lock. This opens to reveal an inner flap and a matching leather interior with patch pockets.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Chanel", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Grays", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1589470", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "CHANEL Aged Calfskin Quilted 2.55 Reissue 227 Flap Grey", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Gucci", + "product_name": "Calfskin Web Perforated Womens Platform 55mm Sneakers 38.5 White Bright Splash", + "condition": "Shows Wear", + "discounted_price": 25, + "price": 495, + "id": 10746580369711 }, { - "best_value": 8655, - "categories": [ - "Grays", - "Structured", - "Womens", - "Leather", - "Solid Color", - "Crossbody", - "Handbags", - "Shoulder Bags", - "General", - "Styles", - "Over 50% off Retail", - "Top Designers", - "Chanel" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoulder-bags-on-sale", - "chanel-22-bags", - "chanel-on-sale", - "bags-under-1000", - "chanel-shoulder-bags", - "chanel-255-reissue-bags", - "bags-on-sale", - "chanel", - "top-designers", - "50-off-retail", - "crossbody-bags-on-sale", - "handbag-styles", - "chanel-bags", - "chanel-crossbody-bags", - "shoulder-bags", - "handbags", - "cross-body" - ], - "description": "This is an authentic CHANEL Aged Calfskin Quilted 2.55 Reissue 227 Flap in Grey. This stylish classic flap shoulder bag is crafted of diamond-quilted textured aged calfskin leather in grey. The handbag features an aged silver reissue chain shoulder strap and an aged silver Mademoiselle turn lock. This opens to reveal an inner flap and a matching leather interior with patch pockets.", - "discounted_price": 2845, - "discounted_tier": 1, - "filters": { - "bags": [ - "Crossbody", - "Handbags", - "Shoulder Bags" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Chanel" - ], - "color": [ - "Grays" - ], - "material": [ - "Leather", - "Solid Color" - ], - "bag_feature": [ - "Structured" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "Over $2000", - "condition": [ - "Shows Wear" - ], - "locations": [ - "New York" - ] - }, - "following_count": 29, - "id": 1589470, - "made_available_at": 1740430566, - "price": 2995, - "priced_at": 1743019215, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/b1c090111a5204ca61fbadd49e81f085.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/b1c090111a5204ca61fbadd49e81f085.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/b1c090111a5204ca61fbadd49e81f085.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/76cf70460fe013315306de4a9f444ced.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/76cf70460fe013315306de4a9f444ced.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/76cf70460fe013315306de4a9f444ced.jpg" - } - ], - "title": "CHANEL Aged Calfskin Quilted 2.55 Reissue 227 Flap Grey", - "title_without_brand": "Aged Calfskin Quilted 2.55 Reissue 227 Flap Grey", - "_tags": [ - "1589470" - ], - "objectID": "1589470", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-22-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-255-reissue-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "top-designers", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "50-off-retail", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "crossbody-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-crossbody-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "cross-body", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic CHANEL Aged Calfskin Quilted 2.55 Reissue 227 Flap in Grey. This stylish classic flap shoulder bag is crafted of diamond-quilted textured aged calfskin leather in grey. The handbag features an aged silver reissue chain shoulder strap and an aged silver Mademoiselle turn lock. This opens to reveal an inner flap and a matching leather interior with patch pockets.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Chanel", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Grays", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1589470", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "CHANEL Aged Calfskin Quilted 2.55 Reissue 227 Flap Grey", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Gucci", + "product_name": "Calfskin Matelasse GG Marmont Chain Wallet Black", + "condition": "Shows Wear", + "discounted_price": 45, + "price": 895, + "id": 10746580238639 }, { - "best_value": 8655, - "categories": [ - "Grays", - "Structured", - "Womens", - "Leather", - "Solid Color", - "Crossbody", - "Handbags", - "Shoulder Bags", - "General", - "Styles", - "Over 50% off Retail", - "Top Designers", - "Chanel" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoulder-bags-on-sale", - "chanel-22-bags", - "chanel-on-sale", - "bags-under-1000", - "chanel-shoulder-bags", - "chanel-255-reissue-bags", - "bags-on-sale", - "chanel", - "top-designers", - "50-off-retail", - "crossbody-bags-on-sale", - "handbag-styles", - "chanel-bags", - "chanel-crossbody-bags", - "shoulder-bags", - "handbags", - "cross-body" - ], - "description": "This is an authentic CHANEL Aged Calfskin Quilted 2.55 Reissue 227 Flap in Grey. This stylish classic flap shoulder bag is crafted of diamond-quilted textured aged calfskin leather in grey. The handbag features an aged silver reissue chain shoulder strap and an aged silver Mademoiselle turn lock. This opens to reveal an inner flap and a matching leather interior with patch pockets.", - "discounted_price": 2845, - "discounted_tier": 1, - "filters": { - "bags": [ - "Crossbody", - "Handbags", - "Shoulder Bags" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Chanel" - ], - "color": [ - "Grays" - ], - "material": [ - "Leather", - "Solid Color" - ], - "bag_feature": [ - "Structured" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "Over $2000", - "condition": [ - "Shows Wear" - ], - "locations": [ - "New York" - ] - }, - "following_count": 29, - "id": 1589470, - "made_available_at": 1740430566, - "price": 2995, - "priced_at": 1743019215, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/b1c090111a5204ca61fbadd49e81f085.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/b1c090111a5204ca61fbadd49e81f085.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/b1c090111a5204ca61fbadd49e81f085.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/76cf70460fe013315306de4a9f444ced.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/76cf70460fe013315306de4a9f444ced.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/76cf70460fe013315306de4a9f444ced.jpg" - } - ], - "title": "CHANEL Aged Calfskin Quilted 2.55 Reissue 227 Flap Grey", - "title_without_brand": "Aged Calfskin Quilted 2.55 Reissue 227 Flap Grey", - "_tags": [ - "1589470" - ], - "objectID": "1589470", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-22-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-255-reissue-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "top-designers", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "50-off-retail", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "crossbody-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-crossbody-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "cross-body", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic CHANEL Aged Calfskin Quilted 2.55 Reissue 227 Flap in Grey. This stylish classic flap shoulder bag is crafted of diamond-quilted textured aged calfskin leather in grey. The handbag features an aged silver reissue chain shoulder strap and an aged silver Mademoiselle turn lock. This opens to reveal an inner flap and a matching leather interior with patch pockets.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Chanel", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Grays", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1589470", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "CHANEL Aged Calfskin Quilted 2.55 Reissue 227 Flap Grey", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Valentino Garavani", + "product_name": "Grained Calfskin Rockstud Flap Messenger Saddle Brown", + "condition": "Excellent", + "discounted_price": 45, + "price": 850, + "id": 10746579943727 }, { - "best_value": 915, - "categories": [ - "Browns", - "Top Handles", - "Zip Top", - "Womens", - "Coated Canvas", - "Handbags", - "Monogram", - "Styles", - "Shoulder Bags", - "Crossbody", - "Totes", - "General", - "Top Designers", - "Over 50% off Retail", - "Year-End Sale", - "Louis Vuitton", - "Live Shopping with FASHIONPHILE" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoulder-bags-on-sale", - "bags-under-1000", - "louis-vuitton-shoulder-bags", - "louis-vuitton-monogram-bags", - "bags-on-sale", - "louis-vuitton-crossbody-bags", - "instagram-live-shopping", - "louis-vuitton-on-sale", - "totes-on-sale", - "louis-vuitton-monogram", - "louis-vuitton", - "top-handles", - "totes", - "top-designers", - "50-off-retail", - "crossbody-bags-on-sale", - "zip-top", - "louis-vuitton-bags", - "handbag-styles", - "shoulder-bags", - "handbags", - "cross-body", - "louis-vuitton-totes", - "year-end-sale" - ], - "description": "This is an authentic LOUIS VUITTON Monogram Palermo PM. This pleated tote is crafted of Louis Vuitton monogram coated canvas in brown with vachetta leather trim, top handles, and a removable, adjustable shoulder strap with brass hardware. The top unzips to a cocoa brown fabric interior with patch pockets.", - "discounted_price": 735, - "discounted_tier": 1, - "filters": { - "bags": [ - "Handbags", - "Shoulder Bags", - "Crossbody", - "Totes" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Louis Vuitton" - ], - "color": [ - "Browns" - ], - "material": [ - "Coated Canvas" - ], - "bag_feature": [ - "Top Handles", - "Zip Top" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$500-$1000", - "condition": [ - "Shows Wear" - ], - "locations": [ - "New York" - ] - }, - "following_count": 17, - "id": 1589610, - "made_available_at": 1740431395, - "price": 775, - "priced_at": 1743023862, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/0b109be6f4edb72fc211bb8ff96db631.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/0b109be6f4edb72fc211bb8ff96db631.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/0b109be6f4edb72fc211bb8ff96db631.jpg" - }, - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/a09d6a58655dab16105edc621fcf20d8.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/a09d6a58655dab16105edc621fcf20d8.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/a09d6a58655dab16105edc621fcf20d8.jpg" - } - ], - "title": "LOUIS VUITTON Monogram Palermo PM", - "title_without_brand": "Monogram Palermo PM", - "_tags": [ - "1589610" - ], - "objectID": "1589610", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-monogram-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-crossbody-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "instagram-live-shopping", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "totes-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-monogram", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "top-handles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "totes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "top-designers", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "50-off-retail", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "crossbody-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "zip-top", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "cross-body", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-totes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "year-end-sale", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic LOUIS VUITTON Monogram Palermo PM. This pleated tote is crafted of Louis Vuitton monogram coated canvas in brown with vachetta leather trim, top handles, and a removable, adjustable shoulder strap with brass hardware. The top unzips to a cocoa brown fabric interior with patch pockets.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Louis Vuitton", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Browns", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Coated Canvas", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1589610", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "LOUIS VUITTON Monogram Palermo PM", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Bottega Veneta", + "product_name": "Nappa Maxi Intrecciato Small Padded Cassette Crossbody Bag Barolo", + "condition": "Excellent", + "discounted_price": 115, + "price": 2190, + "id": 10746579845423 }, { - "best_value": 915, - "categories": [ - "Browns", - "Top Handles", - "Zip Top", - "Womens", - "Coated Canvas", - "Handbags", - "Monogram", - "Styles", - "Shoulder Bags", - "Crossbody", - "Totes", - "General", - "Top Designers", - "Over 50% off Retail", - "Year-End Sale", - "Louis Vuitton", - "Live Shopping with FASHIONPHILE" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoulder-bags-on-sale", - "bags-under-1000", - "louis-vuitton-shoulder-bags", - "louis-vuitton-monogram-bags", - "bags-on-sale", - "louis-vuitton-crossbody-bags", - "instagram-live-shopping", - "louis-vuitton-on-sale", - "totes-on-sale", - "louis-vuitton-monogram", - "louis-vuitton", - "top-handles", - "totes", - "top-designers", - "50-off-retail", - "crossbody-bags-on-sale", - "zip-top", - "louis-vuitton-bags", - "handbag-styles", - "shoulder-bags", - "handbags", - "cross-body", - "louis-vuitton-totes", - "year-end-sale" - ], - "description": "This is an authentic LOUIS VUITTON Monogram Palermo PM. This pleated tote is crafted of Louis Vuitton monogram coated canvas in brown with vachetta leather trim, top handles, and a removable, adjustable shoulder strap with brass hardware. The top unzips to a cocoa brown fabric interior with patch pockets.", - "discounted_price": 735, - "discounted_tier": 1, - "filters": { - "bags": [ - "Handbags", - "Shoulder Bags", - "Crossbody", - "Totes" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Louis Vuitton" - ], - "color": [ - "Browns" - ], - "material": [ - "Coated Canvas" - ], - "bag_feature": [ - "Top Handles", - "Zip Top" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$500-$1000", - "condition": [ - "Shows Wear" - ], - "locations": [ - "New York" - ] - }, - "following_count": 17, - "id": 1589610, - "made_available_at": 1740431395, - "price": 775, - "priced_at": 1743023862, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/0b109be6f4edb72fc211bb8ff96db631.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/0b109be6f4edb72fc211bb8ff96db631.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/0b109be6f4edb72fc211bb8ff96db631.jpg" - }, - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/a09d6a58655dab16105edc621fcf20d8.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/a09d6a58655dab16105edc621fcf20d8.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/a09d6a58655dab16105edc621fcf20d8.jpg" - } - ], - "title": "LOUIS VUITTON Monogram Palermo PM", - "title_without_brand": "Monogram Palermo PM", - "_tags": [ - "1589610" - ], - "objectID": "1589610", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-monogram-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-crossbody-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "instagram-live-shopping", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "totes-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-monogram", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "top-handles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "totes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "top-designers", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "50-off-retail", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "crossbody-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "zip-top", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "cross-body", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-totes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "year-end-sale", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic LOUIS VUITTON Monogram Palermo PM. This pleated tote is crafted of Louis Vuitton monogram coated canvas in brown with vachetta leather trim, top handles, and a removable, adjustable shoulder strap with brass hardware. The top unzips to a cocoa brown fabric interior with patch pockets.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Louis Vuitton", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Browns", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Coated Canvas", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1589610", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "LOUIS VUITTON Monogram Palermo PM", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Gucci", + "product_name": "Calfskin Bamboo Mini Thiara Top Handle Bag Black", + "condition": "Excellent", + "discounted_price": 120, + "price": 2290, + "id": 10746579714351 }, { - "best_value": 915, - "categories": [ - "Browns", - "Top Handles", - "Zip Top", - "Womens", - "Coated Canvas", - "Handbags", - "Monogram", - "Styles", - "Shoulder Bags", - "Crossbody", - "Totes", - "General", - "Top Designers", - "Over 50% off Retail", - "Year-End Sale", - "Louis Vuitton", - "Live Shopping with FASHIONPHILE" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoulder-bags-on-sale", - "bags-under-1000", - "louis-vuitton-shoulder-bags", - "louis-vuitton-monogram-bags", - "bags-on-sale", - "louis-vuitton-crossbody-bags", - "instagram-live-shopping", - "louis-vuitton-on-sale", - "totes-on-sale", - "louis-vuitton-monogram", - "louis-vuitton", - "top-handles", - "totes", - "top-designers", - "50-off-retail", - "crossbody-bags-on-sale", - "zip-top", - "louis-vuitton-bags", - "handbag-styles", - "shoulder-bags", - "handbags", - "cross-body", - "louis-vuitton-totes", - "year-end-sale" - ], - "description": "This is an authentic LOUIS VUITTON Monogram Palermo PM. This pleated tote is crafted of Louis Vuitton monogram coated canvas in brown with vachetta leather trim, top handles, and a removable, adjustable shoulder strap with brass hardware. The top unzips to a cocoa brown fabric interior with patch pockets.", - "discounted_price": 735, - "discounted_tier": 1, - "filters": { - "bags": [ - "Handbags", - "Shoulder Bags", - "Crossbody", - "Totes" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Louis Vuitton" - ], - "color": [ - "Browns" - ], - "material": [ - "Coated Canvas" - ], - "bag_feature": [ - "Top Handles", - "Zip Top" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$500-$1000", - "condition": [ - "Shows Wear" - ], - "locations": [ - "New York" - ] - }, - "following_count": 17, - "id": 1589610, - "made_available_at": 1740431395, - "price": 775, - "priced_at": 1743023862, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/0b109be6f4edb72fc211bb8ff96db631.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/0b109be6f4edb72fc211bb8ff96db631.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/0b109be6f4edb72fc211bb8ff96db631.jpg" - }, - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/a09d6a58655dab16105edc621fcf20d8.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/a09d6a58655dab16105edc621fcf20d8.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/a09d6a58655dab16105edc621fcf20d8.jpg" - } - ], - "title": "LOUIS VUITTON Monogram Palermo PM", - "title_without_brand": "Monogram Palermo PM", - "_tags": [ - "1589610" - ], - "objectID": "1589610", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-monogram-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-crossbody-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "instagram-live-shopping", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "totes-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-monogram", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "top-handles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "totes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "top-designers", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "50-off-retail", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "crossbody-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "zip-top", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "cross-body", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-totes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "year-end-sale", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic LOUIS VUITTON Monogram Palermo PM. This pleated tote is crafted of Louis Vuitton monogram coated canvas in brown with vachetta leather trim, top handles, and a removable, adjustable shoulder strap with brass hardware. The top unzips to a cocoa brown fabric interior with patch pockets.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Louis Vuitton", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Browns", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Coated Canvas", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1589610", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "LOUIS VUITTON Monogram Palermo PM", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Gucci", + "product_name": "Calfskin Cat Embroidered Womens Ace Sneakers 35 White Green", + "condition": "Excellent", + "discounted_price": 25, + "price": 495, + "id": 10746579616047 }, { - "best_value": 3205, - "categories": [ - "Beige", - "Structured", - "Leather", - "Solid Color", - "Handbags", - "Shoulder Bags", - "Caviar", - "Styles", - "General", - "Womens", - "Chanel" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoulder-bags-on-sale", - "chanel-on-sale", - "bags-under-1000", - "caviar", - "chanel-shoulder-bags", - "bags-on-sale", - "chanel", - "chanel-double-flap-bags", - "handbag-styles", - "chanel-bags", - "shoulder-bags", - "handbags" - ], - "description": "This is an authentic CHANEL Lambskin Quilted Medium Double Flap in Beige. This chic bag is crafted of beige lambskin leather. It features leather-threaded polished gold chain-link shoulder straps and a gold CC turn lock. The front flap opens to an inner flap and a matching leather interior with patch pockets.", - "discounted_price": 7595, - "discounted_tier": 1, - "filters": { - "bags": [ - "Handbags", - "Shoulder Bags" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Chanel" - ], - "color": [ - "Beige" - ], - "material": [ - "Leather", - "Solid Color" - ], - "bag_feature": [ - "Structured" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "Over $2000", - "condition": [ - "Excellent" - ], - "locations": [ - "New York" - ] - }, - "following_count": 62, - "id": 1589612, - "made_available_at": 1740431232, - "price": 7995, - "priced_at": 1743023859, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/16066d3fa27772ff005c47d3fb0a4ef3.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/16066d3fa27772ff005c47d3fb0a4ef3.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/16066d3fa27772ff005c47d3fb0a4ef3.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/fe18f45d3e28184f6b338588b4b04a20.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/fe18f45d3e28184f6b338588b4b04a20.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/fe18f45d3e28184f6b338588b4b04a20.jpg" - } - ], - "title": "CHANEL Lambskin Quilted Medium Double Flap Beige", - "title_without_brand": "Lambskin Quilted Medium Double Flap Beige", - "_tags": [ - "1589612" - ], - "objectID": "1589612", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "caviar", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-double-flap-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic CHANEL Lambskin Quilted Medium Double Flap in Beige. This chic bag is crafted of beige lambskin leather. It features leather-threaded polished gold chain-link shoulder straps and a gold CC turn lock. The front flap opens to an inner flap and a matching leather interior with patch pockets.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Chanel", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Beige", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1589612", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "CHANEL Lambskin Quilted Medium Double Flap Beige", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Chanel", + "product_name": "Caviar Quilted Wallet on Chain WOC Black", + "condition": "Excellent", + "discounted_price": 200, + "price": 3845, + "id": 10746578534703 }, { - "best_value": 3205, - "categories": [ - "Beige", - "Structured", - "Leather", - "Solid Color", - "Handbags", - "Shoulder Bags", - "Caviar", - "Styles", - "General", - "Womens", - "Chanel" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoulder-bags-on-sale", - "chanel-on-sale", - "bags-under-1000", - "caviar", - "chanel-shoulder-bags", - "bags-on-sale", - "chanel", - "chanel-double-flap-bags", - "handbag-styles", - "chanel-bags", - "shoulder-bags", - "handbags" - ], - "description": "This is an authentic CHANEL Lambskin Quilted Medium Double Flap in Beige. This chic bag is crafted of beige lambskin leather. It features leather-threaded polished gold chain-link shoulder straps and a gold CC turn lock. The front flap opens to an inner flap and a matching leather interior with patch pockets.", - "discounted_price": 7595, - "discounted_tier": 1, - "filters": { - "bags": [ - "Handbags", - "Shoulder Bags" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Chanel" - ], - "color": [ - "Beige" - ], - "material": [ - "Leather", - "Solid Color" - ], - "bag_feature": [ - "Structured" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "Over $2000", - "condition": [ - "Excellent" - ], - "locations": [ - "New York" - ] - }, - "following_count": 62, - "id": 1589612, - "made_available_at": 1740431232, - "price": 7995, - "priced_at": 1743023859, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/16066d3fa27772ff005c47d3fb0a4ef3.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/16066d3fa27772ff005c47d3fb0a4ef3.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/16066d3fa27772ff005c47d3fb0a4ef3.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/fe18f45d3e28184f6b338588b4b04a20.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/fe18f45d3e28184f6b338588b4b04a20.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/fe18f45d3e28184f6b338588b4b04a20.jpg" - } - ], - "title": "CHANEL Lambskin Quilted Medium Double Flap Beige", - "title_without_brand": "Lambskin Quilted Medium Double Flap Beige", - "_tags": [ - "1589612" - ], - "objectID": "1589612", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "caviar", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-double-flap-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic CHANEL Lambskin Quilted Medium Double Flap in Beige. This chic bag is crafted of beige lambskin leather. It features leather-threaded polished gold chain-link shoulder straps and a gold CC turn lock. The front flap opens to an inner flap and a matching leather interior with patch pockets.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Chanel", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Beige", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1589612", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "CHANEL Lambskin Quilted Medium Double Flap Beige", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Chanel", + "product_name": "Metallic Lame Quilted Small Double Flap Silver", + "condition": "Shows Wear", + "discounted_price": 155, + "price": 2990, + "id": 10746578469167 }, { - "best_value": 3205, - "categories": [ - "Beige", - "Structured", - "Leather", - "Solid Color", - "Handbags", - "Shoulder Bags", - "Caviar", - "Styles", - "General", - "Womens", - "Chanel" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoulder-bags-on-sale", - "chanel-on-sale", - "bags-under-1000", - "caviar", - "chanel-shoulder-bags", - "bags-on-sale", - "chanel", - "chanel-double-flap-bags", - "handbag-styles", - "chanel-bags", - "shoulder-bags", - "handbags" - ], - "description": "This is an authentic CHANEL Lambskin Quilted Medium Double Flap in Beige. This chic bag is crafted of beige lambskin leather. It features leather-threaded polished gold chain-link shoulder straps and a gold CC turn lock. The front flap opens to an inner flap and a matching leather interior with patch pockets.", - "discounted_price": 7595, - "discounted_tier": 1, - "filters": { - "bags": [ - "Handbags", - "Shoulder Bags" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Chanel" - ], - "color": [ - "Beige" - ], - "material": [ - "Leather", - "Solid Color" - ], - "bag_feature": [ - "Structured" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "Over $2000", - "condition": [ - "Excellent" - ], - "locations": [ - "New York" - ] - }, - "following_count": 62, - "id": 1589612, - "made_available_at": 1740431232, - "price": 7995, - "priced_at": 1743023859, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/16066d3fa27772ff005c47d3fb0a4ef3.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/16066d3fa27772ff005c47d3fb0a4ef3.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/16066d3fa27772ff005c47d3fb0a4ef3.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/fe18f45d3e28184f6b338588b4b04a20.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/fe18f45d3e28184f6b338588b4b04a20.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/fe18f45d3e28184f6b338588b4b04a20.jpg" - } - ], - "title": "CHANEL Lambskin Quilted Medium Double Flap Beige", - "title_without_brand": "Lambskin Quilted Medium Double Flap Beige", - "_tags": [ - "1589612" - ], - "objectID": "1589612", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "caviar", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-double-flap-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic CHANEL Lambskin Quilted Medium Double Flap in Beige. This chic bag is crafted of beige lambskin leather. It features leather-threaded polished gold chain-link shoulder straps and a gold CC turn lock. The front flap opens to an inner flap and a matching leather interior with patch pockets.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Chanel", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Beige", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1589612", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "CHANEL Lambskin Quilted Medium Double Flap Beige", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Bottega Veneta", + "product_name": "Nappa Maxi Intrecciato Mini Arco Tote Ice Cream", + "condition": "Excellent", + "discounted_price": 70, + "price": 1350, + "id": 10746578338095 }, { - "best_value": 0, - "categories": [ - "The Clearance Sale", - "The Ultra-Luxe Edit", - "Womens", - "Stainless Steel", - "Luxury Watches", - "Designer Clearance - X", - "General", - "Watches", - "Red Envelope Sale", - "Spring Refresh Offer", - "The Hour of Luxury Watches", - "Treat Yourself Sale", - "Yellow Gold", - "31 to 40mm", - "Chopard" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "yellow-gold", - "luxury-watches", - "designer-sale", - "watches-on-sale", - "red-envelope-sale", - "spring-refresh-offer", - "chopard", - "treat-yourself-offer", - "watches", - "the-ultra-luxe-edit" - ], - "description": "This is an authentic CHOPARD Stainless Steel 18K Yellow Gold 7 Diamond 36mm Happy Sport Quartz Watch. This watch is crafted of stainless steel and 18 karat yellow gold, and features a white dial, Roman numeral hour markers, blue cabochon crown, seven floating diamonds, and a quartz movement.", - "discounted_price": 5220, - "discounted_tier": 1, - "filters": { - "bags": [], - "jewelry": [], - "accessories": [], - "watches": [ - "Luxury Watches" - ], - "shoes": [], - "brands": [ - "Chopard" - ], - "color": [], - "material": [ - "Stainless Steel", - "Yellow Gold" - ], - "bag_feature": [], - "ring_size": [], - "watch_size": [ - "31 to 40mm" - ], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "Over $2000", - "condition": [ - "Shows Wear" - ], - "locations": [ - "Carlsbad" - ] - }, - "following_count": 36, - "id": 1589782, - "made_available_at": 1740453058, - "price": 5495, - "priced_at": 1743045413, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/d4cdcf97ae2ab5ce194ab20b10b36edb.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/d4cdcf97ae2ab5ce194ab20b10b36edb.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/d4cdcf97ae2ab5ce194ab20b10b36edb.jpg" - }, - { - "order": 3, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/804282d64d9642ce66f8f126f579e5b4.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/804282d64d9642ce66f8f126f579e5b4.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/804282d64d9642ce66f8f126f579e5b4.jpg" - } - ], - "title": "CHOPARD Stainless Steel 18K Yellow Gold 7 Diamond 36mm Happy Sport Quartz Watch", - "title_without_brand": "Stainless Steel 18K Yellow Gold 7 Diamond 36mm Happy Sport Quartz Watch", - "_tags": [ - "1589782" - ], - "objectID": "1589782", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "yellow-gold", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "luxury-watches", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "designer-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "watches-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "red-envelope-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "spring-refresh-offer", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chopard", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "treat-yourself-offer", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "watches", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "the-ultra-luxe-edit", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic CHOPARD Stainless Steel 18K Yellow Gold 7 Diamond 36mm Happy Sport Quartz Watch. This watch is crafted of stainless steel and 18 karat yellow gold, and features a white dial, Roman numeral hour markers, blue cabochon crown, seven floating diamonds, and a quartz movement.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Chopard", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Stainless Steel", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Yellow Gold", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1589782", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "CHOPARD Stainless Steel 18K Yellow Gold 7 Diamond 36mm Happy Sport Quartz Watch", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Chanel", + "product_name": "Lambskin Quilted Shoulder Bag Navy", + "condition": "Shows Wear", + "discounted_price": 100, + "price": 1890, + "id": 10746578207023 }, { - "best_value": 0, - "categories": [ - "The Clearance Sale", - "The Ultra-Luxe Edit", - "Womens", - "Stainless Steel", - "Luxury Watches", - "Designer Clearance - X", - "General", - "Watches", - "Red Envelope Sale", - "Spring Refresh Offer", - "The Hour of Luxury Watches", - "Treat Yourself Sale", - "Yellow Gold", - "31 to 40mm", - "Chopard" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "yellow-gold", - "luxury-watches", - "designer-sale", - "watches-on-sale", - "red-envelope-sale", - "spring-refresh-offer", - "chopard", - "treat-yourself-offer", - "watches", - "the-ultra-luxe-edit" - ], - "description": "This is an authentic CHOPARD Stainless Steel 18K Yellow Gold 7 Diamond 36mm Happy Sport Quartz Watch. This watch is crafted of stainless steel and 18 karat yellow gold, and features a white dial, Roman numeral hour markers, blue cabochon crown, seven floating diamonds, and a quartz movement.", - "discounted_price": 5220, - "discounted_tier": 1, - "filters": { - "bags": [], - "jewelry": [], - "accessories": [], - "watches": [ - "Luxury Watches" - ], - "shoes": [], - "brands": [ - "Chopard" - ], - "color": [], - "material": [ - "Stainless Steel", - "Yellow Gold" - ], - "bag_feature": [], - "ring_size": [], - "watch_size": [ - "31 to 40mm" - ], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "Over $2000", - "condition": [ - "Shows Wear" - ], - "locations": [ - "Carlsbad" - ] - }, - "following_count": 36, - "id": 1589782, - "made_available_at": 1740453058, - "price": 5495, - "priced_at": 1743045413, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/d4cdcf97ae2ab5ce194ab20b10b36edb.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/d4cdcf97ae2ab5ce194ab20b10b36edb.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/d4cdcf97ae2ab5ce194ab20b10b36edb.jpg" - }, - { - "order": 3, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/804282d64d9642ce66f8f126f579e5b4.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/804282d64d9642ce66f8f126f579e5b4.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/804282d64d9642ce66f8f126f579e5b4.jpg" - } - ], - "title": "CHOPARD Stainless Steel 18K Yellow Gold 7 Diamond 36mm Happy Sport Quartz Watch", - "title_without_brand": "Stainless Steel 18K Yellow Gold 7 Diamond 36mm Happy Sport Quartz Watch", - "_tags": [ - "1589782" - ], - "objectID": "1589782", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "yellow-gold", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "luxury-watches", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "designer-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "watches-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "red-envelope-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "spring-refresh-offer", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chopard", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "treat-yourself-offer", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "watches", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "the-ultra-luxe-edit", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic CHOPARD Stainless Steel 18K Yellow Gold 7 Diamond 36mm Happy Sport Quartz Watch. This watch is crafted of stainless steel and 18 karat yellow gold, and features a white dial, Roman numeral hour markers, blue cabochon crown, seven floating diamonds, and a quartz movement.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Chopard", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Stainless Steel", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Yellow Gold", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1589782", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "CHOPARD Stainless Steel 18K Yellow Gold 7 Diamond 36mm Happy Sport Quartz Watch", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Chanel", + "product_name": "Lambskin Quilted Flap Card Holder With Cuff Black", + "condition": "Excellent", + "discounted_price": 140, + "price": 2690, + "id": 10746577551663 }, { - "best_value": 0, - "categories": [ - "The Clearance Sale", - "The Ultra-Luxe Edit", - "Womens", - "Stainless Steel", - "Luxury Watches", - "Designer Clearance - X", - "General", - "Watches", - "Red Envelope Sale", - "Spring Refresh Offer", - "The Hour of Luxury Watches", - "Treat Yourself Sale", - "Yellow Gold", - "31 to 40mm", - "Chopard" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "yellow-gold", - "luxury-watches", - "designer-sale", - "watches-on-sale", - "red-envelope-sale", - "spring-refresh-offer", - "chopard", - "treat-yourself-offer", - "watches", - "the-ultra-luxe-edit" - ], - "description": "This is an authentic CHOPARD Stainless Steel 18K Yellow Gold 7 Diamond 36mm Happy Sport Quartz Watch. This watch is crafted of stainless steel and 18 karat yellow gold, and features a white dial, Roman numeral hour markers, blue cabochon crown, seven floating diamonds, and a quartz movement.", - "discounted_price": 5220, - "discounted_tier": 1, - "filters": { - "bags": [], - "jewelry": [], - "accessories": [], - "watches": [ - "Luxury Watches" - ], - "shoes": [], - "brands": [ - "Chopard" - ], - "color": [], - "material": [ - "Stainless Steel", - "Yellow Gold" - ], - "bag_feature": [], - "ring_size": [], - "watch_size": [ - "31 to 40mm" - ], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "Over $2000", - "condition": [ - "Shows Wear" - ], - "locations": [ - "Carlsbad" - ] - }, - "following_count": 36, - "id": 1589782, - "made_available_at": 1740453058, - "price": 5495, - "priced_at": 1743045413, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/d4cdcf97ae2ab5ce194ab20b10b36edb.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/d4cdcf97ae2ab5ce194ab20b10b36edb.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/d4cdcf97ae2ab5ce194ab20b10b36edb.jpg" - }, - { - "order": 3, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/804282d64d9642ce66f8f126f579e5b4.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/804282d64d9642ce66f8f126f579e5b4.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/804282d64d9642ce66f8f126f579e5b4.jpg" - } - ], - "title": "CHOPARD Stainless Steel 18K Yellow Gold 7 Diamond 36mm Happy Sport Quartz Watch", - "title_without_brand": "Stainless Steel 18K Yellow Gold 7 Diamond 36mm Happy Sport Quartz Watch", - "_tags": [ - "1589782" - ], - "objectID": "1589782", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "yellow-gold", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "luxury-watches", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "designer-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "watches-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "red-envelope-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "spring-refresh-offer", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chopard", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "treat-yourself-offer", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "watches", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "the-ultra-luxe-edit", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic CHOPARD Stainless Steel 18K Yellow Gold 7 Diamond 36mm Happy Sport Quartz Watch. This watch is crafted of stainless steel and 18 karat yellow gold, and features a white dial, Roman numeral hour markers, blue cabochon crown, seven floating diamonds, and a quartz movement.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Chopard", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Stainless Steel", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Yellow Gold", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1589782", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "CHOPARD Stainless Steel 18K Yellow Gold 7 Diamond 36mm Happy Sport Quartz Watch", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Gucci", + "product_name": "Betis Glamour Calfskin Horsebit Mens Jordaan Loafers 9 Black", + "condition": "Excellent", + "discounted_price": 30, + "price": 550, + "id": 10746577158447 }, { - "best_value": 0, - "categories": [ - "Sunglasses", - "Gold", - "Womens", - "Plastics", - "Accessories", - "General", - "Black", - "Gucci" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "gucci-sunglasses", - "gucci", - "gold", - "accessories-on-sale", - "sunglasses", - "gucci-on-sale", - "sunglasses-on-sale", - "accessories" - ], - "description": "This is an authentic pair of GUCCI Horsebit Square Frame Sunglasses GG0890S in Black. These stylish sunglasses have black frames with squared grey lenses and a gold horsebit detail at the temples.", - "discounted_price": 310, - "discounted_tier": 1, - "filters": { - "bags": [], - "jewelry": [], - "accessories": [ - "Sunglasses" - ], - "watches": [], - "shoes": [], - "brands": [ - "Gucci" - ], - "color": [ - "Gold", - "Black" - ], - "material": [ - "Plastics" - ], - "bag_feature": [], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$200-$500", - "condition": [ - "Shows Wear" - ], - "locations": [ - "New York" - ] - }, - "following_count": 29, - "id": 1589951, - "made_available_at": 1740430607, - "price": 325, - "priced_at": 1743019216, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/9c0046db307cec034d0db2669b6bd4e6.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/9c0046db307cec034d0db2669b6bd4e6.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/9c0046db307cec034d0db2669b6bd4e6.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/4612272f926a20f056edf5c461bb4df2.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/4612272f926a20f056edf5c461bb4df2.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/4612272f926a20f056edf5c461bb4df2.jpg" - } - ], - "title": "GUCCI Horsebit Square Frame Sunglasses GG0890S Black", - "title_without_brand": "Horsebit Square Frame Sunglasses GG0890S Black", - "_tags": [ - "1589951" - ], - "objectID": "1589951", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-sunglasses", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gold", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "sunglasses", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "sunglasses-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic pair of GUCCI Horsebit Square Frame Sunglasses GG0890S in Black. These stylish sunglasses have black frames with squared grey lenses and a gold horsebit detail at the temples.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Gucci", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Gold", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Black", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Plastics", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1589951", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "GUCCI Horsebit Square Frame Sunglasses GG0890S Black", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Fendi", + "product_name": "Vitello Dolce 4 Color Medium By The Way Boston Bag Carbone Grigio Polvere Multicolor", + "condition": "Shows Wear", + "discounted_price": 35, + "price": 695, + "id": 10746577125679 }, { - "best_value": 0, - "categories": [ - "Sunglasses", - "Gold", - "Womens", - "Plastics", - "Accessories", - "General", - "Black", - "Gucci" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "gucci-sunglasses", - "gucci", - "gold", - "accessories-on-sale", - "sunglasses", - "gucci-on-sale", - "sunglasses-on-sale", - "accessories" - ], - "description": "This is an authentic pair of GUCCI Horsebit Square Frame Sunglasses GG0890S in Black. These stylish sunglasses have black frames with squared grey lenses and a gold horsebit detail at the temples.", - "discounted_price": 310, - "discounted_tier": 1, - "filters": { - "bags": [], - "jewelry": [], - "accessories": [ - "Sunglasses" - ], - "watches": [], - "shoes": [], - "brands": [ - "Gucci" - ], - "color": [ - "Gold", - "Black" - ], - "material": [ - "Plastics" - ], - "bag_feature": [], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$200-$500", - "condition": [ - "Shows Wear" - ], - "locations": [ - "New York" - ] - }, - "following_count": 29, - "id": 1589951, - "made_available_at": 1740430607, - "price": 325, - "priced_at": 1743019216, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/9c0046db307cec034d0db2669b6bd4e6.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/9c0046db307cec034d0db2669b6bd4e6.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/9c0046db307cec034d0db2669b6bd4e6.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/4612272f926a20f056edf5c461bb4df2.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/4612272f926a20f056edf5c461bb4df2.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/4612272f926a20f056edf5c461bb4df2.jpg" - } - ], - "title": "GUCCI Horsebit Square Frame Sunglasses GG0890S Black", - "title_without_brand": "Horsebit Square Frame Sunglasses GG0890S Black", - "_tags": [ - "1589951" - ], - "objectID": "1589951", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-sunglasses", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gold", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "sunglasses", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "sunglasses-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic pair of GUCCI Horsebit Square Frame Sunglasses GG0890S in Black. These stylish sunglasses have black frames with squared grey lenses and a gold horsebit detail at the temples.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Gucci", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Gold", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Black", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Plastics", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1589951", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "GUCCI Horsebit Square Frame Sunglasses GG0890S Black", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Louis Vuitton", + "product_name": "LV X TM Monogram Multicolor CarryAll PM White", + "condition": "New", + "discounted_price": 295, + "price": 5580, + "id": 10746577027375 }, { - "best_value": 0, - "categories": [ - "Sunglasses", - "Gold", - "Womens", - "Plastics", - "Accessories", - "General", - "Black", - "Gucci" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "gucci-sunglasses", - "gucci", - "gold", - "accessories-on-sale", - "sunglasses", - "gucci-on-sale", - "sunglasses-on-sale", - "accessories" - ], - "description": "This is an authentic pair of GUCCI Horsebit Square Frame Sunglasses GG0890S in Black. These stylish sunglasses have black frames with squared grey lenses and a gold horsebit detail at the temples.", - "discounted_price": 310, - "discounted_tier": 1, - "filters": { - "bags": [], - "jewelry": [], - "accessories": [ - "Sunglasses" - ], - "watches": [], - "shoes": [], - "brands": [ - "Gucci" - ], - "color": [ - "Gold", - "Black" - ], - "material": [ - "Plastics" - ], - "bag_feature": [], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$200-$500", - "condition": [ - "Shows Wear" - ], - "locations": [ - "New York" - ] - }, - "following_count": 29, - "id": 1589951, - "made_available_at": 1740430607, - "price": 325, - "priced_at": 1743019216, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/9c0046db307cec034d0db2669b6bd4e6.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/9c0046db307cec034d0db2669b6bd4e6.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/9c0046db307cec034d0db2669b6bd4e6.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/4612272f926a20f056edf5c461bb4df2.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/4612272f926a20f056edf5c461bb4df2.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/4612272f926a20f056edf5c461bb4df2.jpg" - } - ], - "title": "GUCCI Horsebit Square Frame Sunglasses GG0890S Black", - "title_without_brand": "Horsebit Square Frame Sunglasses GG0890S Black", - "_tags": [ - "1589951" - ], - "objectID": "1589951", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-sunglasses", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gold", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "sunglasses", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "sunglasses-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic pair of GUCCI Horsebit Square Frame Sunglasses GG0890S in Black. These stylish sunglasses have black frames with squared grey lenses and a gold horsebit detail at the temples.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Gucci", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Gold", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Black", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Plastics", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1589951", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "GUCCI Horsebit Square Frame Sunglasses GG0890S Black", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Gucci", + "product_name": "Calfskin Double G 20mm Belt 80 32 Black", + "condition": "Shows Wear", + "discounted_price": 15, + "price": 295, + "id": 10746576994607 }, { - "best_value": 195, - "categories": [ - "Browns", - "Zip Top", - "Womens", - "Coated Canvas", - "Handbags", - "Shoulder Bags", - "Monogram", - "Pochette Accessories", - "General", - "Styles", - "Structured", - "Solid Color", - "Gifts for Her", - "Top Designers", - "Louis Vuitton", - "Live Shopping with FASHIONPHILE" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoulder-bags-on-sale", - "bags-under-1000", - "louis-vuitton-shoulder-bags", - "louis-vuitton-monogram-bags", - "bags-on-sale", - "instagram-live-shopping", - "louis-vuitton-on-sale", - "pochette-accessories", - "louis-vuitton-pochette-accessories-bags", - "louis-vuitton-monogram", - "louis-vuitton", - "gifts-for-her", - "top-designers", - "zip-top", - "louis-vuitton-bags", - "handbag-styles", - "shoulder-bags", - "handbags" - ], - "description": "This is an authentic LOUIS VUITTON Monogram Pochette Accessories NM. This classic pouch is crafted of signature Louis Vuitton monogram coated canvas in brown with a removable vachetta cowhide leather strap. The polished gold-toned top zipper opens to a brown fabric interior with patch pocket.", - "discounted_price": 1355, - "discounted_tier": 1, - "filters": { - "bags": [ - "Handbags", - "Shoulder Bags" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Louis Vuitton" - ], - "color": [ - "Browns" - ], - "material": [ - "Coated Canvas", - "Solid Color" - ], - "bag_feature": [ - "Zip Top", - "Structured" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$1000-$2000", - "condition": [ - "Excellent" - ], - "locations": [ - "New York" - ] - }, - "following_count": 21, - "id": 1590201, - "made_available_at": 1740433091, - "price": 1425, - "priced_at": 1743023882, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/7e6309b859184f25a67a961329e40beb.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/7e6309b859184f25a67a961329e40beb.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/7e6309b859184f25a67a961329e40beb.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/08a9956f1c9e71cfa6dd2ac820aac471.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/08a9956f1c9e71cfa6dd2ac820aac471.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/08a9956f1c9e71cfa6dd2ac820aac471.jpg" - } - ], - "title": "LOUIS VUITTON Monogram Pochette Accessories NM", - "title_without_brand": "Monogram Pochette Accessories NM", - "_tags": [ - "1590201" - ], - "objectID": "1590201", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-monogram-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "instagram-live-shopping", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "pochette-accessories", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-pochette-accessories-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-monogram", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gifts-for-her", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "top-designers", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "zip-top", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic LOUIS VUITTON Monogram Pochette Accessories NM. This classic pouch is crafted of signature Louis Vuitton monogram coated canvas in brown with a removable vachetta cowhide leather strap. The polished gold-toned top zipper opens to a brown fabric interior with patch pocket.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Louis Vuitton", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Browns", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Coated Canvas", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1590201", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "LOUIS VUITTON Monogram Pochette Accessories NM", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Christian Dior", + "product_name": "Canvas Embroidered Medium Mille Fleurs Book Tote Multicolor", + "condition": "Excellent", + "discounted_price": 155, + "price": 2945, + "id": 10746576961839 }, { - "best_value": 195, - "categories": [ - "Browns", - "Zip Top", - "Womens", - "Coated Canvas", - "Handbags", - "Shoulder Bags", - "Monogram", - "Pochette Accessories", - "General", - "Styles", - "Structured", - "Solid Color", - "Gifts for Her", - "Top Designers", - "Louis Vuitton", - "Live Shopping with FASHIONPHILE" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoulder-bags-on-sale", - "bags-under-1000", - "louis-vuitton-shoulder-bags", - "louis-vuitton-monogram-bags", - "bags-on-sale", - "instagram-live-shopping", - "louis-vuitton-on-sale", - "pochette-accessories", - "louis-vuitton-pochette-accessories-bags", - "louis-vuitton-monogram", - "louis-vuitton", - "gifts-for-her", - "top-designers", - "zip-top", - "louis-vuitton-bags", - "handbag-styles", - "shoulder-bags", - "handbags" - ], - "description": "This is an authentic LOUIS VUITTON Monogram Pochette Accessories NM. This classic pouch is crafted of signature Louis Vuitton monogram coated canvas in brown with a removable vachetta cowhide leather strap. The polished gold-toned top zipper opens to a brown fabric interior with patch pocket.", - "discounted_price": 1355, - "discounted_tier": 1, - "filters": { - "bags": [ - "Handbags", - "Shoulder Bags" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Louis Vuitton" - ], - "color": [ - "Browns" - ], - "material": [ - "Coated Canvas", - "Solid Color" - ], - "bag_feature": [ - "Zip Top", - "Structured" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$1000-$2000", - "condition": [ - "Excellent" - ], - "locations": [ - "New York" - ] - }, - "following_count": 21, - "id": 1590201, - "made_available_at": 1740433091, - "price": 1425, - "priced_at": 1743023882, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/7e6309b859184f25a67a961329e40beb.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/7e6309b859184f25a67a961329e40beb.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/7e6309b859184f25a67a961329e40beb.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/08a9956f1c9e71cfa6dd2ac820aac471.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/08a9956f1c9e71cfa6dd2ac820aac471.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/08a9956f1c9e71cfa6dd2ac820aac471.jpg" - } - ], - "title": "LOUIS VUITTON Monogram Pochette Accessories NM", - "title_without_brand": "Monogram Pochette Accessories NM", - "_tags": [ - "1590201" - ], - "objectID": "1590201", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-monogram-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "instagram-live-shopping", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "pochette-accessories", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-pochette-accessories-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-monogram", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gifts-for-her", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "top-designers", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "zip-top", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic LOUIS VUITTON Monogram Pochette Accessories NM. This classic pouch is crafted of signature Louis Vuitton monogram coated canvas in brown with a removable vachetta cowhide leather strap. The polished gold-toned top zipper opens to a brown fabric interior with patch pocket.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Louis Vuitton", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Browns", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Coated Canvas", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1590201", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "LOUIS VUITTON Monogram Pochette Accessories NM", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Louis Vuitton", + "product_name": "Monogram Mini Boite Chapeau", + "condition": "Shows Wear", + "discounted_price": 75, + "price": 1450, + "id": 10746576634159 }, { - "best_value": 195, - "categories": [ - "Browns", - "Zip Top", - "Womens", - "Coated Canvas", - "Handbags", - "Shoulder Bags", - "Monogram", - "Pochette Accessories", - "General", - "Styles", - "Structured", - "Solid Color", - "Gifts for Her", - "Top Designers", - "Louis Vuitton", - "Live Shopping with FASHIONPHILE" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoulder-bags-on-sale", - "bags-under-1000", - "louis-vuitton-shoulder-bags", - "louis-vuitton-monogram-bags", - "bags-on-sale", - "instagram-live-shopping", - "louis-vuitton-on-sale", - "pochette-accessories", - "louis-vuitton-pochette-accessories-bags", - "louis-vuitton-monogram", - "louis-vuitton", - "gifts-for-her", - "top-designers", - "zip-top", - "louis-vuitton-bags", - "handbag-styles", - "shoulder-bags", - "handbags" - ], - "description": "This is an authentic LOUIS VUITTON Monogram Pochette Accessories NM. This classic pouch is crafted of signature Louis Vuitton monogram coated canvas in brown with a removable vachetta cowhide leather strap. The polished gold-toned top zipper opens to a brown fabric interior with patch pocket.", - "discounted_price": 1355, - "discounted_tier": 1, - "filters": { - "bags": [ - "Handbags", - "Shoulder Bags" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Louis Vuitton" - ], - "color": [ - "Browns" - ], - "material": [ - "Coated Canvas", - "Solid Color" - ], - "bag_feature": [ - "Zip Top", - "Structured" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$1000-$2000", - "condition": [ - "Excellent" - ], - "locations": [ - "New York" - ] - }, - "following_count": 21, - "id": 1590201, - "made_available_at": 1740433091, - "price": 1425, - "priced_at": 1743023882, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/7e6309b859184f25a67a961329e40beb.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/7e6309b859184f25a67a961329e40beb.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/7e6309b859184f25a67a961329e40beb.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/08a9956f1c9e71cfa6dd2ac820aac471.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/08a9956f1c9e71cfa6dd2ac820aac471.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/08a9956f1c9e71cfa6dd2ac820aac471.jpg" - } - ], - "title": "LOUIS VUITTON Monogram Pochette Accessories NM", - "title_without_brand": "Monogram Pochette Accessories NM", - "_tags": [ - "1590201" - ], - "objectID": "1590201", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-monogram-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "instagram-live-shopping", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "pochette-accessories", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-pochette-accessories-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-monogram", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gifts-for-her", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "top-designers", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "zip-top", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic LOUIS VUITTON Monogram Pochette Accessories NM. This classic pouch is crafted of signature Louis Vuitton monogram coated canvas in brown with a removable vachetta cowhide leather strap. The polished gold-toned top zipper opens to a brown fabric interior with patch pocket.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Louis Vuitton", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Browns", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Coated Canvas", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1590201", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "LOUIS VUITTON Monogram Pochette Accessories NM", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Bottega Veneta", + "product_name": "Butter Calfskin The Mini Pouch Cammello", + "condition": "Excellent", + "discounted_price": 45, + "price": 895, + "id": 10746576503087 }, { - "best_value": 850, - "categories": [ - "Black", - "Structured", - "Womens", - "Leather", - "Solid Color", - "Shoulder Bags", - "General", - "Styles", - "Editor's Picks", - "Take 10 Sale", - "OLD - Little Luxuries Sale", - "(Do Not Use) Year-End Event", - "Hot Picks Sale", - "Designer Deals", - "Handbags", - "Crossbody", - "Top Designers", - "Saint Laurent" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoulder-bags-on-sale", - "ysl", - "saint-laurent-shoulder-bags", - "designer-deals", - "bags-under-1000", - "saint-laurent-sale", - "saint-laurent-envelope-bags", - "bags-on-sale", - "take-10-sale", - "saint-laurent-lou-bags", - "top-designers", - "most-wanted", - "crossbody-bags-on-sale", - "saint-laurent-bags", - "handbag-styles", - "saint-laurent-loulou-bags", - "shoulder-bags", - "saint-laurent-bags-under-1000", - "handbags", - "cross-body", - "saint-laurent-crossbody-bags" - ], - "description": "This is an authentic SAINT LAURENT Calfskin Y Quilted Monogram Medium Loulou Chain Satchel in Black. This elegant shoulder tote features chevron quilted calfskin leather in black. The bag has silver chain link shoulder straps with black leather shoulder pads. The envelope-style crossover flap features a prominent silver YSL monogram detail and snaps open to a partitioned black fabric interior with zipper pockets.", - "discounted_price": 2040, - "discounted_tier": 1, - "filters": { - "bags": [ - "Shoulder Bags", - "Handbags", - "Crossbody" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Saint Laurent" - ], - "color": [ - "Black" - ], - "material": [ - "Leather", - "Solid Color" - ], - "bag_feature": [ - "Structured" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "Over $2000", - "condition": [ - "Excellent" - ], - "locations": [ - "New York" - ] - }, - "following_count": 26, - "id": 1590213, - "made_available_at": 1740430647, - "price": 2150, - "priced_at": 1743019216, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/3d5548960e498a58161eb84ab3e67097.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/3d5548960e498a58161eb84ab3e67097.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/3d5548960e498a58161eb84ab3e67097.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/b2e3b286e3a17b86208985250e069664.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/b2e3b286e3a17b86208985250e069664.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/b2e3b286e3a17b86208985250e069664.jpg" - } - ], - "title": "SAINT LAURENT Calfskin Y Quilted Monogram Medium Loulou Chain Satchel Black", - "title_without_brand": "Calfskin Y Quilted Monogram Medium Loulou Chain Satchel Black", - "_tags": [ - "1590213" - ], - "objectID": "1590213", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "ysl", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "saint-laurent-shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "designer-deals", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "saint-laurent-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "saint-laurent-envelope-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "take-10-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "saint-laurent-lou-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "top-designers", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "most-wanted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "crossbody-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "saint-laurent-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "saint-laurent-loulou-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "saint-laurent-bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "cross-body", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "saint-laurent-crossbody-bags", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic SAINT LAURENT Calfskin Y Quilted Monogram Medium Loulou Chain Satchel in Black. This elegant shoulder tote features chevron quilted calfskin leather in black. The bag has silver chain link shoulder straps with black leather shoulder pads. The envelope-style crossover flap features a prominent silver YSL monogram detail and snaps open to a partitioned black fabric interior with zipper pockets.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Saint Laurent", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Black", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1590213", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "SAINT LAURENT Calfskin Y Quilted Monogram Medium Loulou Chain Satchel Black", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Saint Laurent", + "product_name": "Smooth Calfskin Le 5 A 7 Hobo Crema Soft", + "condition": "Excellent", + "discounted_price": 105, + "price": 1990, + "id": 10746575814959 }, { - "best_value": 850, - "categories": [ - "Black", - "Structured", - "Womens", - "Leather", - "Solid Color", - "Shoulder Bags", - "General", - "Styles", - "Editor's Picks", - "Take 10 Sale", - "OLD - Little Luxuries Sale", - "(Do Not Use) Year-End Event", - "Hot Picks Sale", - "Designer Deals", - "Handbags", - "Crossbody", - "Top Designers", - "Saint Laurent" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoulder-bags-on-sale", - "ysl", - "saint-laurent-shoulder-bags", - "designer-deals", - "bags-under-1000", - "saint-laurent-sale", - "saint-laurent-envelope-bags", - "bags-on-sale", - "take-10-sale", - "saint-laurent-lou-bags", - "top-designers", - "most-wanted", - "crossbody-bags-on-sale", - "saint-laurent-bags", - "handbag-styles", - "saint-laurent-loulou-bags", - "shoulder-bags", - "saint-laurent-bags-under-1000", - "handbags", - "cross-body", - "saint-laurent-crossbody-bags" - ], - "description": "This is an authentic SAINT LAURENT Calfskin Y Quilted Monogram Medium Loulou Chain Satchel in Black. This elegant shoulder tote features chevron quilted calfskin leather in black. The bag has silver chain link shoulder straps with black leather shoulder pads. The envelope-style crossover flap features a prominent silver YSL monogram detail and snaps open to a partitioned black fabric interior with zipper pockets.", - "discounted_price": 2040, - "discounted_tier": 1, - "filters": { - "bags": [ - "Shoulder Bags", - "Handbags", - "Crossbody" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Saint Laurent" - ], - "color": [ - "Black" - ], - "material": [ - "Leather", - "Solid Color" - ], - "bag_feature": [ - "Structured" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "Over $2000", - "condition": [ - "Excellent" - ], - "locations": [ - "New York" - ] - }, - "following_count": 26, - "id": 1590213, - "made_available_at": 1740430647, - "price": 2150, - "priced_at": 1743019216, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/3d5548960e498a58161eb84ab3e67097.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/3d5548960e498a58161eb84ab3e67097.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/3d5548960e498a58161eb84ab3e67097.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/b2e3b286e3a17b86208985250e069664.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/b2e3b286e3a17b86208985250e069664.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/b2e3b286e3a17b86208985250e069664.jpg" - } - ], - "title": "SAINT LAURENT Calfskin Y Quilted Monogram Medium Loulou Chain Satchel Black", - "title_without_brand": "Calfskin Y Quilted Monogram Medium Loulou Chain Satchel Black", - "_tags": [ - "1590213" - ], - "objectID": "1590213", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "ysl", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "saint-laurent-shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "designer-deals", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "saint-laurent-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "saint-laurent-envelope-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "take-10-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "saint-laurent-lou-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "top-designers", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "most-wanted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "crossbody-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "saint-laurent-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "saint-laurent-loulou-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "saint-laurent-bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "cross-body", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "saint-laurent-crossbody-bags", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic SAINT LAURENT Calfskin Y Quilted Monogram Medium Loulou Chain Satchel in Black. This elegant shoulder tote features chevron quilted calfskin leather in black. The bag has silver chain link shoulder straps with black leather shoulder pads. The envelope-style crossover flap features a prominent silver YSL monogram detail and snaps open to a partitioned black fabric interior with zipper pockets.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Saint Laurent", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Black", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1590213", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "SAINT LAURENT Calfskin Y Quilted Monogram Medium Loulou Chain Satchel Black", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Gucci", + "product_name": "Plexiglass Mini Sylvie 1969 Top Handle Bag Pink", + "condition": "Excellent", + "discounted_price": 65, + "price": 1190, + "id": 10746575716655 }, { - "best_value": 850, - "categories": [ - "Black", - "Structured", - "Womens", - "Leather", - "Solid Color", - "Shoulder Bags", - "General", - "Styles", - "Editor's Picks", - "Take 10 Sale", - "OLD - Little Luxuries Sale", - "(Do Not Use) Year-End Event", - "Hot Picks Sale", - "Designer Deals", - "Handbags", - "Crossbody", - "Top Designers", - "Saint Laurent" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoulder-bags-on-sale", - "ysl", - "saint-laurent-shoulder-bags", - "designer-deals", - "bags-under-1000", - "saint-laurent-sale", - "saint-laurent-envelope-bags", - "bags-on-sale", - "take-10-sale", - "saint-laurent-lou-bags", - "top-designers", - "most-wanted", - "crossbody-bags-on-sale", - "saint-laurent-bags", - "handbag-styles", - "saint-laurent-loulou-bags", - "shoulder-bags", - "saint-laurent-bags-under-1000", - "handbags", - "cross-body", - "saint-laurent-crossbody-bags" - ], - "description": "This is an authentic SAINT LAURENT Calfskin Y Quilted Monogram Medium Loulou Chain Satchel in Black. This elegant shoulder tote features chevron quilted calfskin leather in black. The bag has silver chain link shoulder straps with black leather shoulder pads. The envelope-style crossover flap features a prominent silver YSL monogram detail and snaps open to a partitioned black fabric interior with zipper pockets.", - "discounted_price": 2040, - "discounted_tier": 1, - "filters": { - "bags": [ - "Shoulder Bags", - "Handbags", - "Crossbody" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Saint Laurent" - ], - "color": [ - "Black" - ], - "material": [ - "Leather", - "Solid Color" - ], - "bag_feature": [ - "Structured" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "Over $2000", - "condition": [ - "Excellent" - ], - "locations": [ - "New York" - ] - }, - "following_count": 26, - "id": 1590213, - "made_available_at": 1740430647, - "price": 2150, - "priced_at": 1743019216, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/3d5548960e498a58161eb84ab3e67097.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/3d5548960e498a58161eb84ab3e67097.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/3d5548960e498a58161eb84ab3e67097.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/b2e3b286e3a17b86208985250e069664.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/b2e3b286e3a17b86208985250e069664.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/b2e3b286e3a17b86208985250e069664.jpg" - } - ], - "title": "SAINT LAURENT Calfskin Y Quilted Monogram Medium Loulou Chain Satchel Black", - "title_without_brand": "Calfskin Y Quilted Monogram Medium Loulou Chain Satchel Black", - "_tags": [ - "1590213" - ], - "objectID": "1590213", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "ysl", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "saint-laurent-shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "designer-deals", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "saint-laurent-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "saint-laurent-envelope-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "take-10-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "saint-laurent-lou-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "top-designers", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "most-wanted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "crossbody-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "saint-laurent-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "saint-laurent-loulou-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "saint-laurent-bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "cross-body", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "saint-laurent-crossbody-bags", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic SAINT LAURENT Calfskin Y Quilted Monogram Medium Loulou Chain Satchel in Black. This elegant shoulder tote features chevron quilted calfskin leather in black. The bag has silver chain link shoulder straps with black leather shoulder pads. The envelope-style crossover flap features a prominent silver YSL monogram detail and snaps open to a partitioned black fabric interior with zipper pockets.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Saint Laurent", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Black", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1590213", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "SAINT LAURENT Calfskin Y Quilted Monogram Medium Loulou Chain Satchel Black", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Gucci", + "product_name": "Calfskin Matelasse Mini GG Marmont Top Handle Shoulder Bag Wild Rose", + "condition": "Excellent", + "discounted_price": 65, + "price": 1250, + "id": 10746575651119 }, { - "best_value": 185, - "categories": [ - "Wallets", - "Grays", - "Zip Top", - "Leather", - "Solid Color", - "Caviar", - "Accessories", - "Chanel", - "Head-to-Toe Neutrals" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "chanel-on-sale", - "caviar", - "chanel", - "chanel-wallets", - "wallets-on-sale", - "accessories-on-sale", - "zip-top", - "wallets", - "accessories", - "neutrals" - ], - "description": "This is an authentic CHANEL Caviar Quilted Boy Small Zip Around Wallet in Grey. This stylish wallet is crafted of beautifully diamond quilted caviar leather in grey with a periphery quilt. The wallet has a facing gold faux Chanel CC press lock and the wrap-around zipper opens to a compact gray interior of card slot panels with a central zipper pocket.", - "discounted_price": 615, - "discounted_tier": 1, - "filters": { - "bags": [], - "jewelry": [], - "accessories": [ - "Wallets" - ], - "watches": [], - "shoes": [], - "brands": [ - "Chanel" - ], - "color": [ - "Grays" - ], - "material": [ - "Leather", - "Solid Color" - ], - "bag_feature": [ - "Zip Top" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$500-$1000", - "condition": [ - "Shows Wear" - ], - "locations": [ - "New York" - ] - }, - "following_count": 15, - "id": 1590215, - "made_available_at": 1740433089, - "price": 650, - "priced_at": 1743023881, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/58cdc2b79bc32e2b2ccb83de5acc5503.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/58cdc2b79bc32e2b2ccb83de5acc5503.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/58cdc2b79bc32e2b2ccb83de5acc5503.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/f112a2374c8752d945063b44ed6fd12f.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/f112a2374c8752d945063b44ed6fd12f.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/f112a2374c8752d945063b44ed6fd12f.jpg" - } - ], - "title": "CHANEL Caviar Quilted Boy Small Zip Around Wallet Grey", - "title_without_brand": "Caviar Quilted Boy Small Zip Around Wallet Grey", - "_tags": [ - "1590215" - ], - "objectID": "1590215", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "caviar", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-wallets", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "wallets-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "zip-top", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "wallets", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "neutrals", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic CHANEL Caviar Quilted Boy Small Zip Around Wallet in Grey. This stylish wallet is crafted of beautifully diamond quilted caviar leather in grey with a periphery quilt. The wallet has a facing gold faux Chanel CC press lock and the wrap-around zipper opens to a compact gray interior of card slot panels with a central zipper pocket.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Chanel", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Grays", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1590215", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "CHANEL Caviar Quilted Boy Small Zip Around Wallet Grey", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Gucci", + "product_name": "Nappa Matelasse GG Marmont Espadrilles 38.5 Wild Rose", + "condition": "Shows Wear", + "discounted_price": 25, + "price": 450, + "id": 10746575552815 }, { - "best_value": 185, - "categories": [ - "Wallets", - "Grays", - "Zip Top", - "Leather", - "Solid Color", - "Caviar", - "Accessories", - "Chanel", - "Head-to-Toe Neutrals" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "chanel-on-sale", - "caviar", - "chanel", - "chanel-wallets", - "wallets-on-sale", - "accessories-on-sale", - "zip-top", - "wallets", - "accessories", - "neutrals" - ], - "description": "This is an authentic CHANEL Caviar Quilted Boy Small Zip Around Wallet in Grey. This stylish wallet is crafted of beautifully diamond quilted caviar leather in grey with a periphery quilt. The wallet has a facing gold faux Chanel CC press lock and the wrap-around zipper opens to a compact gray interior of card slot panels with a central zipper pocket.", - "discounted_price": 615, - "discounted_tier": 1, - "filters": { - "bags": [], - "jewelry": [], - "accessories": [ - "Wallets" - ], - "watches": [], - "shoes": [], - "brands": [ - "Chanel" - ], - "color": [ - "Grays" - ], - "material": [ - "Leather", - "Solid Color" - ], - "bag_feature": [ - "Zip Top" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$500-$1000", - "condition": [ - "Shows Wear" - ], - "locations": [ - "New York" - ] - }, - "following_count": 15, - "id": 1590215, - "made_available_at": 1740433089, - "price": 650, - "priced_at": 1743023881, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/58cdc2b79bc32e2b2ccb83de5acc5503.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/58cdc2b79bc32e2b2ccb83de5acc5503.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/58cdc2b79bc32e2b2ccb83de5acc5503.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/f112a2374c8752d945063b44ed6fd12f.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/f112a2374c8752d945063b44ed6fd12f.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/f112a2374c8752d945063b44ed6fd12f.jpg" - } - ], - "title": "CHANEL Caviar Quilted Boy Small Zip Around Wallet Grey", - "title_without_brand": "Caviar Quilted Boy Small Zip Around Wallet Grey", - "_tags": [ - "1590215" - ], - "objectID": "1590215", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "caviar", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-wallets", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "wallets-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "zip-top", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "wallets", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "neutrals", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic CHANEL Caviar Quilted Boy Small Zip Around Wallet in Grey. This stylish wallet is crafted of beautifully diamond quilted caviar leather in grey with a periphery quilt. The wallet has a facing gold faux Chanel CC press lock and the wrap-around zipper opens to a compact gray interior of card slot panels with a central zipper pocket.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Chanel", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Grays", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1590215", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "CHANEL Caviar Quilted Boy Small Zip Around Wallet Grey", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Hermes", + "product_name": "Epsom 32mm Belt Strap 75 30 Etain Jaune De Naples", + "condition": "Excellent", + "discounted_price": 20, + "price": 395, + "id": 10746575487279 }, { - "best_value": 185, - "categories": [ - "Wallets", - "Grays", - "Zip Top", - "Leather", - "Solid Color", - "Caviar", - "Accessories", - "Chanel", - "Head-to-Toe Neutrals" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "chanel-on-sale", - "caviar", - "chanel", - "chanel-wallets", - "wallets-on-sale", - "accessories-on-sale", - "zip-top", - "wallets", - "accessories", - "neutrals" - ], - "description": "This is an authentic CHANEL Caviar Quilted Boy Small Zip Around Wallet in Grey. This stylish wallet is crafted of beautifully diamond quilted caviar leather in grey with a periphery quilt. The wallet has a facing gold faux Chanel CC press lock and the wrap-around zipper opens to a compact gray interior of card slot panels with a central zipper pocket.", - "discounted_price": 615, - "discounted_tier": 1, - "filters": { - "bags": [], - "jewelry": [], - "accessories": [ - "Wallets" - ], - "watches": [], - "shoes": [], - "brands": [ - "Chanel" - ], - "color": [ - "Grays" - ], - "material": [ - "Leather", - "Solid Color" - ], - "bag_feature": [ - "Zip Top" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$500-$1000", - "condition": [ - "Shows Wear" - ], - "locations": [ - "New York" - ] - }, - "following_count": 15, - "id": 1590215, - "made_available_at": 1740433089, - "price": 650, - "priced_at": 1743023881, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/58cdc2b79bc32e2b2ccb83de5acc5503.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/58cdc2b79bc32e2b2ccb83de5acc5503.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/58cdc2b79bc32e2b2ccb83de5acc5503.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/f112a2374c8752d945063b44ed6fd12f.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/f112a2374c8752d945063b44ed6fd12f.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/f112a2374c8752d945063b44ed6fd12f.jpg" - } - ], - "title": "CHANEL Caviar Quilted Boy Small Zip Around Wallet Grey", - "title_without_brand": "Caviar Quilted Boy Small Zip Around Wallet Grey", - "_tags": [ - "1590215" - ], - "objectID": "1590215", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "caviar", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-wallets", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "wallets-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "zip-top", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "wallets", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "neutrals", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic CHANEL Caviar Quilted Boy Small Zip Around Wallet in Grey. This stylish wallet is crafted of beautifully diamond quilted caviar leather in grey with a periphery quilt. The wallet has a facing gold faux Chanel CC press lock and the wrap-around zipper opens to a compact gray interior of card slot panels with a central zipper pocket.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Chanel", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Grays", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1590215", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "CHANEL Caviar Quilted Boy Small Zip Around Wallet Grey", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Louis Vuitton", + "product_name": "Brass Monogram Nanogram Cuff M Gold", + "condition": "Shows Wear", + "discounted_price": 30, + "price": 595, + "id": 10746575421743 }, { - "best_value": 0, - "categories": [ - "Structured", - "Zip Top", - "Crossbody", - "Styles", - "Shoulder Bags", - "Fabrics", - "Multicolor", - "Black", - "Pink", - "Chanel" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoulder-bags-on-sale", - "chanel-on-sale", - "black-chanel-bags", - "bags-under-1000", - "chanel-shoulder-bags", - "bags-on-sale", - "chanel", - "crossbody-bags-on-sale", - "zip-top", - "handbag-styles", - "chanel-bags", - "chanel-crossbody-bags", - "shoulder-bags", - "cross-body" - ], - "description": "This is an authentic CHANEL Wool Plaid Quilted Mini Vanity Case With Chain in Navy Blue and Grey. This stylish crossbody is crafted of wool in blue with grey. The bag features a blue leather threaded light gold chain-link shoulder strap and light gold hardware including a Chanel CC logo on the front. The handbag features a 3/4 wrap-around double zipper that opens to a blue leather interior with a lipstick holder and mirror.", - "discounted_price": 2845, - "discounted_tier": 1, - "filters": { - "bags": [ - "Crossbody", - "Shoulder Bags" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Chanel" - ], - "color": [ - "Multicolor", - "Black", - "Pink" - ], - "material": [ - "Fabrics" - ], - "bag_feature": [ - "Structured", - "Zip Top" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "Over $2000", - "condition": [ - "Excellent" - ], - "locations": [ - "New York" - ] - }, - "following_count": 45, - "id": 1590217, - "made_available_at": 1740433095, - "price": 2995, - "priced_at": 1743023883, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/5f614869ae4c1e0205e183ed06c6416c.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/5f614869ae4c1e0205e183ed06c6416c.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/5f614869ae4c1e0205e183ed06c6416c.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/d9a97cd8255b46be8db0598f80d755ed.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/d9a97cd8255b46be8db0598f80d755ed.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/d9a97cd8255b46be8db0598f80d755ed.jpg" - } - ], - "title": "CHANEL Wool Plaid Quilted Mini Vanity Case With Chain Blue", - "title_without_brand": "Wool Plaid Quilted Mini Vanity Case With Chain Blue", - "_tags": [ - "1590217" - ], - "objectID": "1590217", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "black-chanel-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "crossbody-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "zip-top", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-crossbody-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "cross-body", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic CHANEL Wool Plaid Quilted Mini Vanity Case With Chain in Navy Blue and Grey. This stylish crossbody is crafted of wool in blue with grey. The bag features a blue leather threaded light gold chain-link shoulder strap and light gold hardware including a Chanel CC logo on the front. The handbag features a 3/4 wrap-around double zipper that opens to a blue leather interior with a lipstick holder and mirror.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Chanel", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Multicolor", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Black", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Pink", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Fabrics", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1590217", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "CHANEL Wool Plaid Quilted Mini Vanity Case With Chain Blue", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Louis Vuitton", + "product_name": "LV x YK Monogram Painted Dots Pochette Metis", + "condition": "Excellent", + "discounted_price": 165, + "price": 3085, + "id": 10746575356207 }, { - "best_value": 0, - "categories": [ - "Structured", - "Zip Top", - "Crossbody", - "Styles", - "Shoulder Bags", - "Fabrics", - "Multicolor", - "Black", - "Pink", - "Chanel" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoulder-bags-on-sale", - "chanel-on-sale", - "black-chanel-bags", - "bags-under-1000", - "chanel-shoulder-bags", - "bags-on-sale", - "chanel", - "crossbody-bags-on-sale", - "zip-top", - "handbag-styles", - "chanel-bags", - "chanel-crossbody-bags", - "shoulder-bags", - "cross-body" - ], - "description": "This is an authentic CHANEL Wool Plaid Quilted Mini Vanity Case With Chain in Navy Blue and Grey. This stylish crossbody is crafted of wool in blue with grey. The bag features a blue leather threaded light gold chain-link shoulder strap and light gold hardware including a Chanel CC logo on the front. The handbag features a 3/4 wrap-around double zipper that opens to a blue leather interior with a lipstick holder and mirror.", - "discounted_price": 2845, - "discounted_tier": 1, - "filters": { - "bags": [ - "Crossbody", - "Shoulder Bags" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Chanel" - ], - "color": [ - "Multicolor", - "Black", - "Pink" - ], - "material": [ - "Fabrics" - ], - "bag_feature": [ - "Structured", - "Zip Top" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "Over $2000", - "condition": [ - "Excellent" - ], - "locations": [ - "New York" - ] - }, - "following_count": 45, - "id": 1590217, - "made_available_at": 1740433095, - "price": 2995, - "priced_at": 1743023883, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/5f614869ae4c1e0205e183ed06c6416c.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/5f614869ae4c1e0205e183ed06c6416c.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/5f614869ae4c1e0205e183ed06c6416c.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/d9a97cd8255b46be8db0598f80d755ed.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/d9a97cd8255b46be8db0598f80d755ed.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/d9a97cd8255b46be8db0598f80d755ed.jpg" - } - ], - "title": "CHANEL Wool Plaid Quilted Mini Vanity Case With Chain Blue", - "title_without_brand": "Wool Plaid Quilted Mini Vanity Case With Chain Blue", - "_tags": [ - "1590217" - ], - "objectID": "1590217", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "black-chanel-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "crossbody-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "zip-top", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-crossbody-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "cross-body", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic CHANEL Wool Plaid Quilted Mini Vanity Case With Chain in Navy Blue and Grey. This stylish crossbody is crafted of wool in blue with grey. The bag features a blue leather threaded light gold chain-link shoulder strap and light gold hardware including a Chanel CC logo on the front. The handbag features a 3/4 wrap-around double zipper that opens to a blue leather interior with a lipstick holder and mirror.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Chanel", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Multicolor", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Black", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Pink", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Fabrics", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1590217", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "CHANEL Wool Plaid Quilted Mini Vanity Case With Chain Blue", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Saint Laurent", + "product_name": "Grain De Poudre Matelasse Chevron Monogram Compact Zip Around Wallet Black", + "condition": "Excellent", + "discounted_price": 30, + "price": 595, + "id": 10746575257903 }, { - "best_value": 0, - "categories": [ - "Structured", - "Zip Top", - "Crossbody", - "Styles", - "Shoulder Bags", - "Fabrics", - "Multicolor", - "Black", - "Pink", - "Chanel" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoulder-bags-on-sale", - "chanel-on-sale", - "black-chanel-bags", - "bags-under-1000", - "chanel-shoulder-bags", - "bags-on-sale", - "chanel", - "crossbody-bags-on-sale", - "zip-top", - "handbag-styles", - "chanel-bags", - "chanel-crossbody-bags", - "shoulder-bags", - "cross-body" - ], - "description": "This is an authentic CHANEL Wool Plaid Quilted Mini Vanity Case With Chain in Navy Blue and Grey. This stylish crossbody is crafted of wool in blue with grey. The bag features a blue leather threaded light gold chain-link shoulder strap and light gold hardware including a Chanel CC logo on the front. The handbag features a 3/4 wrap-around double zipper that opens to a blue leather interior with a lipstick holder and mirror.", - "discounted_price": 2845, - "discounted_tier": 1, - "filters": { - "bags": [ - "Crossbody", - "Shoulder Bags" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Chanel" - ], - "color": [ - "Multicolor", - "Black", - "Pink" - ], - "material": [ - "Fabrics" - ], - "bag_feature": [ - "Structured", - "Zip Top" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "Over $2000", - "condition": [ - "Excellent" - ], - "locations": [ - "New York" - ] - }, - "following_count": 45, - "id": 1590217, - "made_available_at": 1740433095, - "price": 2995, - "priced_at": 1743023883, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/5f614869ae4c1e0205e183ed06c6416c.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/5f614869ae4c1e0205e183ed06c6416c.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/5f614869ae4c1e0205e183ed06c6416c.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/d9a97cd8255b46be8db0598f80d755ed.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/d9a97cd8255b46be8db0598f80d755ed.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/d9a97cd8255b46be8db0598f80d755ed.jpg" - } - ], - "title": "CHANEL Wool Plaid Quilted Mini Vanity Case With Chain Blue", - "title_without_brand": "Wool Plaid Quilted Mini Vanity Case With Chain Blue", - "_tags": [ - "1590217" - ], - "objectID": "1590217", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "black-chanel-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "crossbody-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "zip-top", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chanel-crossbody-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "cross-body", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic CHANEL Wool Plaid Quilted Mini Vanity Case With Chain in Navy Blue and Grey. This stylish crossbody is crafted of wool in blue with grey. The bag features a blue leather threaded light gold chain-link shoulder strap and light gold hardware including a Chanel CC logo on the front. The handbag features a 3/4 wrap-around double zipper that opens to a blue leather interior with a lipstick holder and mirror.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Chanel", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Multicolor", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Black", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Pink", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Fabrics", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1590217", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "CHANEL Wool Plaid Quilted Mini Vanity Case With Chain Blue", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Gucci", + "product_name": "Monogram Small Craft Tote Light Brown", + "condition": "Shows Wear", + "discounted_price": 35, + "price": 635, + "id": 10724539793711 }, { - "best_value": 0, - "categories": [ - "Browns", - "Womens", - "Coated Canvas", - "Clutch & Evening", - "Crossbody", - "Shoulder Bags", - "Favorite", - "Monogram", - "General", - "Styles", - "Top Designers", - "Louis Vuitton", - "Live Shopping with FASHIONPHILE" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoulder-bags-on-sale", - "bags-under-1000", - "louis-vuitton-shoulder-bags", - "louis-vuitton-favorite-bags", - "louis-vuitton-monogram-bags", - "bags-on-sale", - "louis-vuitton-crossbody-bags", - "instagram-live-shopping", - "louis-vuitton-on-sale", - "louis-vuitton-monogram", - "louis-vuitton", - "top-designers", - "clutch-evening", - "crossbody-bags-on-sale", - "louis-vuitton-bags", - "louis-vuitton-clutches-evening-bags", - "handbag-styles", - "shoulder-bags", - "cross-body", - "favorite" - ], - "description": "This is an authentic LOUIS VUITTON Monogram Favorite MM. This stylish shoulder bag is crafted of monogram coated canvas in brown. The bag features a polished gold chain strap, an optional vachetta shoulder strap, and polished gold hardware. The front flap opens with a magnetic gold bar to a burgundy fabric interior with a flat pocket.", - "discounted_price": 1230, - "discounted_tier": 1, - "filters": { - "bags": [ - "Clutch & Evening", - "Crossbody", - "Shoulder Bags" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Louis Vuitton" - ], - "color": [ - "Browns" - ], - "material": [ - "Coated Canvas" - ], - "bag_feature": [], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$1000-$2000", - "condition": [ - "Shows Wear" - ], - "locations": [ - "New York" - ] - }, - "following_count": 15, - "id": 1590406, - "made_available_at": 1740433108, - "price": 1295, - "priced_at": 1743023884, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/e1a4d49b06a55a6365e1bf70d74cb23d.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/e1a4d49b06a55a6365e1bf70d74cb23d.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/e1a4d49b06a55a6365e1bf70d74cb23d.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/fdcb8ef6c4bc4f7876d6caf70c2b05ef.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/fdcb8ef6c4bc4f7876d6caf70c2b05ef.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/fdcb8ef6c4bc4f7876d6caf70c2b05ef.jpg" - } - ], - "title": "LOUIS VUITTON Monogram Favorite MM", - "title_without_brand": "Monogram Favorite MM", - "_tags": [ - "1590406" - ], - "objectID": "1590406", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-favorite-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-monogram-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-crossbody-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "instagram-live-shopping", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-monogram", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "top-designers", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "clutch-evening", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "crossbody-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-clutches-evening-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "cross-body", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "favorite", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic LOUIS VUITTON Monogram Favorite MM. This stylish shoulder bag is crafted of monogram coated canvas in brown. The bag features a polished gold chain strap, an optional vachetta shoulder strap, and polished gold hardware. The front flap opens with a magnetic gold bar to a burgundy fabric interior with a flat pocket.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Louis Vuitton", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Browns", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Coated Canvas", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1590406", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "LOUIS VUITTON Monogram Favorite MM", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Chanel", + "product_name": "Calfskin Crocodile Embossed Patent Cap Toe CC Slingback Flats 38 Brown Black", + "condition": "Shows Wear", + "discounted_price": 60, + "price": 1160, + "id": 10612289863983 }, { - "best_value": 0, - "categories": [ - "Browns", - "Womens", - "Coated Canvas", - "Clutch & Evening", - "Crossbody", - "Shoulder Bags", - "Favorite", - "Monogram", - "General", - "Styles", - "Top Designers", - "Louis Vuitton", - "Live Shopping with FASHIONPHILE" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoulder-bags-on-sale", - "bags-under-1000", - "louis-vuitton-shoulder-bags", - "louis-vuitton-favorite-bags", - "louis-vuitton-monogram-bags", - "bags-on-sale", - "louis-vuitton-crossbody-bags", - "instagram-live-shopping", - "louis-vuitton-on-sale", - "louis-vuitton-monogram", - "louis-vuitton", - "top-designers", - "clutch-evening", - "crossbody-bags-on-sale", - "louis-vuitton-bags", - "louis-vuitton-clutches-evening-bags", - "handbag-styles", - "shoulder-bags", - "cross-body", - "favorite" - ], - "description": "This is an authentic LOUIS VUITTON Monogram Favorite MM. This stylish shoulder bag is crafted of monogram coated canvas in brown. The bag features a polished gold chain strap, an optional vachetta shoulder strap, and polished gold hardware. The front flap opens with a magnetic gold bar to a burgundy fabric interior with a flat pocket.", - "discounted_price": 1230, - "discounted_tier": 1, - "filters": { - "bags": [ - "Clutch & Evening", - "Crossbody", - "Shoulder Bags" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Louis Vuitton" - ], - "color": [ - "Browns" - ], - "material": [ - "Coated Canvas" - ], - "bag_feature": [], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$1000-$2000", - "condition": [ - "Shows Wear" - ], - "locations": [ - "New York" - ] - }, - "following_count": 15, - "id": 1590406, - "made_available_at": 1740433108, - "price": 1295, - "priced_at": 1743023884, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/e1a4d49b06a55a6365e1bf70d74cb23d.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/e1a4d49b06a55a6365e1bf70d74cb23d.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/e1a4d49b06a55a6365e1bf70d74cb23d.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/fdcb8ef6c4bc4f7876d6caf70c2b05ef.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/fdcb8ef6c4bc4f7876d6caf70c2b05ef.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/fdcb8ef6c4bc4f7876d6caf70c2b05ef.jpg" - } - ], - "title": "LOUIS VUITTON Monogram Favorite MM", - "title_without_brand": "Monogram Favorite MM", - "_tags": [ - "1590406" - ], - "objectID": "1590406", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-favorite-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-monogram-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-crossbody-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "instagram-live-shopping", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-monogram", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "top-designers", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "clutch-evening", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "crossbody-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-clutches-evening-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "cross-body", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "favorite", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic LOUIS VUITTON Monogram Favorite MM. This stylish shoulder bag is crafted of monogram coated canvas in brown. The bag features a polished gold chain strap, an optional vachetta shoulder strap, and polished gold hardware. The front flap opens with a magnetic gold bar to a burgundy fabric interior with a flat pocket.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Louis Vuitton", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Browns", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Coated Canvas", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1590406", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "LOUIS VUITTON Monogram Favorite MM", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Louis Vuitton", + "product_name": "Damier Azur Graceful MM Rose Ballerine", + "condition": "Shows Wear", + "discounted_price": 80, + "price": 1490, + "id": 10746574700847 }, { - "best_value": 0, - "categories": [ - "Browns", - "Womens", - "Coated Canvas", - "Clutch & Evening", - "Crossbody", - "Shoulder Bags", - "Favorite", - "Monogram", - "General", - "Styles", - "Top Designers", - "Louis Vuitton", - "Live Shopping with FASHIONPHILE" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoulder-bags-on-sale", - "bags-under-1000", - "louis-vuitton-shoulder-bags", - "louis-vuitton-favorite-bags", - "louis-vuitton-monogram-bags", - "bags-on-sale", - "louis-vuitton-crossbody-bags", - "instagram-live-shopping", - "louis-vuitton-on-sale", - "louis-vuitton-monogram", - "louis-vuitton", - "top-designers", - "clutch-evening", - "crossbody-bags-on-sale", - "louis-vuitton-bags", - "louis-vuitton-clutches-evening-bags", - "handbag-styles", - "shoulder-bags", - "cross-body", - "favorite" - ], - "description": "This is an authentic LOUIS VUITTON Monogram Favorite MM. This stylish shoulder bag is crafted of monogram coated canvas in brown. The bag features a polished gold chain strap, an optional vachetta shoulder strap, and polished gold hardware. The front flap opens with a magnetic gold bar to a burgundy fabric interior with a flat pocket.", - "discounted_price": 1230, - "discounted_tier": 1, - "filters": { - "bags": [ - "Clutch & Evening", - "Crossbody", - "Shoulder Bags" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Louis Vuitton" - ], - "color": [ - "Browns" - ], - "material": [ - "Coated Canvas" - ], - "bag_feature": [], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$1000-$2000", - "condition": [ - "Shows Wear" - ], - "locations": [ - "New York" - ] - }, - "following_count": 15, - "id": 1590406, - "made_available_at": 1740433108, - "price": 1295, - "priced_at": 1743023884, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/e1a4d49b06a55a6365e1bf70d74cb23d.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/e1a4d49b06a55a6365e1bf70d74cb23d.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/e1a4d49b06a55a6365e1bf70d74cb23d.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/fdcb8ef6c4bc4f7876d6caf70c2b05ef.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/fdcb8ef6c4bc4f7876d6caf70c2b05ef.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/fdcb8ef6c4bc4f7876d6caf70c2b05ef.jpg" - } - ], - "title": "LOUIS VUITTON Monogram Favorite MM", - "title_without_brand": "Monogram Favorite MM", - "_tags": [ - "1590406" - ], - "objectID": "1590406", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-favorite-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-monogram-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-crossbody-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "instagram-live-shopping", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-monogram", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "top-designers", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "clutch-evening", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "crossbody-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-clutches-evening-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "cross-body", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "favorite", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic LOUIS VUITTON Monogram Favorite MM. This stylish shoulder bag is crafted of monogram coated canvas in brown. The bag features a polished gold chain strap, an optional vachetta shoulder strap, and polished gold hardware. The front flap opens with a magnetic gold bar to a burgundy fabric interior with a flat pocket.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Louis Vuitton", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Browns", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Coated Canvas", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1590406", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "LOUIS VUITTON Monogram Favorite MM", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Hermes", + "product_name": "Epsom Horseshoe Kelly Sellier 28 Jaune D'or Etain", + "condition": "Shows Wear", + "discounted_price": 840, + "price": 15955, + "id": 10746574668079 }, { - "best_value": 330, - "categories": [ - "Browns", - "Structured", - "Womens", - "Solid Color", - "Suede Leather", - "Crossbody", - "Handbags", - "Shoulder Bags", - "Styles", - "Chloe" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoulder-bags-on-sale", - "bags-under-1000", - "bags-on-sale", - "crossbody-bags-on-sale", - "handbag-styles", - "shoulder-bags", - "handbags", - "cross-body", - "chloe" - ], - "description": "This is an authentic CHLOE Calfskin Braided Mini Marcie Round Crossbody Bag in Tan. This chic messenger style bag is crafted of suede leather in tan. The bag features a long, flat adjustable leather crossbody strap with aged brass hardware and a full frontal flap with decorative stitching that seals with a brass loop. This shoulder bag opens to a fabric interior with a small patch pocket. ", - "discounted_price": 660, - "discounted_tier": 1, - "filters": { - "bags": [ - "Crossbody", - "Handbags", - "Shoulder Bags" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Chloe" - ], - "color": [ - "Browns" - ], - "material": [ - "Solid Color", - "Suede Leather" - ], - "bag_feature": [ - "Structured" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$500-$1000", - "condition": [ - "Shows Wear" - ], - "locations": [ - "New York" - ] - }, - "following_count": 40, - "id": 1590412, - "made_available_at": 1740433106, - "price": 695, - "priced_at": 1743023883, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/20aeca96b0873a6b40c293d42292b50e.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/20aeca96b0873a6b40c293d42292b50e.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/20aeca96b0873a6b40c293d42292b50e.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/0df3a4d4664970749bd7df828711d414.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/0df3a4d4664970749bd7df828711d414.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/0df3a4d4664970749bd7df828711d414.jpg" - } - ], - "title": "CHLOE Calfskin Braided Mini Marcie Round Crossbody Bag Tan", - "title_without_brand": "Calfskin Braided Mini Marcie Round Crossbody Bag Tan", - "_tags": [ - "1590412" - ], - "objectID": "1590412", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "crossbody-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "cross-body", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chloe", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic CHLOE Calfskin Braided Mini Marcie Round Crossbody Bag in Tan. This chic messenger style bag is crafted of suede leather in tan. The bag features a long, flat adjustable leather crossbody strap with aged brass hardware and a full frontal flap with decorative stitching that seals with a brass loop. This shoulder bag opens to a fabric interior with a small patch pocket. ", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Chloe", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Browns", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Suede Leather", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1590412", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "CHLOE Calfskin Braided Mini Marcie Round Crossbody Bag Tan", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Chanel", + "product_name": "Patent Quilted Tote Black", + "condition": "Shows Wear", + "discounted_price": 45, + "price": 850, + "id": 10746574635311 }, { - "best_value": 330, - "categories": [ - "Browns", - "Structured", - "Womens", - "Solid Color", - "Suede Leather", - "Crossbody", - "Handbags", - "Shoulder Bags", - "Styles", - "Chloe" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoulder-bags-on-sale", - "bags-under-1000", - "bags-on-sale", - "crossbody-bags-on-sale", - "handbag-styles", - "shoulder-bags", - "handbags", - "cross-body", - "chloe" - ], - "description": "This is an authentic CHLOE Calfskin Braided Mini Marcie Round Crossbody Bag in Tan. This chic messenger style bag is crafted of suede leather in tan. The bag features a long, flat adjustable leather crossbody strap with aged brass hardware and a full frontal flap with decorative stitching that seals with a brass loop. This shoulder bag opens to a fabric interior with a small patch pocket. ", - "discounted_price": 660, - "discounted_tier": 1, - "filters": { - "bags": [ - "Crossbody", - "Handbags", - "Shoulder Bags" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Chloe" - ], - "color": [ - "Browns" - ], - "material": [ - "Solid Color", - "Suede Leather" - ], - "bag_feature": [ - "Structured" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$500-$1000", - "condition": [ - "Shows Wear" - ], - "locations": [ - "New York" - ] - }, - "following_count": 40, - "id": 1590412, - "made_available_at": 1740433106, - "price": 695, - "priced_at": 1743023883, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/20aeca96b0873a6b40c293d42292b50e.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/20aeca96b0873a6b40c293d42292b50e.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/20aeca96b0873a6b40c293d42292b50e.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/0df3a4d4664970749bd7df828711d414.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/0df3a4d4664970749bd7df828711d414.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/0df3a4d4664970749bd7df828711d414.jpg" - } - ], - "title": "CHLOE Calfskin Braided Mini Marcie Round Crossbody Bag Tan", - "title_without_brand": "Calfskin Braided Mini Marcie Round Crossbody Bag Tan", - "_tags": [ - "1590412" - ], - "objectID": "1590412", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "crossbody-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "cross-body", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chloe", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic CHLOE Calfskin Braided Mini Marcie Round Crossbody Bag in Tan. This chic messenger style bag is crafted of suede leather in tan. The bag features a long, flat adjustable leather crossbody strap with aged brass hardware and a full frontal flap with decorative stitching that seals with a brass loop. This shoulder bag opens to a fabric interior with a small patch pocket. ", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Chloe", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Browns", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Suede Leather", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1590412", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "CHLOE Calfskin Braided Mini Marcie Round Crossbody Bag Tan", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Chanel", + "product_name": "Shiny Calfskin Velvet Pearl Combat Short Boots 38 Black", + "condition": "Excellent", + "discounted_price": 70, + "price": 1350, + "id": 10746573914415 }, { - "best_value": 330, - "categories": [ - "Browns", - "Structured", - "Womens", - "Solid Color", - "Suede Leather", - "Crossbody", - "Handbags", - "Shoulder Bags", - "Styles", - "Chloe" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoulder-bags-on-sale", - "bags-under-1000", - "bags-on-sale", - "crossbody-bags-on-sale", - "handbag-styles", - "shoulder-bags", - "handbags", - "cross-body", - "chloe" - ], - "description": "This is an authentic CHLOE Calfskin Braided Mini Marcie Round Crossbody Bag in Tan. This chic messenger style bag is crafted of suede leather in tan. The bag features a long, flat adjustable leather crossbody strap with aged brass hardware and a full frontal flap with decorative stitching that seals with a brass loop. This shoulder bag opens to a fabric interior with a small patch pocket. ", - "discounted_price": 660, - "discounted_tier": 1, - "filters": { - "bags": [ - "Crossbody", - "Handbags", - "Shoulder Bags" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Chloe" - ], - "color": [ - "Browns" - ], - "material": [ - "Solid Color", - "Suede Leather" - ], - "bag_feature": [ - "Structured" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$500-$1000", - "condition": [ - "Shows Wear" - ], - "locations": [ - "New York" - ] - }, - "following_count": 40, - "id": 1590412, - "made_available_at": 1740433106, - "price": 695, - "priced_at": 1743023883, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/20aeca96b0873a6b40c293d42292b50e.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/20aeca96b0873a6b40c293d42292b50e.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/20aeca96b0873a6b40c293d42292b50e.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/0df3a4d4664970749bd7df828711d414.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/0df3a4d4664970749bd7df828711d414.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/0df3a4d4664970749bd7df828711d414.jpg" - } - ], - "title": "CHLOE Calfskin Braided Mini Marcie Round Crossbody Bag Tan", - "title_without_brand": "Calfskin Braided Mini Marcie Round Crossbody Bag Tan", - "_tags": [ - "1590412" - ], - "objectID": "1590412", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "crossbody-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "cross-body", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "chloe", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic CHLOE Calfskin Braided Mini Marcie Round Crossbody Bag in Tan. This chic messenger style bag is crafted of suede leather in tan. The bag features a long, flat adjustable leather crossbody strap with aged brass hardware and a full frontal flap with decorative stitching that seals with a brass loop. This shoulder bag opens to a fabric interior with a small patch pocket. ", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Chloe", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Browns", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Suede Leather", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1590412", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "CHLOE Calfskin Braided Mini Marcie Round Crossbody Bag Tan", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Gucci", + "product_name": "Faded Calfskin Double G 30mm Belt 85 34 Black", + "condition": "New", + "discounted_price": 25, + "price": 450, + "id": 10746573783343 }, { - "best_value": 0, - "categories": [ - "Extra Straps", - "Fabrics", - "Accessories", - "Multicolor", - "Browns", - "General", - "Womens", - "Fendi" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "fendi-on-sale", - "extra-straps", - "fendi-accessories", - "fendi", - "accessories" - ], - "description": "This is an authentic FENDI X SARA COLEMAN Canvas Vitello King FF Fish Eye Strap You in Multicolor. This adjustable shoulder strap is crafted of multicolor Fendi logo canvas on a beige fabric background and gold hardware that can attach to your Fendi handbag.", - "discounted_price": 660, - "discounted_tier": 1, - "filters": { - "bags": [], - "jewelry": [], - "accessories": [ - "Extra Straps" - ], - "watches": [], - "shoes": [], - "brands": [ - "Fendi" - ], - "color": [ - "Multicolor", - "Browns" - ], - "material": [ - "Fabrics" - ], - "bag_feature": [], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$500-$1000", - "condition": [ - "Excellent" - ], - "locations": [ - "New York" - ] - }, - "following_count": 13, - "id": 1590427, - "made_available_at": 1740433150, - "price": 695, - "priced_at": 1743023885, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/6755d041851980d2a0dfee123c591547.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/6755d041851980d2a0dfee123c591547.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/6755d041851980d2a0dfee123c591547.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/b93868f8265059ef9b6a8e6314c45207.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/b93868f8265059ef9b6a8e6314c45207.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/b93868f8265059ef9b6a8e6314c45207.jpg" - } - ], - "title": "FENDI X SARA COLEMAN Canvas Vitello King FF Fish Eye Strap You Multicolor", - "title_without_brand": "X SARA COLEMAN Canvas Vitello King FF Fish Eye Strap You Multicolor", - "_tags": [ - "1590427" - ], - "objectID": "1590427", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "fendi-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "extra-straps", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "fendi-accessories", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "fendi", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic FENDI X SARA COLEMAN Canvas Vitello King FF Fish Eye Strap You in Multicolor. This adjustable shoulder strap is crafted of multicolor Fendi logo canvas on a beige fabric background and gold hardware that can attach to your Fendi handbag.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Fendi", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Multicolor", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Browns", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Fabrics", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1590427", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "FENDI X SARA COLEMAN Canvas Vitello King FF Fish Eye Strap You Multicolor", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Chanel", + "product_name": "Lambskin Chevron Quilted Medium Boy Flap Black", + "condition": "Shows Wear", + "discounted_price": 165, + "price": 3145, + "id": 10746573750575 }, { - "best_value": 0, - "categories": [ - "Extra Straps", - "Fabrics", - "Accessories", - "Multicolor", - "Browns", - "General", - "Womens", - "Fendi" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "fendi-on-sale", - "extra-straps", - "fendi-accessories", - "fendi", - "accessories" - ], - "description": "This is an authentic FENDI X SARA COLEMAN Canvas Vitello King FF Fish Eye Strap You in Multicolor. This adjustable shoulder strap is crafted of multicolor Fendi logo canvas on a beige fabric background and gold hardware that can attach to your Fendi handbag.", - "discounted_price": 660, - "discounted_tier": 1, - "filters": { - "bags": [], - "jewelry": [], - "accessories": [ - "Extra Straps" - ], - "watches": [], - "shoes": [], - "brands": [ - "Fendi" - ], - "color": [ - "Multicolor", - "Browns" - ], - "material": [ - "Fabrics" - ], - "bag_feature": [], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$500-$1000", - "condition": [ - "Excellent" - ], - "locations": [ - "New York" - ] - }, - "following_count": 13, - "id": 1590427, - "made_available_at": 1740433150, - "price": 695, - "priced_at": 1743023885, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/6755d041851980d2a0dfee123c591547.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/6755d041851980d2a0dfee123c591547.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/6755d041851980d2a0dfee123c591547.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/b93868f8265059ef9b6a8e6314c45207.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/b93868f8265059ef9b6a8e6314c45207.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/b93868f8265059ef9b6a8e6314c45207.jpg" - } - ], - "title": "FENDI X SARA COLEMAN Canvas Vitello King FF Fish Eye Strap You Multicolor", - "title_without_brand": "X SARA COLEMAN Canvas Vitello King FF Fish Eye Strap You Multicolor", - "_tags": [ - "1590427" - ], - "objectID": "1590427", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "fendi-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "extra-straps", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "fendi-accessories", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "fendi", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic FENDI X SARA COLEMAN Canvas Vitello King FF Fish Eye Strap You in Multicolor. This adjustable shoulder strap is crafted of multicolor Fendi logo canvas on a beige fabric background and gold hardware that can attach to your Fendi handbag.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Fendi", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Multicolor", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Browns", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Fabrics", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1590427", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "FENDI X SARA COLEMAN Canvas Vitello King FF Fish Eye Strap You Multicolor", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Moynat", + "product_name": "Taurillon Blush Baluchon BB Emerald", + "condition": "Excellent", + "discounted_price": 80, + "price": 1550, + "id": 10746573521199 }, { - "best_value": 0, - "categories": [ - "Extra Straps", - "Fabrics", - "Accessories", - "Multicolor", - "Browns", - "General", - "Womens", - "Fendi" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "fendi-on-sale", - "extra-straps", - "fendi-accessories", - "fendi", - "accessories" - ], - "description": "This is an authentic FENDI X SARA COLEMAN Canvas Vitello King FF Fish Eye Strap You in Multicolor. This adjustable shoulder strap is crafted of multicolor Fendi logo canvas on a beige fabric background and gold hardware that can attach to your Fendi handbag.", - "discounted_price": 660, - "discounted_tier": 1, - "filters": { - "bags": [], - "jewelry": [], - "accessories": [ - "Extra Straps" - ], - "watches": [], - "shoes": [], - "brands": [ - "Fendi" - ], - "color": [ - "Multicolor", - "Browns" - ], - "material": [ - "Fabrics" - ], - "bag_feature": [], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$500-$1000", - "condition": [ - "Excellent" - ], - "locations": [ - "New York" - ] - }, - "following_count": 13, - "id": 1590427, - "made_available_at": 1740433150, + "brand_name": "Louis Vuitton", + "product_name": "Monogram 2016 Christmas Animation Mini Pochette Accessories Rose Ballerine", + "condition": "Excellent", + "discounted_price": 35, "price": 695, - "priced_at": 1743023885, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/6755d041851980d2a0dfee123c591547.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/6755d041851980d2a0dfee123c591547.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/6755d041851980d2a0dfee123c591547.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/b93868f8265059ef9b6a8e6314c45207.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/b93868f8265059ef9b6a8e6314c45207.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/b93868f8265059ef9b6a8e6314c45207.jpg" - } - ], - "title": "FENDI X SARA COLEMAN Canvas Vitello King FF Fish Eye Strap You Multicolor", - "title_without_brand": "X SARA COLEMAN Canvas Vitello King FF Fish Eye Strap You Multicolor", - "_tags": [ - "1590427" - ], - "objectID": "1590427", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "fendi-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "extra-straps", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "fendi-accessories", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "fendi", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic FENDI X SARA COLEMAN Canvas Vitello King FF Fish Eye Strap You in Multicolor. This adjustable shoulder strap is crafted of multicolor Fendi logo canvas on a beige fabric background and gold hardware that can attach to your Fendi handbag.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Fendi", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Multicolor", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Browns", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Fabrics", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1590427", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "FENDI X SARA COLEMAN Canvas Vitello King FF Fish Eye Strap You Multicolor", - "matchLevel": "none", - "matchedWords": [] - } - } + "id": 10746573390127 }, { - "best_value": 40, - "categories": [ - "Browns", - "Structured", - "Zip Top", - "Coated Canvas", - "Belt Bags", - "Crossbody", - "Shoulder Bags", - "Monogram", - "Styles", - "Top Designers", - "Louis Vuitton" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoulder-bags-on-sale", - "under-1000-belt-bags", - "bags-under-1000", - "louis-vuitton-shoulder-bags", - "louis-vuitton-monogram-bags", - "bags-on-sale", - "louis-vuitton-crossbody-bags", - "belt-bags", - "louis-vuitton-on-sale", - "belt-bags-on-sale", - "louis-vuitton-monogram", - "louis-vuitton", - "louis-vuitton-belt-bags", - "top-designers", - "crossbody-bags-on-sale", - "zip-top", - "louis-vuitton-bags", - "handbag-styles", - "louis-vuitton-bumbag", - "shoulder-bags", - "cross-body" - ], - "description": "This is an authentic LOUIS VUITTON Monogram Mini Bumbag. This stylish belt bag is created out of a traditional Louis Vuitton monogram on coated canvas. The bag features a front zipper pocket, an optional vachetta cowhide adjustable leather shoulder strap, and a removable short gold chain short strap. The main zipper opens to a brown microfiber interior.", - "discounted_price": 1990, - "discounted_tier": 1, - "filters": { - "bags": [ - "Belt Bags", - "Crossbody", - "Shoulder Bags" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Louis Vuitton" - ], - "color": [ - "Browns" - ], - "material": [ - "Coated Canvas" - ], - "bag_feature": [ - "Structured", - "Zip Top" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$1000-$2000", - "condition": [ - "Excellent" - ], - "locations": [ - "New York" - ] - }, - "following_count": 36, - "id": 1590803, - "made_available_at": 1740430706, - "price": 2095, - "priced_at": 1743019217, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/3383a2cd088a6c615112e2427caf02d0.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/3383a2cd088a6c615112e2427caf02d0.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/3383a2cd088a6c615112e2427caf02d0.jpg" - }, - { - "order": 2, - "path": "/thumb/51f4221a563168a20695333f71a6021e/8e0837919f089f335574ac37bd932f48.jpg", - "thumb": "/thumb/51f4221a563168a20695333f71a6021e/8e0837919f089f335574ac37bd932f48.jpg", - "tiny": "/tiny/51f4221a563168a20695333f71a6021e/8e0837919f089f335574ac37bd932f48.jpg" - } - ], - "title": "LOUIS VUITTON Monogram Mini Bumbag", - "title_without_brand": "Monogram Mini Bumbag", - "_tags": [ - "1590803" - ], - "objectID": "1590803", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "under-1000-belt-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-monogram-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-crossbody-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "belt-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "belt-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-monogram", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-belt-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "top-designers", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "crossbody-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "zip-top", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-bumbag", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "cross-body", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic LOUIS VUITTON Monogram Mini Bumbag. This stylish belt bag is created out of a traditional Louis Vuitton monogram on coated canvas. The bag features a front zipper pocket, an optional vachetta cowhide adjustable leather shoulder strap, and a removable short gold chain short strap. The main zipper opens to a brown microfiber interior.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Louis Vuitton", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Browns", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Coated Canvas", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1590803", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "LOUIS VUITTON Monogram Mini Bumbag", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Louis Vuitton", + "product_name": "Empreinte Surene MM Black", + "condition": "Shows Wear", + "discounted_price": 110, + "price": 2045, + "id": 10746573226287 }, { - "best_value": 40, - "categories": [ - "Browns", - "Structured", - "Zip Top", - "Coated Canvas", - "Belt Bags", - "Crossbody", - "Shoulder Bags", - "Monogram", - "Styles", - "Top Designers", - "Louis Vuitton" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoulder-bags-on-sale", - "under-1000-belt-bags", - "bags-under-1000", - "louis-vuitton-shoulder-bags", - "louis-vuitton-monogram-bags", - "bags-on-sale", - "louis-vuitton-crossbody-bags", - "belt-bags", - "louis-vuitton-on-sale", - "belt-bags-on-sale", - "louis-vuitton-monogram", - "louis-vuitton", - "louis-vuitton-belt-bags", - "top-designers", - "crossbody-bags-on-sale", - "zip-top", - "louis-vuitton-bags", - "handbag-styles", - "louis-vuitton-bumbag", - "shoulder-bags", - "cross-body" - ], - "description": "This is an authentic LOUIS VUITTON Monogram Mini Bumbag. This stylish belt bag is created out of a traditional Louis Vuitton monogram on coated canvas. The bag features a front zipper pocket, an optional vachetta cowhide adjustable leather shoulder strap, and a removable short gold chain short strap. The main zipper opens to a brown microfiber interior.", - "discounted_price": 1990, - "discounted_tier": 1, - "filters": { - "bags": [ - "Belt Bags", - "Crossbody", - "Shoulder Bags" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Louis Vuitton" - ], - "color": [ - "Browns" - ], - "material": [ - "Coated Canvas" - ], - "bag_feature": [ - "Structured", - "Zip Top" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$1000-$2000", - "condition": [ - "Excellent" - ], - "locations": [ - "New York" - ] - }, - "following_count": 36, - "id": 1590803, - "made_available_at": 1740430706, - "price": 2095, - "priced_at": 1743019217, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/3383a2cd088a6c615112e2427caf02d0.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/3383a2cd088a6c615112e2427caf02d0.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/3383a2cd088a6c615112e2427caf02d0.jpg" - }, - { - "order": 2, - "path": "/thumb/51f4221a563168a20695333f71a6021e/8e0837919f089f335574ac37bd932f48.jpg", - "thumb": "/thumb/51f4221a563168a20695333f71a6021e/8e0837919f089f335574ac37bd932f48.jpg", - "tiny": "/tiny/51f4221a563168a20695333f71a6021e/8e0837919f089f335574ac37bd932f48.jpg" - } - ], - "title": "LOUIS VUITTON Monogram Mini Bumbag", - "title_without_brand": "Monogram Mini Bumbag", - "_tags": [ - "1590803" - ], - "objectID": "1590803", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "under-1000-belt-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-monogram-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-crossbody-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "belt-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "belt-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-monogram", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-belt-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "top-designers", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "crossbody-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "zip-top", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-bumbag", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "cross-body", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic LOUIS VUITTON Monogram Mini Bumbag. This stylish belt bag is created out of a traditional Louis Vuitton monogram on coated canvas. The bag features a front zipper pocket, an optional vachetta cowhide adjustable leather shoulder strap, and a removable short gold chain short strap. The main zipper opens to a brown microfiber interior.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Louis Vuitton", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Browns", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Coated Canvas", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1590803", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "LOUIS VUITTON Monogram Mini Bumbag", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Van Cleef & Arpels", + "product_name": "18K Yellow Gold 5 Motifs Guilloche Vintage Alhambra Bracelet", + "condition": "Excellent", + "discounted_price": 400, + "price": 7575, + "id": 10746572767535 }, { - "best_value": 40, - "categories": [ - "Browns", - "Structured", - "Zip Top", - "Coated Canvas", - "Belt Bags", - "Crossbody", - "Shoulder Bags", - "Monogram", - "Styles", - "Top Designers", - "Louis Vuitton" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoulder-bags-on-sale", - "under-1000-belt-bags", - "bags-under-1000", - "louis-vuitton-shoulder-bags", - "louis-vuitton-monogram-bags", - "bags-on-sale", - "louis-vuitton-crossbody-bags", - "belt-bags", - "louis-vuitton-on-sale", - "belt-bags-on-sale", - "louis-vuitton-monogram", - "louis-vuitton", - "louis-vuitton-belt-bags", - "top-designers", - "crossbody-bags-on-sale", - "zip-top", - "louis-vuitton-bags", - "handbag-styles", - "louis-vuitton-bumbag", - "shoulder-bags", - "cross-body" - ], - "description": "This is an authentic LOUIS VUITTON Monogram Mini Bumbag. This stylish belt bag is created out of a traditional Louis Vuitton monogram on coated canvas. The bag features a front zipper pocket, an optional vachetta cowhide adjustable leather shoulder strap, and a removable short gold chain short strap. The main zipper opens to a brown microfiber interior.", - "discounted_price": 1990, - "discounted_tier": 1, - "filters": { - "bags": [ - "Belt Bags", - "Crossbody", - "Shoulder Bags" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Louis Vuitton" - ], - "color": [ - "Browns" - ], - "material": [ - "Coated Canvas" - ], - "bag_feature": [ - "Structured", - "Zip Top" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$1000-$2000", - "condition": [ - "Excellent" - ], - "locations": [ - "New York" - ] - }, - "following_count": 36, - "id": 1590803, - "made_available_at": 1740430706, - "price": 2095, - "priced_at": 1743019217, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/3383a2cd088a6c615112e2427caf02d0.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/3383a2cd088a6c615112e2427caf02d0.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/3383a2cd088a6c615112e2427caf02d0.jpg" - }, - { - "order": 2, - "path": "/thumb/51f4221a563168a20695333f71a6021e/8e0837919f089f335574ac37bd932f48.jpg", - "thumb": "/thumb/51f4221a563168a20695333f71a6021e/8e0837919f089f335574ac37bd932f48.jpg", - "tiny": "/tiny/51f4221a563168a20695333f71a6021e/8e0837919f089f335574ac37bd932f48.jpg" - } - ], - "title": "LOUIS VUITTON Monogram Mini Bumbag", - "title_without_brand": "Monogram Mini Bumbag", - "_tags": [ - "1590803" - ], - "objectID": "1590803", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "under-1000-belt-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-monogram-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-crossbody-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "belt-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "belt-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-monogram", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-belt-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "top-designers", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "crossbody-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "zip-top", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-bumbag", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "cross-body", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic LOUIS VUITTON Monogram Mini Bumbag. This stylish belt bag is created out of a traditional Louis Vuitton monogram on coated canvas. The bag features a front zipper pocket, an optional vachetta cowhide adjustable leather shoulder strap, and a removable short gold chain short strap. The main zipper opens to a brown microfiber interior.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Louis Vuitton", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Browns", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Coated Canvas", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1590803", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "LOUIS VUITTON Monogram Mini Bumbag", - "matchLevel": "none", - "matchedWords": [] - } - } - }, - { - "best_value": 215, - "categories": [ - "Wallets", - "Browns", - "Reds", - "Coated Canvas", - "Damier", - "Accessories", - "Beaded & Sequins", - "Louis Vuitton" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "damier", - "louis-vuitton-on-sale", - "louis-vuitton-wallets", - "louis-vuitton", - "wallets-on-sale", - "accessories-on-sale", - "wallets", - "accessories" - ], - "description": "This is an authentic LOUIS VUITTON Damier Ebene Studded Sarah Wallet NM in Cherry. This stylish wallet is crafted of Louis Vuitton signature damier canvas in brown. This wallet features a studded V shaped front flap which opens to a red cross grain leather interior with card slot panels, patch pockets and a central zipper coin compartment.", - "discounted_price": 595, - "discounted_tier": 1, - "filters": { - "bags": [], - "jewelry": [], - "accessories": [ - "Wallets" - ], - "watches": [], - "shoes": [], - "brands": [ - "Louis Vuitton" - ], - "color": [ - "Browns", - "Reds" - ], - "material": [ - "Coated Canvas", - "Beaded & Sequins" - ], - "bag_feature": [], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$500-$1000", - "condition": [ - "Shows Wear" - ], - "locations": [ - "New York" - ] - }, - "following_count": 17, - "id": 1590844, - "made_available_at": 1740433155, - "price": 625, - "priced_at": 1743023885, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/ca2b0f10802fc7788d06444f9c352f87.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/ca2b0f10802fc7788d06444f9c352f87.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/ca2b0f10802fc7788d06444f9c352f87.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/e4a6eaac126cb82029b28982582645c7.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/e4a6eaac126cb82029b28982582645c7.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/e4a6eaac126cb82029b28982582645c7.jpg" - } - ], - "title": "LOUIS VUITTON Damier Ebene Studded Sarah Wallet NM Cherry", - "title_without_brand": "Damier Ebene Studded Sarah Wallet NM Cherry", - "_tags": [ - "1590844" - ], - "objectID": "1590844", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "damier", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-wallets", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "wallets-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "wallets", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic LOUIS VUITTON Damier Ebene Studded Sarah Wallet NM in Cherry. This stylish wallet is crafted of Louis Vuitton signature damier canvas in brown. This wallet features a studded V shaped front flap which opens to a red cross grain leather interior with card slot panels, patch pockets and a central zipper coin compartment.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Louis Vuitton", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Browns", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Reds", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Coated Canvas", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Beaded & Sequins", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1590844", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "LOUIS VUITTON Damier Ebene Studded Sarah Wallet NM Cherry", - "matchLevel": "none", - "matchedWords": [] - } - } - }, - { - "best_value": 215, - "categories": [ - "Wallets", - "Browns", - "Reds", - "Coated Canvas", - "Damier", - "Accessories", - "Beaded & Sequins", - "Louis Vuitton" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "damier", - "louis-vuitton-on-sale", - "louis-vuitton-wallets", - "louis-vuitton", - "wallets-on-sale", - "accessories-on-sale", - "wallets", - "accessories" - ], - "description": "This is an authentic LOUIS VUITTON Damier Ebene Studded Sarah Wallet NM in Cherry. This stylish wallet is crafted of Louis Vuitton signature damier canvas in brown. This wallet features a studded V shaped front flap which opens to a red cross grain leather interior with card slot panels, patch pockets and a central zipper coin compartment.", - "discounted_price": 595, - "discounted_tier": 1, - "filters": { - "bags": [], - "jewelry": [], - "accessories": [ - "Wallets" - ], - "watches": [], - "shoes": [], - "brands": [ - "Louis Vuitton" - ], - "color": [ - "Browns", - "Reds" - ], - "material": [ - "Coated Canvas", - "Beaded & Sequins" - ], - "bag_feature": [], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$500-$1000", - "condition": [ - "Shows Wear" - ], - "locations": [ - "New York" - ] - }, - "following_count": 17, - "id": 1590844, - "made_available_at": 1740433155, - "price": 625, - "priced_at": 1743023885, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/ca2b0f10802fc7788d06444f9c352f87.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/ca2b0f10802fc7788d06444f9c352f87.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/ca2b0f10802fc7788d06444f9c352f87.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/e4a6eaac126cb82029b28982582645c7.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/e4a6eaac126cb82029b28982582645c7.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/e4a6eaac126cb82029b28982582645c7.jpg" - } - ], - "title": "LOUIS VUITTON Damier Ebene Studded Sarah Wallet NM Cherry", - "title_without_brand": "Damier Ebene Studded Sarah Wallet NM Cherry", - "_tags": [ - "1590844" - ], - "objectID": "1590844", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "damier", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-wallets", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "wallets-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "wallets", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic LOUIS VUITTON Damier Ebene Studded Sarah Wallet NM in Cherry. This stylish wallet is crafted of Louis Vuitton signature damier canvas in brown. This wallet features a studded V shaped front flap which opens to a red cross grain leather interior with card slot panels, patch pockets and a central zipper coin compartment.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Louis Vuitton", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Browns", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Reds", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Coated Canvas", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Beaded & Sequins", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1590844", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "LOUIS VUITTON Damier Ebene Studded Sarah Wallet NM Cherry", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Louis Vuitton", + "product_name": "Damier Ebene Altona PM Briefcase", + "condition": "Shows Wear", + "discounted_price": 35, + "price": 650, + "id": 10746572570927 }, { - "best_value": 215, - "categories": [ - "Wallets", - "Browns", - "Reds", - "Coated Canvas", - "Damier", - "Accessories", - "Beaded & Sequins", - "Louis Vuitton" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "damier", - "louis-vuitton-on-sale", - "louis-vuitton-wallets", - "louis-vuitton", - "wallets-on-sale", - "accessories-on-sale", - "wallets", - "accessories" - ], - "description": "This is an authentic LOUIS VUITTON Damier Ebene Studded Sarah Wallet NM in Cherry. This stylish wallet is crafted of Louis Vuitton signature damier canvas in brown. This wallet features a studded V shaped front flap which opens to a red cross grain leather interior with card slot panels, patch pockets and a central zipper coin compartment.", - "discounted_price": 595, - "discounted_tier": 1, - "filters": { - "bags": [], - "jewelry": [], - "accessories": [ - "Wallets" - ], - "watches": [], - "shoes": [], - "brands": [ - "Louis Vuitton" - ], - "color": [ - "Browns", - "Reds" - ], - "material": [ - "Coated Canvas", - "Beaded & Sequins" - ], - "bag_feature": [], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$500-$1000", - "condition": [ - "Shows Wear" - ], - "locations": [ - "New York" - ] - }, - "following_count": 17, - "id": 1590844, - "made_available_at": 1740433155, - "price": 625, - "priced_at": 1743023885, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/ca2b0f10802fc7788d06444f9c352f87.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/ca2b0f10802fc7788d06444f9c352f87.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/ca2b0f10802fc7788d06444f9c352f87.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/e4a6eaac126cb82029b28982582645c7.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/e4a6eaac126cb82029b28982582645c7.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/e4a6eaac126cb82029b28982582645c7.jpg" - } - ], - "title": "LOUIS VUITTON Damier Ebene Studded Sarah Wallet NM Cherry", - "title_without_brand": "Damier Ebene Studded Sarah Wallet NM Cherry", - "_tags": [ - "1590844" - ], - "objectID": "1590844", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "damier", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-wallets", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "wallets-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "wallets", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic LOUIS VUITTON Damier Ebene Studded Sarah Wallet NM in Cherry. This stylish wallet is crafted of Louis Vuitton signature damier canvas in brown. This wallet features a studded V shaped front flap which opens to a red cross grain leather interior with card slot panels, patch pockets and a central zipper coin compartment.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Louis Vuitton", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Browns", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Reds", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Coated Canvas", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Beaded & Sequins", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1590844", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "LOUIS VUITTON Damier Ebene Studded Sarah Wallet NM Cherry", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Chanel", + "product_name": "Lambskin Quilted Jumbo Double Flap Black", + "condition": "Shows Wear", + "discounted_price": 285, + "price": 5420, + "id": 10652547219759 }, { - "best_value": 585, - "categories": [ - "Editor's Picks", - "Versatile ", - "Browns", - "Open Top", - "Structured", - "Top Handles", - "Womens", - "Coated Canvas", - "Handbags", - "Totes", - "Monogram", - "General", - "Styles", - "Onthego", - "Friends & Family Event", - "Oversized Bags", - "Hot Picks Sale", - "Designer Deals", - "Gifts for Her", - "Shoulder Bags", - "Louis Vuitton" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "onthego", - "louis-vuitton-onthego-bags", - "shoulder-bags-on-sale", - "designer-deals", - "oversized-bags", - "bags-under-1000", - "louis-vuitton-shoulder-bags", - "louis-vuitton-monogram-bags", - "bags-on-sale", - "louis-vuitton-on-sale", - "totes-on-sale", - "louis-vuitton-monogram", - "louis-vuitton", - "gifts-for-her", - "top-handles", - "totes", - "most-wanted", - "louis-vuitton-bags", - "handbag-styles", - "friends-and-family-event", - "shoulder-bags", - "handbags", - "louis-vuitton-totes" - ], - "description": "This is an authentic LOUIS VUITTON Reverse Monogram Giant Onthego GM. This limited edition tote features oversized and classic sized versions of the Louis Vuitton monogram printed on coated canvas in brown and beige. The bag features rolled top handles and long shoulder straps that can be tucked away inside the bag, accented with polished gold-toned hardware. The top is open to a spacious red fabric interior with zipper and patch pockets.", - "discounted_price": 2515, - "discounted_tier": 1, - "filters": { - "bags": [ - "Handbags", - "Totes", - "Shoulder Bags" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Louis Vuitton" - ], - "color": [ - "Browns" - ], - "material": [ - "Coated Canvas" - ], - "bag_feature": [ - "Open Top", - "Structured", - "Top Handles" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "Over $2000", - "condition": [ - "Excellent" - ], - "locations": [ - "New York" - ] - }, - "following_count": 32, - "id": 1590857, - "made_available_at": 1740433199, - "price": 2650, - "priced_at": 1743023887, - "thumbnails": [ - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/3c2bc30e25fe62e966299712c5129db9.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/3c2bc30e25fe62e966299712c5129db9.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/3c2bc30e25fe62e966299712c5129db9.jpg" - }, - { - "order": 2, - "path": "/thumb/fb0c1a3511cd6aa055a36968f70bcc96/f8f6962d8ca2e273975e4ef486f3fc9e.jpg", - "thumb": "/thumb/fb0c1a3511cd6aa055a36968f70bcc96/f8f6962d8ca2e273975e4ef486f3fc9e.jpg", - "tiny": "/tiny/fb0c1a3511cd6aa055a36968f70bcc96/f8f6962d8ca2e273975e4ef486f3fc9e.jpg" - } - ], - "title": "LOUIS VUITTON Reverse Monogram Giant Onthego GM", - "title_without_brand": "Reverse Monogram Giant Onthego GM", - "_tags": [ - "1590857" - ], - "objectID": "1590857", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "onthego", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-onthego-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "designer-deals", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "oversized-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-monogram-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "totes-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-monogram", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gifts-for-her", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "top-handles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "totes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "most-wanted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "friends-and-family-event", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-totes", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic LOUIS VUITTON Reverse Monogram Giant Onthego GM. This limited edition tote features oversized and classic sized versions of the Louis Vuitton monogram printed on coated canvas in brown and beige. The bag features rolled top handles and long shoulder straps that can be tucked away inside the bag, accented with polished gold-toned hardware. The top is open to a spacious red fabric interior with zipper and patch pockets.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Louis Vuitton", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Browns", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Coated Canvas", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1590857", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "LOUIS VUITTON Reverse Monogram Giant Onthego GM", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Saint Laurent", + "product_name": "Canvas Rive Gauche City Backpack White Black", + "condition": "Shows Wear", + "discounted_price": 35, + "price": 650, + "id": 10746571718959 }, { - "best_value": 585, - "categories": [ - "Editor's Picks", - "Versatile ", - "Browns", - "Open Top", - "Structured", - "Top Handles", - "Womens", - "Coated Canvas", - "Handbags", - "Totes", - "Monogram", - "General", - "Styles", - "Onthego", - "Friends & Family Event", - "Oversized Bags", - "Hot Picks Sale", - "Designer Deals", - "Gifts for Her", - "Shoulder Bags", - "Louis Vuitton" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "onthego", - "louis-vuitton-onthego-bags", - "shoulder-bags-on-sale", - "designer-deals", - "oversized-bags", - "bags-under-1000", - "louis-vuitton-shoulder-bags", - "louis-vuitton-monogram-bags", - "bags-on-sale", - "louis-vuitton-on-sale", - "totes-on-sale", - "louis-vuitton-monogram", - "louis-vuitton", - "gifts-for-her", - "top-handles", - "totes", - "most-wanted", - "louis-vuitton-bags", - "handbag-styles", - "friends-and-family-event", - "shoulder-bags", - "handbags", - "louis-vuitton-totes" - ], - "description": "This is an authentic LOUIS VUITTON Reverse Monogram Giant Onthego GM. This limited edition tote features oversized and classic sized versions of the Louis Vuitton monogram printed on coated canvas in brown and beige. The bag features rolled top handles and long shoulder straps that can be tucked away inside the bag, accented with polished gold-toned hardware. The top is open to a spacious red fabric interior with zipper and patch pockets.", - "discounted_price": 2515, - "discounted_tier": 1, - "filters": { - "bags": [ - "Handbags", - "Totes", - "Shoulder Bags" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Louis Vuitton" - ], - "color": [ - "Browns" - ], - "material": [ - "Coated Canvas" - ], - "bag_feature": [ - "Open Top", - "Structured", - "Top Handles" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "Over $2000", - "condition": [ - "Excellent" - ], - "locations": [ - "New York" - ] - }, - "following_count": 32, - "id": 1590857, - "made_available_at": 1740433199, - "price": 2650, - "priced_at": 1743023887, - "thumbnails": [ - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/3c2bc30e25fe62e966299712c5129db9.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/3c2bc30e25fe62e966299712c5129db9.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/3c2bc30e25fe62e966299712c5129db9.jpg" - }, - { - "order": 2, - "path": "/thumb/fb0c1a3511cd6aa055a36968f70bcc96/f8f6962d8ca2e273975e4ef486f3fc9e.jpg", - "thumb": "/thumb/fb0c1a3511cd6aa055a36968f70bcc96/f8f6962d8ca2e273975e4ef486f3fc9e.jpg", - "tiny": "/tiny/fb0c1a3511cd6aa055a36968f70bcc96/f8f6962d8ca2e273975e4ef486f3fc9e.jpg" - } - ], - "title": "LOUIS VUITTON Reverse Monogram Giant Onthego GM", - "title_without_brand": "Reverse Monogram Giant Onthego GM", - "_tags": [ - "1590857" - ], - "objectID": "1590857", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "onthego", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-onthego-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "designer-deals", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "oversized-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-monogram-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "totes-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-monogram", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gifts-for-her", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "top-handles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "totes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "most-wanted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "friends-and-family-event", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-totes", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic LOUIS VUITTON Reverse Monogram Giant Onthego GM. This limited edition tote features oversized and classic sized versions of the Louis Vuitton monogram printed on coated canvas in brown and beige. The bag features rolled top handles and long shoulder straps that can be tucked away inside the bag, accented with polished gold-toned hardware. The top is open to a spacious red fabric interior with zipper and patch pockets.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Louis Vuitton", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Browns", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Coated Canvas", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1590857", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "LOUIS VUITTON Reverse Monogram Giant Onthego GM", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Hermes", + "product_name": "Epsom Horseshoe Kelly Sellier 28 Rouge Casaque Black", + "condition": "Shows Wear", + "discounted_price": 890, + "price": 16955, + "id": 10746571620655 }, { - "best_value": 585, - "categories": [ - "Editor's Picks", - "Versatile ", - "Browns", - "Open Top", - "Structured", - "Top Handles", - "Womens", - "Coated Canvas", - "Handbags", - "Totes", - "Monogram", - "General", - "Styles", - "Onthego", - "Friends & Family Event", - "Oversized Bags", - "Hot Picks Sale", - "Designer Deals", - "Gifts for Her", - "Shoulder Bags", - "Louis Vuitton" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "onthego", - "louis-vuitton-onthego-bags", - "shoulder-bags-on-sale", - "designer-deals", - "oversized-bags", - "bags-under-1000", - "louis-vuitton-shoulder-bags", - "louis-vuitton-monogram-bags", - "bags-on-sale", - "louis-vuitton-on-sale", - "totes-on-sale", - "louis-vuitton-monogram", - "louis-vuitton", - "gifts-for-her", - "top-handles", - "totes", - "most-wanted", - "louis-vuitton-bags", - "handbag-styles", - "friends-and-family-event", - "shoulder-bags", - "handbags", - "louis-vuitton-totes" - ], - "description": "This is an authentic LOUIS VUITTON Reverse Monogram Giant Onthego GM. This limited edition tote features oversized and classic sized versions of the Louis Vuitton monogram printed on coated canvas in brown and beige. The bag features rolled top handles and long shoulder straps that can be tucked away inside the bag, accented with polished gold-toned hardware. The top is open to a spacious red fabric interior with zipper and patch pockets.", - "discounted_price": 2515, - "discounted_tier": 1, - "filters": { - "bags": [ - "Handbags", - "Totes", - "Shoulder Bags" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Louis Vuitton" - ], - "color": [ - "Browns" - ], - "material": [ - "Coated Canvas" - ], - "bag_feature": [ - "Open Top", - "Structured", - "Top Handles" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "Over $2000", - "condition": [ - "Excellent" - ], - "locations": [ - "New York" - ] - }, - "following_count": 32, - "id": 1590857, - "made_available_at": 1740433199, - "price": 2650, - "priced_at": 1743023887, - "thumbnails": [ - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/3c2bc30e25fe62e966299712c5129db9.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/3c2bc30e25fe62e966299712c5129db9.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/3c2bc30e25fe62e966299712c5129db9.jpg" - }, - { - "order": 2, - "path": "/thumb/fb0c1a3511cd6aa055a36968f70bcc96/f8f6962d8ca2e273975e4ef486f3fc9e.jpg", - "thumb": "/thumb/fb0c1a3511cd6aa055a36968f70bcc96/f8f6962d8ca2e273975e4ef486f3fc9e.jpg", - "tiny": "/tiny/fb0c1a3511cd6aa055a36968f70bcc96/f8f6962d8ca2e273975e4ef486f3fc9e.jpg" - } - ], - "title": "LOUIS VUITTON Reverse Monogram Giant Onthego GM", - "title_without_brand": "Reverse Monogram Giant Onthego GM", - "_tags": [ - "1590857" - ], - "objectID": "1590857", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "onthego", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-onthego-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "designer-deals", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "oversized-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-monogram-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "totes-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-monogram", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gifts-for-her", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "top-handles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "totes", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "most-wanted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "friends-and-family-event", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-totes", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic LOUIS VUITTON Reverse Monogram Giant Onthego GM. This limited edition tote features oversized and classic sized versions of the Louis Vuitton monogram printed on coated canvas in brown and beige. The bag features rolled top handles and long shoulder straps that can be tucked away inside the bag, accented with polished gold-toned hardware. The top is open to a spacious red fabric interior with zipper and patch pockets.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Louis Vuitton", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Browns", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Coated Canvas", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1590857", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "LOUIS VUITTON Reverse Monogram Giant Onthego GM", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Chanel", + "product_name": "Calfskin Quilted Small XXL Travel Flap Bag Red", + "condition": "Shows Wear", + "discounted_price": 380, + "price": 7215, + "id": 10547366789423 }, { - "best_value": 675, - "categories": [ - "Browns", - "Multicolor", - "Open Top", - "Structured", - "Top Handles", - "Coated Canvas", - "Handbags", - "Shoulder Bags", - "Monogram", - "Styles", - "Blues", - "Pink", - "General", - "Womens", - "Louis Vuitton", - "Live Shopping with FASHIONPHILE" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoulder-bags-on-sale", - "bags-under-1000", - "louis-vuitton-shoulder-bags", - "louis-vuitton-monogram-bags", - "bags-on-sale", - "instagram-live-shopping", - "louis-vuitton-on-sale", - "louis-vuitton-monogram", - "louis-vuitton", - "top-handles", - "louis-vuitton-bags", - "handbag-styles", - "shoulder-bags", - "handbags" - ], - "description": "This is an authentic LOUIS VUITTON Monogram Flandrin in Navy and Mauve. This stylish bag is crafted of monogram coated canvas. The hand bag features navy blue leather corners, mauve rolled leather handles, an optional leather shoulder strap, and polished brass hardware. The top opens to a mauve microfiber interior with a central zipper compartment.", - "discounted_price": 1185, - "discounted_tier": 1, - "filters": { - "bags": [ - "Handbags", - "Shoulder Bags" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Louis Vuitton" - ], - "color": [ - "Browns", - "Multicolor", - "Blues", - "Pink" - ], - "material": [ - "Coated Canvas" - ], - "bag_feature": [ - "Open Top", - "Structured", - "Top Handles" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$1000-$2000", - "condition": [ - "Shows Wear" - ], - "locations": [ - "New York" - ] - }, - "following_count": 40, - "id": 1590904, - "made_available_at": 1740433161, - "price": 1250, - "priced_at": 1743023886, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/165eb25195ea378ee96b2fb03a03eddc.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/165eb25195ea378ee96b2fb03a03eddc.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/165eb25195ea378ee96b2fb03a03eddc.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/d1600082875c2795e415329c6f3c3f0c.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/d1600082875c2795e415329c6f3c3f0c.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/d1600082875c2795e415329c6f3c3f0c.jpg" - } - ], - "title": "LOUIS VUITTON Monogram Flandrin Navy Mauve", - "title_without_brand": "Monogram Flandrin Navy Mauve", - "_tags": [ - "1590904" - ], - "objectID": "1590904", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-monogram-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "instagram-live-shopping", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-monogram", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "top-handles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic LOUIS VUITTON Monogram Flandrin in Navy and Mauve. This stylish bag is crafted of monogram coated canvas. The hand bag features navy blue leather corners, mauve rolled leather handles, an optional leather shoulder strap, and polished brass hardware. The top opens to a mauve microfiber interior with a central zipper compartment.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Louis Vuitton", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Browns", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Multicolor", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Blues", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Pink", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Coated Canvas", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1590904", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "LOUIS VUITTON Monogram Flandrin Navy Mauve", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Chanel", + "product_name": "Lambskin Quilted Small Buckle Camera Case Bag Black", + "condition": "Shows Wear", + "discounted_price": 150, + "price": 2805, + "id": 10547348570415 }, { - "best_value": 675, - "categories": [ - "Browns", - "Multicolor", - "Open Top", - "Structured", - "Top Handles", - "Coated Canvas", - "Handbags", - "Shoulder Bags", - "Monogram", - "Styles", - "Blues", - "Pink", - "General", - "Womens", - "Louis Vuitton", - "Live Shopping with FASHIONPHILE" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoulder-bags-on-sale", - "bags-under-1000", - "louis-vuitton-shoulder-bags", - "louis-vuitton-monogram-bags", - "bags-on-sale", - "instagram-live-shopping", - "louis-vuitton-on-sale", - "louis-vuitton-monogram", - "louis-vuitton", - "top-handles", - "louis-vuitton-bags", - "handbag-styles", - "shoulder-bags", - "handbags" - ], - "description": "This is an authentic LOUIS VUITTON Monogram Flandrin in Navy and Mauve. This stylish bag is crafted of monogram coated canvas. The hand bag features navy blue leather corners, mauve rolled leather handles, an optional leather shoulder strap, and polished brass hardware. The top opens to a mauve microfiber interior with a central zipper compartment.", - "discounted_price": 1185, - "discounted_tier": 1, - "filters": { - "bags": [ - "Handbags", - "Shoulder Bags" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Louis Vuitton" - ], - "color": [ - "Browns", - "Multicolor", - "Blues", - "Pink" - ], - "material": [ - "Coated Canvas" - ], - "bag_feature": [ - "Open Top", - "Structured", - "Top Handles" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$1000-$2000", - "condition": [ - "Shows Wear" - ], - "locations": [ - "New York" - ] - }, - "following_count": 40, - "id": 1590904, - "made_available_at": 1740433161, - "price": 1250, - "priced_at": 1743023886, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/165eb25195ea378ee96b2fb03a03eddc.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/165eb25195ea378ee96b2fb03a03eddc.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/165eb25195ea378ee96b2fb03a03eddc.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/d1600082875c2795e415329c6f3c3f0c.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/d1600082875c2795e415329c6f3c3f0c.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/d1600082875c2795e415329c6f3c3f0c.jpg" - } - ], - "title": "LOUIS VUITTON Monogram Flandrin Navy Mauve", - "title_without_brand": "Monogram Flandrin Navy Mauve", - "_tags": [ - "1590904" - ], - "objectID": "1590904", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-monogram-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "instagram-live-shopping", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-monogram", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "top-handles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic LOUIS VUITTON Monogram Flandrin in Navy and Mauve. This stylish bag is crafted of monogram coated canvas. The hand bag features navy blue leather corners, mauve rolled leather handles, an optional leather shoulder strap, and polished brass hardware. The top opens to a mauve microfiber interior with a central zipper compartment.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Louis Vuitton", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Browns", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Multicolor", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Blues", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Pink", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Coated Canvas", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1590904", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "LOUIS VUITTON Monogram Flandrin Navy Mauve", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Gucci", + "product_name": "Monogram Cellarius Soft Calfskin Icon Bit Platform Clog High Heel Slide Sandals 36 Beige Ebony Cocoa", + "condition": "Shows Wear", + "discounted_price": 15, + "price": 325, + "id": 10746571391279 }, { - "best_value": 675, - "categories": [ - "Browns", - "Multicolor", - "Open Top", - "Structured", - "Top Handles", - "Coated Canvas", - "Handbags", - "Shoulder Bags", - "Monogram", - "Styles", - "Blues", - "Pink", - "General", - "Womens", - "Louis Vuitton", - "Live Shopping with FASHIONPHILE" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoulder-bags-on-sale", - "bags-under-1000", - "louis-vuitton-shoulder-bags", - "louis-vuitton-monogram-bags", - "bags-on-sale", - "instagram-live-shopping", - "louis-vuitton-on-sale", - "louis-vuitton-monogram", - "louis-vuitton", - "top-handles", - "louis-vuitton-bags", - "handbag-styles", - "shoulder-bags", - "handbags" - ], - "description": "This is an authentic LOUIS VUITTON Monogram Flandrin in Navy and Mauve. This stylish bag is crafted of monogram coated canvas. The hand bag features navy blue leather corners, mauve rolled leather handles, an optional leather shoulder strap, and polished brass hardware. The top opens to a mauve microfiber interior with a central zipper compartment.", - "discounted_price": 1185, - "discounted_tier": 1, - "filters": { - "bags": [ - "Handbags", - "Shoulder Bags" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Louis Vuitton" - ], - "color": [ - "Browns", - "Multicolor", - "Blues", - "Pink" - ], - "material": [ - "Coated Canvas" - ], - "bag_feature": [ - "Open Top", - "Structured", - "Top Handles" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$1000-$2000", - "condition": [ - "Shows Wear" - ], - "locations": [ - "New York" - ] - }, - "following_count": 40, - "id": 1590904, - "made_available_at": 1740433161, - "price": 1250, - "priced_at": 1743023886, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/165eb25195ea378ee96b2fb03a03eddc.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/165eb25195ea378ee96b2fb03a03eddc.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/165eb25195ea378ee96b2fb03a03eddc.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/d1600082875c2795e415329c6f3c3f0c.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/d1600082875c2795e415329c6f3c3f0c.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/d1600082875c2795e415329c6f3c3f0c.jpg" - } - ], - "title": "LOUIS VUITTON Monogram Flandrin Navy Mauve", - "title_without_brand": "Monogram Flandrin Navy Mauve", - "_tags": [ - "1590904" - ], - "objectID": "1590904", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-monogram-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "instagram-live-shopping", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-monogram", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "top-handles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic LOUIS VUITTON Monogram Flandrin in Navy and Mauve. This stylish bag is crafted of monogram coated canvas. The hand bag features navy blue leather corners, mauve rolled leather handles, an optional leather shoulder strap, and polished brass hardware. The top opens to a mauve microfiber interior with a central zipper compartment.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Louis Vuitton", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Browns", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Multicolor", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Blues", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Pink", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Coated Canvas", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1590904", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "LOUIS VUITTON Monogram Flandrin Navy Mauve", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Chanel", + "product_name": "Caviar Quilted Small Multi Chain Cosmetic Case Beige", + "condition": "Excellent", + "discounted_price": 45, + "price": 850, + "id": 10746570637615 }, { - "best_value": 325, - "categories": [ - "Browns", - "Coated Canvas", - "Monogram", - "Accessories", - "Womens", - "Leather", - "General", - "Hot Picks Sale", - "Pouches", - "Travel & Luggage", - "Louis Vuitton" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "travel-pouches", - "louis-vuitton-pouches", - "bags-under-1000", - "travel-luggage", - "louis-vuitton-monogram-bags", - "bags-on-sale", - "louis-vuitton-on-sale", - "louis-vuitton-travel-luggage", - "louis-vuitton-monogram", - "louis-vuitton", - "accessories-on-sale", - "louis-vuitton-bags", - "pouches", - "accessories" - ], - "description": "This is an authentic LOUIS VUITTON Monogram Monte Carlo Jewelry Box. This stylish jewelry case is crafted of monogram-coated canvas with brass hardware. The wrap-around zipper opens to a beige microfiber interior with attached three zipper compartment pouches and straps for holding jewelry.\n", - "discounted_price": 995, - "discounted_tier": 1, - "filters": { - "bags": [ - "Travel & Luggage" - ], - "jewelry": [], - "accessories": [ - "Pouches" - ], - "watches": [], - "shoes": [], - "brands": [ - "Louis Vuitton" - ], - "color": [ - "Browns" - ], - "material": [ - "Coated Canvas", - "Leather" - ], - "bag_feature": [], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$500-$1000", - "condition": [ - "Shows Wear" - ], - "locations": [ - "New York" - ] - }, - "following_count": 31, - "id": 1590908, - "made_available_at": 1740430761, - "price": 1050, - "priced_at": 1743019218, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/2d63fe18a7c7b7e2dcc57c26ca5666bb.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/2d63fe18a7c7b7e2dcc57c26ca5666bb.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/2d63fe18a7c7b7e2dcc57c26ca5666bb.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/7532391054cfb363cc570a38b9c63783.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/7532391054cfb363cc570a38b9c63783.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/7532391054cfb363cc570a38b9c63783.jpg" - } - ], - "title": "LOUIS VUITTON Monogram Monte Carlo Jewelry Box", - "title_without_brand": "Monogram Monte Carlo Jewelry Box", - "_tags": [ - "1590908" - ], - "objectID": "1590908", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "travel-pouches", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-pouches", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "travel-luggage", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-monogram-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-travel-luggage", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-monogram", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "pouches", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic LOUIS VUITTON Monogram Monte Carlo Jewelry Box. This stylish jewelry case is crafted of monogram-coated canvas with brass hardware. The wrap-around zipper opens to a beige microfiber interior with attached three zipper compartment pouches and straps for holding jewelry.\n", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Louis Vuitton", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Browns", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Coated Canvas", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1590908", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "LOUIS VUITTON Monogram Monte Carlo Jewelry Box", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Saint Laurent", + "product_name": "Calfskin Y Quilted Monogram Toy Loulou Crossbody Bag Dark Latte", + "condition": "Shows Wear", + "discounted_price": 65, + "price": 1190, + "id": 10746570146095 }, { - "best_value": 325, - "categories": [ - "Browns", - "Coated Canvas", - "Monogram", - "Accessories", - "Womens", - "Leather", - "General", - "Hot Picks Sale", - "Pouches", - "Travel & Luggage", - "Louis Vuitton" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "travel-pouches", - "louis-vuitton-pouches", - "bags-under-1000", - "travel-luggage", - "louis-vuitton-monogram-bags", - "bags-on-sale", - "louis-vuitton-on-sale", - "louis-vuitton-travel-luggage", - "louis-vuitton-monogram", - "louis-vuitton", - "accessories-on-sale", - "louis-vuitton-bags", - "pouches", - "accessories" - ], - "description": "This is an authentic LOUIS VUITTON Monogram Monte Carlo Jewelry Box. This stylish jewelry case is crafted of monogram-coated canvas with brass hardware. The wrap-around zipper opens to a beige microfiber interior with attached three zipper compartment pouches and straps for holding jewelry.\n", - "discounted_price": 995, - "discounted_tier": 1, - "filters": { - "bags": [ - "Travel & Luggage" - ], - "jewelry": [], - "accessories": [ - "Pouches" - ], - "watches": [], - "shoes": [], - "brands": [ - "Louis Vuitton" - ], - "color": [ - "Browns" - ], - "material": [ - "Coated Canvas", - "Leather" - ], - "bag_feature": [], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$500-$1000", - "condition": [ - "Shows Wear" - ], - "locations": [ - "New York" - ] - }, - "following_count": 31, - "id": 1590908, - "made_available_at": 1740430761, - "price": 1050, - "priced_at": 1743019218, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/2d63fe18a7c7b7e2dcc57c26ca5666bb.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/2d63fe18a7c7b7e2dcc57c26ca5666bb.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/2d63fe18a7c7b7e2dcc57c26ca5666bb.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/7532391054cfb363cc570a38b9c63783.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/7532391054cfb363cc570a38b9c63783.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/7532391054cfb363cc570a38b9c63783.jpg" - } - ], - "title": "LOUIS VUITTON Monogram Monte Carlo Jewelry Box", - "title_without_brand": "Monogram Monte Carlo Jewelry Box", - "_tags": [ - "1590908" - ], - "objectID": "1590908", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "travel-pouches", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-pouches", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "travel-luggage", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-monogram-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-travel-luggage", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-monogram", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "pouches", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic LOUIS VUITTON Monogram Monte Carlo Jewelry Box. This stylish jewelry case is crafted of monogram-coated canvas with brass hardware. The wrap-around zipper opens to a beige microfiber interior with attached three zipper compartment pouches and straps for holding jewelry.\n", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Louis Vuitton", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Browns", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Coated Canvas", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1590908", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "LOUIS VUITTON Monogram Monte Carlo Jewelry Box", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Hermes", + "product_name": "Taurillon Clemence EVELYNE III PM Black", + "condition": "Shows Wear", + "discounted_price": 135, + "price": 2590, + "id": 10746569982255 }, { - "best_value": 325, - "categories": [ - "Browns", - "Coated Canvas", - "Monogram", - "Accessories", - "Womens", - "Leather", - "General", - "Hot Picks Sale", - "Pouches", - "Travel & Luggage", - "Louis Vuitton" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "travel-pouches", - "louis-vuitton-pouches", - "bags-under-1000", - "travel-luggage", - "louis-vuitton-monogram-bags", - "bags-on-sale", - "louis-vuitton-on-sale", - "louis-vuitton-travel-luggage", - "louis-vuitton-monogram", - "louis-vuitton", - "accessories-on-sale", - "louis-vuitton-bags", - "pouches", - "accessories" - ], - "description": "This is an authentic LOUIS VUITTON Monogram Monte Carlo Jewelry Box. This stylish jewelry case is crafted of monogram-coated canvas with brass hardware. The wrap-around zipper opens to a beige microfiber interior with attached three zipper compartment pouches and straps for holding jewelry.\n", - "discounted_price": 995, - "discounted_tier": 1, - "filters": { - "bags": [ - "Travel & Luggage" - ], - "jewelry": [], - "accessories": [ - "Pouches" - ], - "watches": [], - "shoes": [], - "brands": [ - "Louis Vuitton" - ], - "color": [ - "Browns" - ], - "material": [ - "Coated Canvas", - "Leather" - ], - "bag_feature": [], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$500-$1000", - "condition": [ - "Shows Wear" - ], - "locations": [ - "New York" - ] - }, - "following_count": 31, - "id": 1590908, - "made_available_at": 1740430761, - "price": 1050, - "priced_at": 1743019218, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/2d63fe18a7c7b7e2dcc57c26ca5666bb.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/2d63fe18a7c7b7e2dcc57c26ca5666bb.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/2d63fe18a7c7b7e2dcc57c26ca5666bb.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/7532391054cfb363cc570a38b9c63783.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/7532391054cfb363cc570a38b9c63783.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/7532391054cfb363cc570a38b9c63783.jpg" - } - ], - "title": "LOUIS VUITTON Monogram Monte Carlo Jewelry Box", - "title_without_brand": "Monogram Monte Carlo Jewelry Box", - "_tags": [ - "1590908" - ], - "objectID": "1590908", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "travel-pouches", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-pouches", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "travel-luggage", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-monogram-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-travel-luggage", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-monogram", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "pouches", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic LOUIS VUITTON Monogram Monte Carlo Jewelry Box. This stylish jewelry case is crafted of monogram-coated canvas with brass hardware. The wrap-around zipper opens to a beige microfiber interior with attached three zipper compartment pouches and straps for holding jewelry.\n", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Louis Vuitton", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Browns", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Coated Canvas", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1590908", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "LOUIS VUITTON Monogram Monte Carlo Jewelry Box", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Louis Vuitton", + "product_name": "Monogram Giant Crafty Speedy Bandouliere 25 Creme Caramel", + "condition": "Excellent", + "discounted_price": 115, + "price": 2145, + "id": 10746569883951 }, { - "best_value": 0, - "categories": [ - "Key Rings", - "Pouches", - "Browns", - "Coated Canvas", - "Monogram", - "Accessories", - "General", - "Womens", - "Monogram Masterpieces", - "For the Mom on the Go", - "Summer Kickoff Sale", - "Friends & Family Event", - "Louis Vuitton" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "on-the-go", - "travel-pouches", - "louis-vuitton-pouches", - "summer-kickoff-sale", - "key-rings", - "love-logos", - "louis-vuitton-on-sale", - "louis-vuitton-monogram", - "louis-vuitton", - "accessories-on-sale", - "friends-and-family-event", - "pouches", - "accessories" - ], - "description": "This is an authentic LOUIS VUITTON Monogram Key Pouch. This pouch is crafted of Louis Vuitton monogram toile canvas in brown. The top zipper opens top a brown, cross-grain leather interior with an attached carabiner that can be clipped to your keys or handbag.", - "discounted_price": 375, - "discounted_tier": 1, - "filters": { - "bags": [], - "jewelry": [], - "accessories": [ - "Key Rings", - "Pouches" - ], - "watches": [], - "shoes": [], - "brands": [ - "Louis Vuitton" - ], - "color": [ - "Browns" - ], - "material": [ - "Coated Canvas" - ], - "bag_feature": [], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$200-$500", - "condition": [ - "Excellent" - ], - "locations": [ - "New York" - ] - }, - "following_count": 38, - "id": 1590986, - "made_available_at": 1740433205, - "price": 395, - "priced_at": 1743023887, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/e0d3d62cebae9031d5942ae36326f19c.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/e0d3d62cebae9031d5942ae36326f19c.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/e0d3d62cebae9031d5942ae36326f19c.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/154ebd403f39fc37c7dacdef2be01779.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/154ebd403f39fc37c7dacdef2be01779.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/154ebd403f39fc37c7dacdef2be01779.jpg" - } - ], - "title": "LOUIS VUITTON Monogram Key Pouch", - "title_without_brand": "Monogram Key Pouch", - "_tags": [ - "1590986" - ], - "objectID": "1590986", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "on-the-go", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "travel-pouches", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-pouches", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "summer-kickoff-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "key-rings", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "love-logos", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-monogram", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "friends-and-family-event", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "pouches", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic LOUIS VUITTON Monogram Key Pouch. This pouch is crafted of Louis Vuitton monogram toile canvas in brown. The top zipper opens top a brown, cross-grain leather interior with an attached carabiner that can be clipped to your keys or handbag.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Louis Vuitton", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Browns", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Coated Canvas", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1590986", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "LOUIS VUITTON Monogram Key Pouch", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Chanel", + "product_name": "Shiny Aged Calfskin Quilted Nano Kelly Shopper Lilac", + "condition": "Excellent", + "discounted_price": 280, + "price": 5280, + "id": 10746569785647 }, { - "best_value": 0, - "categories": [ - "Key Rings", - "Pouches", - "Browns", - "Coated Canvas", - "Monogram", - "Accessories", - "General", - "Womens", - "Monogram Masterpieces", - "For the Mom on the Go", - "Summer Kickoff Sale", - "Friends & Family Event", - "Louis Vuitton" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "on-the-go", - "travel-pouches", - "louis-vuitton-pouches", - "summer-kickoff-sale", - "key-rings", - "love-logos", - "louis-vuitton-on-sale", - "louis-vuitton-monogram", - "louis-vuitton", - "accessories-on-sale", - "friends-and-family-event", - "pouches", - "accessories" - ], - "description": "This is an authentic LOUIS VUITTON Monogram Key Pouch. This pouch is crafted of Louis Vuitton monogram toile canvas in brown. The top zipper opens top a brown, cross-grain leather interior with an attached carabiner that can be clipped to your keys or handbag.", - "discounted_price": 375, - "discounted_tier": 1, - "filters": { - "bags": [], - "jewelry": [], - "accessories": [ - "Key Rings", - "Pouches" - ], - "watches": [], - "shoes": [], - "brands": [ - "Louis Vuitton" - ], - "color": [ - "Browns" - ], - "material": [ - "Coated Canvas" - ], - "bag_feature": [], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$200-$500", - "condition": [ - "Excellent" - ], - "locations": [ - "New York" - ] - }, - "following_count": 38, - "id": 1590986, - "made_available_at": 1740433205, - "price": 395, - "priced_at": 1743023887, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/e0d3d62cebae9031d5942ae36326f19c.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/e0d3d62cebae9031d5942ae36326f19c.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/e0d3d62cebae9031d5942ae36326f19c.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/154ebd403f39fc37c7dacdef2be01779.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/154ebd403f39fc37c7dacdef2be01779.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/154ebd403f39fc37c7dacdef2be01779.jpg" - } - ], - "title": "LOUIS VUITTON Monogram Key Pouch", - "title_without_brand": "Monogram Key Pouch", - "_tags": [ - "1590986" - ], - "objectID": "1590986", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "on-the-go", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "travel-pouches", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-pouches", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "summer-kickoff-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "key-rings", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "love-logos", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-monogram", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "friends-and-family-event", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "pouches", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic LOUIS VUITTON Monogram Key Pouch. This pouch is crafted of Louis Vuitton monogram toile canvas in brown. The top zipper opens top a brown, cross-grain leather interior with an attached carabiner that can be clipped to your keys or handbag.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Louis Vuitton", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Browns", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Coated Canvas", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1590986", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "LOUIS VUITTON Monogram Key Pouch", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Saint Laurent", + "product_name": "Lambskin Chevron Quilted Mini Loulou Bag Hortensia", + "condition": "Excellent", + "discounted_price": 100, + "price": 1935, + "id": 10685889282351 }, { - "best_value": 0, - "categories": [ - "Key Rings", - "Pouches", - "Browns", - "Coated Canvas", - "Monogram", - "Accessories", - "General", - "Womens", - "Monogram Masterpieces", - "For the Mom on the Go", - "Summer Kickoff Sale", - "Friends & Family Event", - "Louis Vuitton" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "on-the-go", - "travel-pouches", - "louis-vuitton-pouches", - "summer-kickoff-sale", - "key-rings", - "love-logos", - "louis-vuitton-on-sale", - "louis-vuitton-monogram", - "louis-vuitton", - "accessories-on-sale", - "friends-and-family-event", - "pouches", - "accessories" - ], - "description": "This is an authentic LOUIS VUITTON Monogram Key Pouch. This pouch is crafted of Louis Vuitton monogram toile canvas in brown. The top zipper opens top a brown, cross-grain leather interior with an attached carabiner that can be clipped to your keys or handbag.", - "discounted_price": 375, - "discounted_tier": 1, - "filters": { - "bags": [], - "jewelry": [], - "accessories": [ - "Key Rings", - "Pouches" - ], - "watches": [], - "shoes": [], - "brands": [ - "Louis Vuitton" - ], - "color": [ - "Browns" - ], - "material": [ - "Coated Canvas" - ], - "bag_feature": [], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$200-$500", - "condition": [ - "Excellent" - ], - "locations": [ - "New York" - ] - }, - "following_count": 38, - "id": 1590986, - "made_available_at": 1740433205, - "price": 395, - "priced_at": 1743023887, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/e0d3d62cebae9031d5942ae36326f19c.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/e0d3d62cebae9031d5942ae36326f19c.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/e0d3d62cebae9031d5942ae36326f19c.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/154ebd403f39fc37c7dacdef2be01779.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/154ebd403f39fc37c7dacdef2be01779.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/154ebd403f39fc37c7dacdef2be01779.jpg" - } - ], - "title": "LOUIS VUITTON Monogram Key Pouch", - "title_without_brand": "Monogram Key Pouch", - "_tags": [ - "1590986" - ], - "objectID": "1590986", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "on-the-go", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "travel-pouches", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-pouches", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "summer-kickoff-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "key-rings", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "love-logos", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-monogram", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "friends-and-family-event", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "pouches", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic LOUIS VUITTON Monogram Key Pouch. This pouch is crafted of Louis Vuitton monogram toile canvas in brown. The top zipper opens top a brown, cross-grain leather interior with an attached carabiner that can be clipped to your keys or handbag.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Louis Vuitton", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Browns", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Coated Canvas", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1590986", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "LOUIS VUITTON Monogram Key Pouch", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Chanel", + "product_name": "Canvas Small Deauville Tote Light Orange", + "condition": "Excellent", + "discounted_price": 200, + "price": 3775, + "id": 10588649488687 }, { - "best_value": 60, - "categories": [ - "Pouches", - "Browns", - "Structured", - "Zip Top", - "Womens", - "Coated Canvas", - "Leather", - "Monogram", - "Accessories", - "Monogram Masterpieces", - "Father's Day Gifts", - "Beige", - "(Do Not Use) Year-End Event", - "Gifts for Him", - "Top Designers", - "Gucci" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "travel-pouches", - "gucci", - "gucci-gg-supreme-monogram", - "love-logos", - "gucci-monogram", - "top-designers", - "gifts-for-him", - "accessories-on-sale", - "zip-top", - "gucci-on-sale", - "fathers-day-gift-guide", - "pouches", - "accessories" - ], - "description": "This is an authentic GUCCI GG Supreme Monogram Key Case in Brown. This stylish key case is crafted of Gucci GG monogram coated canvas with an all around dark brown leather trim. The case unzips with an overextended zipper to a brown fabric interior featuring a gold D-ring clasp.", - "discounted_price": 330, - "discounted_tier": 1, - "filters": { - "bags": [], - "jewelry": [], - "accessories": [ - "Pouches" - ], - "watches": [], - "shoes": [], - "brands": [ - "Gucci" - ], - "color": [ - "Browns", - "Beige" - ], - "material": [ - "Coated Canvas", - "Leather" - ], - "bag_feature": [ - "Structured", - "Zip Top" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$200-$500", - "condition": [ - "Shows Wear" - ], - "locations": [ - "New York" - ] - }, - "following_count": 28, - "id": 1591009, - "made_available_at": 1740433207, - "price": 350, - "priced_at": 1743023888, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/9ca182cd8776f888a4d1b8e09aea4955.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/9ca182cd8776f888a4d1b8e09aea4955.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/9ca182cd8776f888a4d1b8e09aea4955.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/e09f5f84550b14e589b15e09642cbfda.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/e09f5f84550b14e589b15e09642cbfda.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/e09f5f84550b14e589b15e09642cbfda.jpg" - } - ], - "title": "GUCCI GG Supreme Monogram Key Case Brown", - "title_without_brand": "GG Supreme Monogram Key Case Brown", - "_tags": [ - "1591009" - ], - "objectID": "1591009", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "travel-pouches", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-gg-supreme-monogram", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "love-logos", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-monogram", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "top-designers", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gifts-for-him", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "zip-top", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "fathers-day-gift-guide", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "pouches", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic GUCCI GG Supreme Monogram Key Case in Brown. This stylish key case is crafted of Gucci GG monogram coated canvas with an all around dark brown leather trim. The case unzips with an overextended zipper to a brown fabric interior featuring a gold D-ring clasp.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Gucci", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Browns", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Beige", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Coated Canvas", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1591009", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "GUCCI GG Supreme Monogram Key Case Brown", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Gucci", + "product_name": "GG Supreme Monogram Textured Dollar Calfskin Mini Ophidia Flap Shoulder Bag Beige Blue", + "condition": "Excellent", + "discounted_price": 85, + "price": 1600, + "id": 10597167071535 }, { - "best_value": 60, - "categories": [ - "Pouches", - "Browns", - "Structured", - "Zip Top", - "Womens", - "Coated Canvas", - "Leather", - "Monogram", - "Accessories", - "Monogram Masterpieces", - "Father's Day Gifts", - "Beige", - "(Do Not Use) Year-End Event", - "Gifts for Him", - "Top Designers", - "Gucci" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "travel-pouches", - "gucci", - "gucci-gg-supreme-monogram", - "love-logos", - "gucci-monogram", - "top-designers", - "gifts-for-him", - "accessories-on-sale", - "zip-top", - "gucci-on-sale", - "fathers-day-gift-guide", - "pouches", - "accessories" - ], - "description": "This is an authentic GUCCI GG Supreme Monogram Key Case in Brown. This stylish key case is crafted of Gucci GG monogram coated canvas with an all around dark brown leather trim. The case unzips with an overextended zipper to a brown fabric interior featuring a gold D-ring clasp.", - "discounted_price": 330, - "discounted_tier": 1, - "filters": { - "bags": [], - "jewelry": [], - "accessories": [ - "Pouches" - ], - "watches": [], - "shoes": [], - "brands": [ - "Gucci" - ], - "color": [ - "Browns", - "Beige" - ], - "material": [ - "Coated Canvas", - "Leather" - ], - "bag_feature": [ - "Structured", - "Zip Top" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$200-$500", - "condition": [ - "Shows Wear" - ], - "locations": [ - "New York" - ] - }, - "following_count": 28, - "id": 1591009, - "made_available_at": 1740433207, - "price": 350, - "priced_at": 1743023888, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/9ca182cd8776f888a4d1b8e09aea4955.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/9ca182cd8776f888a4d1b8e09aea4955.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/9ca182cd8776f888a4d1b8e09aea4955.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/e09f5f84550b14e589b15e09642cbfda.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/e09f5f84550b14e589b15e09642cbfda.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/e09f5f84550b14e589b15e09642cbfda.jpg" - } - ], - "title": "GUCCI GG Supreme Monogram Key Case Brown", - "title_without_brand": "GG Supreme Monogram Key Case Brown", - "_tags": [ - "1591009" - ], - "objectID": "1591009", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "travel-pouches", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-gg-supreme-monogram", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "love-logos", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-monogram", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "top-designers", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gifts-for-him", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "zip-top", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "fathers-day-gift-guide", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "pouches", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic GUCCI GG Supreme Monogram Key Case in Brown. This stylish key case is crafted of Gucci GG monogram coated canvas with an all around dark brown leather trim. The case unzips with an overextended zipper to a brown fabric interior featuring a gold D-ring clasp.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Gucci", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Browns", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Beige", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Coated Canvas", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1591009", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "GUCCI GG Supreme Monogram Key Case Brown", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Van Cleef & Arpels", + "product_name": "18K Yellow Gold Malachite Vintage Alhambra Earrings", + "condition": "Excellent", + "discounted_price": 270, + "price": 5140, + "id": 10746568999215 }, { - "best_value": 60, - "categories": [ - "Pouches", - "Browns", - "Structured", - "Zip Top", - "Womens", - "Coated Canvas", - "Leather", - "Monogram", - "Accessories", - "Monogram Masterpieces", - "Father's Day Gifts", - "Beige", - "(Do Not Use) Year-End Event", - "Gifts for Him", - "Top Designers", - "Gucci" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "travel-pouches", - "gucci", - "gucci-gg-supreme-monogram", - "love-logos", - "gucci-monogram", - "top-designers", - "gifts-for-him", - "accessories-on-sale", - "zip-top", - "gucci-on-sale", - "fathers-day-gift-guide", - "pouches", - "accessories" - ], - "description": "This is an authentic GUCCI GG Supreme Monogram Key Case in Brown. This stylish key case is crafted of Gucci GG monogram coated canvas with an all around dark brown leather trim. The case unzips with an overextended zipper to a brown fabric interior featuring a gold D-ring clasp.", - "discounted_price": 330, - "discounted_tier": 1, - "filters": { - "bags": [], - "jewelry": [], - "accessories": [ - "Pouches" - ], - "watches": [], - "shoes": [], - "brands": [ - "Gucci" - ], - "color": [ - "Browns", - "Beige" - ], - "material": [ - "Coated Canvas", - "Leather" - ], - "bag_feature": [ - "Structured", - "Zip Top" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$200-$500", - "condition": [ - "Shows Wear" - ], - "locations": [ - "New York" - ] - }, - "following_count": 28, - "id": 1591009, - "made_available_at": 1740433207, - "price": 350, - "priced_at": 1743023888, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/9ca182cd8776f888a4d1b8e09aea4955.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/9ca182cd8776f888a4d1b8e09aea4955.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/9ca182cd8776f888a4d1b8e09aea4955.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/e09f5f84550b14e589b15e09642cbfda.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/e09f5f84550b14e589b15e09642cbfda.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/e09f5f84550b14e589b15e09642cbfda.jpg" - } - ], - "title": "GUCCI GG Supreme Monogram Key Case Brown", - "title_without_brand": "GG Supreme Monogram Key Case Brown", - "_tags": [ - "1591009" - ], - "objectID": "1591009", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "travel-pouches", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-gg-supreme-monogram", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "love-logos", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-monogram", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "top-designers", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gifts-for-him", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "zip-top", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "fathers-day-gift-guide", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "pouches", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic GUCCI GG Supreme Monogram Key Case in Brown. This stylish key case is crafted of Gucci GG monogram coated canvas with an all around dark brown leather trim. The case unzips with an overextended zipper to a brown fabric interior featuring a gold D-ring clasp.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Gucci", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Browns", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Beige", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Coated Canvas", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1591009", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "GUCCI GG Supreme Monogram Key Case Brown", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Van Cleef & Arpels", + "product_name": "18K Yellow Gold Mother of Pearl Vintage Alhambra Earrings", + "condition": "Shows Wear", + "discounted_price": 220, + "price": 4185, + "id": 10746568933679 }, { - "best_value": 0, - "categories": [ - "Sunglasses", - "Browns", - "Womens", - "Plastics", - "Accessories", - "Chic Stocking Stuffers", - "Gucci" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "gucci-sunglasses", - "gucci", - "little-luxuries", - "accessories-on-sale", - "sunglasses", - "gucci-on-sale", - "sunglasses-on-sale", - "accessories" - ], - "description": "This is an authentic pair of GUCCI Acetate Sunglasses GG0327S in Tortoise. These bold sunglasses feature squared translucent tortoiseshell frames with brown lenses. There is a small polished gold interlocking GG logo at the temple. ", - "discounted_price": 310, - "discounted_tier": 1, - "filters": { - "bags": [], - "jewelry": [], - "accessories": [ - "Sunglasses" - ], - "watches": [], - "shoes": [], - "brands": [ - "Gucci" - ], - "color": [ - "Browns" - ], - "material": [ - "Plastics" - ], - "bag_feature": [], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$200-$500", - "condition": [ - "Shows Wear" - ], - "locations": [ - "New York" - ] - }, - "following_count": 20, - "id": 1591015, - "made_available_at": 1740430808, - "price": 325, - "priced_at": 1743023851, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/c3b436764c3d96a1e059ce1a9a121c18.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/c3b436764c3d96a1e059ce1a9a121c18.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/c3b436764c3d96a1e059ce1a9a121c18.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/5ab6b9d626500062db3cbdc0c7dc6a12.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/5ab6b9d626500062db3cbdc0c7dc6a12.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/5ab6b9d626500062db3cbdc0c7dc6a12.jpg" - } - ], - "title": "GUCCI Acetate Sunglasses GG0327S Tortoise", - "title_without_brand": "Acetate Sunglasses GG0327S Tortoise", - "_tags": [ - "1591015" - ], - "objectID": "1591015", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-sunglasses", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "little-luxuries", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "sunglasses", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "sunglasses-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic pair of GUCCI Acetate Sunglasses GG0327S in Tortoise. These bold sunglasses feature squared translucent tortoiseshell frames with brown lenses. There is a small polished gold interlocking GG logo at the temple. ", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Gucci", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Browns", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Plastics", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1591015", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "GUCCI Acetate Sunglasses GG0327S Tortoise", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Gucci", + "product_name": "Jacquard Black Denim GG Monogram Textured Dollar Calfskin Medium Jackie 1961 Tote Black Ivory", + "condition": "Excellent", + "discounted_price": 100, + "price": 1890, + "id": 10746568868143 }, { - "best_value": 0, - "categories": [ - "Sunglasses", - "Browns", - "Womens", - "Plastics", - "Accessories", - "Chic Stocking Stuffers", - "Gucci" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "gucci-sunglasses", - "gucci", - "little-luxuries", - "accessories-on-sale", - "sunglasses", - "gucci-on-sale", - "sunglasses-on-sale", - "accessories" - ], - "description": "This is an authentic pair of GUCCI Acetate Sunglasses GG0327S in Tortoise. These bold sunglasses feature squared translucent tortoiseshell frames with brown lenses. There is a small polished gold interlocking GG logo at the temple. ", - "discounted_price": 310, - "discounted_tier": 1, - "filters": { - "bags": [], - "jewelry": [], - "accessories": [ - "Sunglasses" - ], - "watches": [], - "shoes": [], - "brands": [ - "Gucci" - ], - "color": [ - "Browns" - ], - "material": [ - "Plastics" - ], - "bag_feature": [], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$200-$500", - "condition": [ - "Shows Wear" - ], - "locations": [ - "New York" - ] - }, - "following_count": 20, - "id": 1591015, - "made_available_at": 1740430808, - "price": 325, - "priced_at": 1743023851, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/c3b436764c3d96a1e059ce1a9a121c18.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/c3b436764c3d96a1e059ce1a9a121c18.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/c3b436764c3d96a1e059ce1a9a121c18.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/5ab6b9d626500062db3cbdc0c7dc6a12.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/5ab6b9d626500062db3cbdc0c7dc6a12.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/5ab6b9d626500062db3cbdc0c7dc6a12.jpg" - } - ], - "title": "GUCCI Acetate Sunglasses GG0327S Tortoise", - "title_without_brand": "Acetate Sunglasses GG0327S Tortoise", - "_tags": [ - "1591015" - ], - "objectID": "1591015", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-sunglasses", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "little-luxuries", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "sunglasses", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "sunglasses-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic pair of GUCCI Acetate Sunglasses GG0327S in Tortoise. These bold sunglasses feature squared translucent tortoiseshell frames with brown lenses. There is a small polished gold interlocking GG logo at the temple. ", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Gucci", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Browns", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Plastics", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1591015", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "GUCCI Acetate Sunglasses GG0327S Tortoise", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Hermes", + "product_name": "Calfskin Cork Eze 30 Sandals 37 White", + "condition": "Excellent", + "discounted_price": 40, + "price": 750, + "id": 10746568704303 }, { - "best_value": 0, - "categories": [ - "Sunglasses", - "Browns", - "Womens", - "Plastics", - "Accessories", - "Chic Stocking Stuffers", - "Gucci" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "gucci-sunglasses", - "gucci", - "little-luxuries", - "accessories-on-sale", - "sunglasses", - "gucci-on-sale", - "sunglasses-on-sale", - "accessories" - ], - "description": "This is an authentic pair of GUCCI Acetate Sunglasses GG0327S in Tortoise. These bold sunglasses feature squared translucent tortoiseshell frames with brown lenses. There is a small polished gold interlocking GG logo at the temple. ", - "discounted_price": 310, - "discounted_tier": 1, - "filters": { - "bags": [], - "jewelry": [], - "accessories": [ - "Sunglasses" - ], - "watches": [], - "shoes": [], - "brands": [ - "Gucci" - ], - "color": [ - "Browns" - ], - "material": [ - "Plastics" - ], - "bag_feature": [], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$200-$500", - "condition": [ - "Shows Wear" - ], - "locations": [ - "New York" - ] - }, - "following_count": 20, - "id": 1591015, - "made_available_at": 1740430808, - "price": 325, - "priced_at": 1743023851, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/c3b436764c3d96a1e059ce1a9a121c18.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/c3b436764c3d96a1e059ce1a9a121c18.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/c3b436764c3d96a1e059ce1a9a121c18.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/5ab6b9d626500062db3cbdc0c7dc6a12.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/5ab6b9d626500062db3cbdc0c7dc6a12.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/5ab6b9d626500062db3cbdc0c7dc6a12.jpg" - } - ], - "title": "GUCCI Acetate Sunglasses GG0327S Tortoise", - "title_without_brand": "Acetate Sunglasses GG0327S Tortoise", - "_tags": [ - "1591015" - ], - "objectID": "1591015", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-sunglasses", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "little-luxuries", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "sunglasses", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "gucci-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "sunglasses-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic pair of GUCCI Acetate Sunglasses GG0327S in Tortoise. These bold sunglasses feature squared translucent tortoiseshell frames with brown lenses. There is a small polished gold interlocking GG logo at the temple. ", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Gucci", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Browns", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Plastics", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1591015", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "GUCCI Acetate Sunglasses GG0327S Tortoise", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Saint Laurent", + "product_name": "Patent Classic Monogram Cassandre Clutch Dark Red", + "condition": "Shows Wear", + "discounted_price": 35, + "price": 620, + "id": 10746568376623 }, { - "best_value": 0, - "categories": [ - "Black", - "Womens", - "Leather", - "Solid Color", - "Clutch & Evening", - "Crossbody", - "Handbags", - "Shoulder Bags", - "Wallet Style", - "General", - "Styles", - "Saint Laurent", - "Live Shopping with FASHIONPHILE" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoulder-bags-on-sale", - "ysl", - "saint-laurent-shoulder-bags", - "bags-under-1000", - "saint-laurent-sale", - "saint-laurent-envelope-bags", - "bags-on-sale", - "instagram-live-shopping", - "saint-laurent-clutches-evening-bags", - "clutch-evening", - "crossbody-bags-on-sale", - "saint-laurent-bags", - "wallet-style", - "handbag-styles", - "shoulder-bags", - "saint-laurent-bags-under-1000", - "handbags", - "cross-body", - "saint-laurent-wallet-style", - "saint-laurent-crossbody-bags" - ], - "description": "This is an authentic SAINT LAURENT Grain De Poudre Matelasse Chevron Monogram Envelope Chain Wallet in Black. This chain wallet features pebbled chevron-quilted leather in black. The bag features a gold chain link shoulder strap and a facing V-shaped flap with a gold YSL logo. The flap opens to a partitioned black leather interior with card slot panels, patch pockets, and a zipper divider.", - "discounted_price": 1280, - "discounted_tier": 1, - "filters": { - "bags": [ - "Clutch & Evening", - "Crossbody", - "Handbags", - "Shoulder Bags", - "Wallet Style" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Saint Laurent" - ], - "color": [ - "Black" - ], - "material": [ - "Leather", - "Solid Color" - ], - "bag_feature": [], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$1000-$2000", - "condition": [ - "Excellent" - ], - "locations": [ - "New York" - ] - }, - "following_count": 20, - "id": 1591181, - "made_available_at": 1740430821, - "price": 1350, - "priced_at": 1743023852, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/7f0550fcf1eaaf45a3eaf184d42ea59b.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/7f0550fcf1eaaf45a3eaf184d42ea59b.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/7f0550fcf1eaaf45a3eaf184d42ea59b.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/0d5d9bcc94d100d45556ef69b9dad82f.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/0d5d9bcc94d100d45556ef69b9dad82f.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/0d5d9bcc94d100d45556ef69b9dad82f.jpg" - } - ], - "title": "SAINT LAURENT Grain De Poudre Matelasse Chevron Monogram Envelope Chain Wallet Black", - "title_without_brand": "Grain De Poudre Matelasse Chevron Monogram Envelope Chain Wallet Black", - "_tags": [ - "1591181" - ], - "objectID": "1591181", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "ysl", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "saint-laurent-shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "saint-laurent-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "saint-laurent-envelope-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "instagram-live-shopping", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "saint-laurent-clutches-evening-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "clutch-evening", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "crossbody-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "saint-laurent-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "wallet-style", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "saint-laurent-bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "cross-body", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "saint-laurent-wallet-style", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "saint-laurent-crossbody-bags", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic SAINT LAURENT Grain De Poudre Matelasse Chevron Monogram Envelope Chain Wallet in Black. This chain wallet features pebbled chevron-quilted leather in black. The bag features a gold chain link shoulder strap and a facing V-shaped flap with a gold YSL logo. The flap opens to a partitioned black leather interior with card slot panels, patch pockets, and a zipper divider.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Saint Laurent", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Black", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1591181", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "SAINT LAURENT Grain De Poudre Matelasse Chevron Monogram Envelope Chain Wallet Black", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Louis Vuitton", + "product_name": "Damier Ebene Illovo MM", + "condition": "Shows Wear", + "discounted_price": 50, + "price": 995, + "id": 10746568016175 }, { - "best_value": 0, - "categories": [ - "Black", - "Womens", - "Leather", - "Solid Color", - "Clutch & Evening", - "Crossbody", - "Handbags", - "Shoulder Bags", - "Wallet Style", - "General", - "Styles", - "Saint Laurent", - "Live Shopping with FASHIONPHILE" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoulder-bags-on-sale", - "ysl", - "saint-laurent-shoulder-bags", - "bags-under-1000", - "saint-laurent-sale", - "saint-laurent-envelope-bags", - "bags-on-sale", - "instagram-live-shopping", - "saint-laurent-clutches-evening-bags", - "clutch-evening", - "crossbody-bags-on-sale", - "saint-laurent-bags", - "wallet-style", - "handbag-styles", - "shoulder-bags", - "saint-laurent-bags-under-1000", - "handbags", - "cross-body", - "saint-laurent-wallet-style", - "saint-laurent-crossbody-bags" - ], - "description": "This is an authentic SAINT LAURENT Grain De Poudre Matelasse Chevron Monogram Envelope Chain Wallet in Black. This chain wallet features pebbled chevron-quilted leather in black. The bag features a gold chain link shoulder strap and a facing V-shaped flap with a gold YSL logo. The flap opens to a partitioned black leather interior with card slot panels, patch pockets, and a zipper divider.", - "discounted_price": 1280, - "discounted_tier": 1, - "filters": { - "bags": [ - "Clutch & Evening", - "Crossbody", - "Handbags", - "Shoulder Bags", - "Wallet Style" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Saint Laurent" - ], - "color": [ - "Black" - ], - "material": [ - "Leather", - "Solid Color" - ], - "bag_feature": [], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$1000-$2000", - "condition": [ - "Excellent" - ], - "locations": [ - "New York" - ] - }, - "following_count": 20, - "id": 1591181, - "made_available_at": 1740430821, - "price": 1350, - "priced_at": 1743023852, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/7f0550fcf1eaaf45a3eaf184d42ea59b.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/7f0550fcf1eaaf45a3eaf184d42ea59b.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/7f0550fcf1eaaf45a3eaf184d42ea59b.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/0d5d9bcc94d100d45556ef69b9dad82f.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/0d5d9bcc94d100d45556ef69b9dad82f.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/0d5d9bcc94d100d45556ef69b9dad82f.jpg" - } - ], - "title": "SAINT LAURENT Grain De Poudre Matelasse Chevron Monogram Envelope Chain Wallet Black", - "title_without_brand": "Grain De Poudre Matelasse Chevron Monogram Envelope Chain Wallet Black", - "_tags": [ - "1591181" - ], - "objectID": "1591181", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "ysl", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "saint-laurent-shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "saint-laurent-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "saint-laurent-envelope-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "instagram-live-shopping", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "saint-laurent-clutches-evening-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "clutch-evening", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "crossbody-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "saint-laurent-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "wallet-style", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "saint-laurent-bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "cross-body", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "saint-laurent-wallet-style", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "saint-laurent-crossbody-bags", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic SAINT LAURENT Grain De Poudre Matelasse Chevron Monogram Envelope Chain Wallet in Black. This chain wallet features pebbled chevron-quilted leather in black. The bag features a gold chain link shoulder strap and a facing V-shaped flap with a gold YSL logo. The flap opens to a partitioned black leather interior with card slot panels, patch pockets, and a zipper divider.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Saint Laurent", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Black", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1591181", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "SAINT LAURENT Grain De Poudre Matelasse Chevron Monogram Envelope Chain Wallet Black", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Hermes", + "product_name": "Togo Swift 24/24 29 Deep Bleu", + "condition": "Excellent", + "discounted_price": 330, + "price": 6280, + "id": 10746567950639 }, { - "best_value": 0, - "categories": [ - "Black", - "Womens", - "Leather", - "Solid Color", - "Clutch & Evening", - "Crossbody", - "Handbags", - "Shoulder Bags", - "Wallet Style", - "General", - "Styles", - "Saint Laurent", - "Live Shopping with FASHIONPHILE" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "shoulder-bags-on-sale", - "ysl", - "saint-laurent-shoulder-bags", - "bags-under-1000", - "saint-laurent-sale", - "saint-laurent-envelope-bags", - "bags-on-sale", - "instagram-live-shopping", - "saint-laurent-clutches-evening-bags", - "clutch-evening", - "crossbody-bags-on-sale", - "saint-laurent-bags", - "wallet-style", - "handbag-styles", - "shoulder-bags", - "saint-laurent-bags-under-1000", - "handbags", - "cross-body", - "saint-laurent-wallet-style", - "saint-laurent-crossbody-bags" - ], - "description": "This is an authentic SAINT LAURENT Grain De Poudre Matelasse Chevron Monogram Envelope Chain Wallet in Black. This chain wallet features pebbled chevron-quilted leather in black. The bag features a gold chain link shoulder strap and a facing V-shaped flap with a gold YSL logo. The flap opens to a partitioned black leather interior with card slot panels, patch pockets, and a zipper divider.", - "discounted_price": 1280, - "discounted_tier": 1, - "filters": { - "bags": [ - "Clutch & Evening", - "Crossbody", - "Handbags", - "Shoulder Bags", - "Wallet Style" - ], - "jewelry": [], - "accessories": [], - "watches": [], - "shoes": [], - "brands": [ - "Saint Laurent" - ], - "color": [ - "Black" - ], - "material": [ - "Leather", - "Solid Color" - ], - "bag_feature": [], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$1000-$2000", - "condition": [ - "Excellent" - ], - "locations": [ - "New York" - ] - }, - "following_count": 20, - "id": 1591181, - "made_available_at": 1740430821, - "price": 1350, - "priced_at": 1743023852, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/7f0550fcf1eaaf45a3eaf184d42ea59b.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/7f0550fcf1eaaf45a3eaf184d42ea59b.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/7f0550fcf1eaaf45a3eaf184d42ea59b.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/0d5d9bcc94d100d45556ef69b9dad82f.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/0d5d9bcc94d100d45556ef69b9dad82f.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/0d5d9bcc94d100d45556ef69b9dad82f.jpg" - } - ], - "title": "SAINT LAURENT Grain De Poudre Matelasse Chevron Monogram Envelope Chain Wallet Black", - "title_without_brand": "Grain De Poudre Matelasse Chevron Monogram Envelope Chain Wallet Black", - "_tags": [ - "1591181" - ], - "objectID": "1591181", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "ysl", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "saint-laurent-shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "saint-laurent-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "saint-laurent-envelope-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "instagram-live-shopping", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "saint-laurent-clutches-evening-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "clutch-evening", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "crossbody-bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "saint-laurent-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "wallet-style", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "shoulder-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "saint-laurent-bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "cross-body", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "saint-laurent-wallet-style", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "saint-laurent-crossbody-bags", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic SAINT LAURENT Grain De Poudre Matelasse Chevron Monogram Envelope Chain Wallet in Black. This chain wallet features pebbled chevron-quilted leather in black. The bag features a gold chain link shoulder strap and a facing V-shaped flap with a gold YSL logo. The flap opens to a partitioned black leather interior with card slot panels, patch pockets, and a zipper divider.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Saint Laurent", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Black", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Leather", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1591181", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "SAINT LAURENT Grain De Poudre Matelasse Chevron Monogram Envelope Chain Wallet Black", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Van Cleef & Arpels", + "product_name": "18K Yellow Gold Diamond Small Frivole Ring 55 7.25", + "condition": "Shows Wear", + "discounted_price": 125, + "price": 2390, + "id": 10746567917871 }, { - "best_value": 0, - "categories": [ - "Pouches", - "Wallets", - "Browns", - "Structured", - "Coated Canvas", - "Travel & Luggage", - "Monogram", - "Accessories", - "Styles", - "Chic Stocking Stuffers", - "Womens", - "Louis Vuitton" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "travel-pouches", - "louis-vuitton-pouches", - "bags-under-1000", - "travel-luggage", - "louis-vuitton-monogram-bags", - "bags-on-sale", - "louis-vuitton-on-sale", - "louis-vuitton-wallets", - "louis-vuitton-travel-luggage", - "louis-vuitton-monogram", - "louis-vuitton", - "wallets-on-sale", - "little-luxuries", - "accessories-on-sale", - "louis-vuitton-bags", - "handbag-styles", - "pouches", - "wallets", - "accessories" - ], - "description": "This is an authentic LOUIS VUITTON Monogram Kirigami Pochette Set. This chic pouch set is crafted of Louis Vuitton monogram on toile canvas. The pouches come in three sizes: large, medium, and small. Each open with polished brass snap to light pink, red, and dark pink leather interior respectively.", - "discounted_price": 830, - "discounted_tier": 1, - "filters": { - "bags": [ - "Travel & Luggage" - ], - "jewelry": [], - "accessories": [ - "Pouches", - "Wallets" - ], - "watches": [], - "shoes": [], - "brands": [ - "Louis Vuitton" - ], - "color": [ - "Browns" - ], - "material": [ - "Coated Canvas" - ], - "bag_feature": [ - "Structured" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$500-$1000", - "condition": [ - "Excellent" - ], - "locations": [ - "New York" - ] - }, - "following_count": 50, - "id": 1591298, - "made_available_at": 1740431501, - "price": 875, - "priced_at": 1743023865, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/f715363f169e159d065483dc08bcc5f5.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/f715363f169e159d065483dc08bcc5f5.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/f715363f169e159d065483dc08bcc5f5.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/c92e0c1e9c859c2d5400afae26a05db8.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/c92e0c1e9c859c2d5400afae26a05db8.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/c92e0c1e9c859c2d5400afae26a05db8.jpg" - } - ], - "title": "LOUIS VUITTON Monogram Kirigami Pochette Set", - "title_without_brand": "Monogram Kirigami Pochette Set", - "_tags": [ - "1591298" - ], - "objectID": "1591298", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "travel-pouches", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-pouches", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "travel-luggage", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-monogram-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-wallets", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-travel-luggage", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-monogram", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "wallets-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "little-luxuries", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "pouches", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "wallets", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic LOUIS VUITTON Monogram Kirigami Pochette Set. This chic pouch set is crafted of Louis Vuitton monogram on toile canvas. The pouches come in three sizes: large, medium, and small. Each open with polished brass snap to light pink, red, and dark pink leather interior respectively.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Louis Vuitton", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Browns", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Coated Canvas", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1591298", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "LOUIS VUITTON Monogram Kirigami Pochette Set", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Chanel", + "product_name": "Lambskin CC Turnlock Cuff Bracelet Black Gold", + "condition": "Excellent", + "discounted_price": 80, + "price": 1490, + "id": 10746567852335 }, { - "best_value": 0, - "categories": [ - "Pouches", - "Wallets", - "Browns", - "Structured", - "Coated Canvas", - "Travel & Luggage", - "Monogram", - "Accessories", - "Styles", - "Chic Stocking Stuffers", - "Womens", - "Louis Vuitton" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "travel-pouches", - "louis-vuitton-pouches", - "bags-under-1000", - "travel-luggage", - "louis-vuitton-monogram-bags", - "bags-on-sale", - "louis-vuitton-on-sale", - "louis-vuitton-wallets", - "louis-vuitton-travel-luggage", - "louis-vuitton-monogram", - "louis-vuitton", - "wallets-on-sale", - "little-luxuries", - "accessories-on-sale", - "louis-vuitton-bags", - "handbag-styles", - "pouches", - "wallets", - "accessories" - ], - "description": "This is an authentic LOUIS VUITTON Monogram Kirigami Pochette Set. This chic pouch set is crafted of Louis Vuitton monogram on toile canvas. The pouches come in three sizes: large, medium, and small. Each open with polished brass snap to light pink, red, and dark pink leather interior respectively.", - "discounted_price": 830, - "discounted_tier": 1, - "filters": { - "bags": [ - "Travel & Luggage" - ], - "jewelry": [], - "accessories": [ - "Pouches", - "Wallets" - ], - "watches": [], - "shoes": [], - "brands": [ - "Louis Vuitton" - ], - "color": [ - "Browns" - ], - "material": [ - "Coated Canvas" - ], - "bag_feature": [ - "Structured" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$500-$1000", - "condition": [ - "Excellent" - ], - "locations": [ - "New York" - ] - }, - "following_count": 50, - "id": 1591298, - "made_available_at": 1740431501, - "price": 875, - "priced_at": 1743023865, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/f715363f169e159d065483dc08bcc5f5.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/f715363f169e159d065483dc08bcc5f5.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/f715363f169e159d065483dc08bcc5f5.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/c92e0c1e9c859c2d5400afae26a05db8.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/c92e0c1e9c859c2d5400afae26a05db8.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/c92e0c1e9c859c2d5400afae26a05db8.jpg" - } - ], - "title": "LOUIS VUITTON Monogram Kirigami Pochette Set", - "title_without_brand": "Monogram Kirigami Pochette Set", - "_tags": [ - "1591298" - ], - "objectID": "1591298", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "travel-pouches", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-pouches", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "travel-luggage", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-monogram-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-wallets", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-travel-luggage", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-monogram", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "wallets-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "little-luxuries", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "pouches", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "wallets", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic LOUIS VUITTON Monogram Kirigami Pochette Set. This chic pouch set is crafted of Louis Vuitton monogram on toile canvas. The pouches come in three sizes: large, medium, and small. Each open with polished brass snap to light pink, red, and dark pink leather interior respectively.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Louis Vuitton", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Browns", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Coated Canvas", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1591298", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "LOUIS VUITTON Monogram Kirigami Pochette Set", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Prada", + "product_name": "Saffiano Cuir Large Double Bag Bleuette", + "condition": "Shows Wear", + "discounted_price": 85, + "price": 1590, + "id": 10746567524655 }, { - "best_value": 0, - "categories": [ - "Pouches", - "Wallets", - "Browns", - "Structured", - "Coated Canvas", - "Travel & Luggage", - "Monogram", - "Accessories", - "Styles", - "Chic Stocking Stuffers", - "Womens", - "Louis Vuitton" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "travel-pouches", - "louis-vuitton-pouches", - "bags-under-1000", - "travel-luggage", - "louis-vuitton-monogram-bags", - "bags-on-sale", - "louis-vuitton-on-sale", - "louis-vuitton-wallets", - "louis-vuitton-travel-luggage", - "louis-vuitton-monogram", - "louis-vuitton", - "wallets-on-sale", - "little-luxuries", - "accessories-on-sale", - "louis-vuitton-bags", - "handbag-styles", - "pouches", - "wallets", - "accessories" - ], - "description": "This is an authentic LOUIS VUITTON Monogram Kirigami Pochette Set. This chic pouch set is crafted of Louis Vuitton monogram on toile canvas. The pouches come in three sizes: large, medium, and small. Each open with polished brass snap to light pink, red, and dark pink leather interior respectively.", - "discounted_price": 830, - "discounted_tier": 1, - "filters": { - "bags": [ - "Travel & Luggage" - ], - "jewelry": [], - "accessories": [ - "Pouches", - "Wallets" - ], - "watches": [], - "shoes": [], - "brands": [ - "Louis Vuitton" - ], - "color": [ - "Browns" - ], - "material": [ - "Coated Canvas" - ], - "bag_feature": [ - "Structured" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$500-$1000", - "condition": [ - "Excellent" - ], - "locations": [ - "New York" - ] - }, - "following_count": 50, - "id": 1591298, - "made_available_at": 1740431501, - "price": 875, - "priced_at": 1743023865, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/f715363f169e159d065483dc08bcc5f5.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/f715363f169e159d065483dc08bcc5f5.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/f715363f169e159d065483dc08bcc5f5.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/c92e0c1e9c859c2d5400afae26a05db8.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/c92e0c1e9c859c2d5400afae26a05db8.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/c92e0c1e9c859c2d5400afae26a05db8.jpg" - } - ], - "title": "LOUIS VUITTON Monogram Kirigami Pochette Set", - "title_without_brand": "Monogram Kirigami Pochette Set", - "_tags": [ - "1591298" - ], - "objectID": "1591298", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "travel-pouches", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-pouches", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-under-1000", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "travel-luggage", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-monogram-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "bags-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-wallets", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-travel-luggage", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-monogram", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "wallets-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "little-luxuries", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-bags", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "handbag-styles", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "pouches", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "wallets", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic LOUIS VUITTON Monogram Kirigami Pochette Set. This chic pouch set is crafted of Louis Vuitton monogram on toile canvas. The pouches come in three sizes: large, medium, and small. Each open with polished brass snap to light pink, red, and dark pink leather interior respectively.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Louis Vuitton", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Browns", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Coated Canvas", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1591298", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "LOUIS VUITTON Monogram Kirigami Pochette Set", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Louis Vuitton", + "product_name": "Raffia Saint Jacques Tote Caramel", + "condition": "Excellent", + "discounted_price": 135, + "price": 2545, + "id": 10746567393583 }, { - "best_value": 285, - "categories": [ - "Cosmetic Cases", - "Pouches", - "Browns", - "Zip Top", - "Womens", - "Coated Canvas", - "Monogram", - "Accessories", - "General", - "Weekend Getaway", - "Louis Vuitton" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "travel-pouches", - "louis-vuitton-pouches", - "louis-vuitton-on-sale", - "weekend-getaway", - "cosmetic-cases", - "louis-vuitton-monogram", - "louis-vuitton", - "accessories-on-sale", - "zip-top", - "travel-cosmetic-cases", - "pouches", - "accessories" - ], - "description": "This is an authentic LOUIS VUITTON Monogram Toiletry Pouch 26. This handy travel accessory is crafted of traditional Louis Vuitton monogram on toile coated canvas. The pouch features a top overextended zipper that opens to a spacious beige leather-like interior.", - "discounted_price": 785, - "discounted_tier": 1, - "filters": { - "bags": [], - "jewelry": [], - "accessories": [ - "Cosmetic Cases", - "Pouches" - ], - "watches": [], - "shoes": [], - "brands": [ - "Louis Vuitton" - ], - "color": [ - "Browns" - ], - "material": [ - "Coated Canvas" - ], - "bag_feature": [ - "Zip Top" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$500-$1000", - "condition": [ - "Excellent" - ], - "locations": [ - "New York" - ] - }, - "following_count": 37, - "id": 1591331, - "made_available_at": 1740433215, - "price": 825, - "priced_at": 1743023889, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/6815f9985938071df572dbe94afe554d.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/6815f9985938071df572dbe94afe554d.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/6815f9985938071df572dbe94afe554d.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/d407dd75b9bad52cdb4bce1beee77029.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/d407dd75b9bad52cdb4bce1beee77029.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/d407dd75b9bad52cdb4bce1beee77029.jpg" - } - ], - "title": "LOUIS VUITTON Monogram Toiletry Pouch 26", - "title_without_brand": "Monogram Toiletry Pouch 26", - "_tags": [ - "1591331" - ], - "objectID": "1591331", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "travel-pouches", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-pouches", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "weekend-getaway", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "cosmetic-cases", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-monogram", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "zip-top", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "travel-cosmetic-cases", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "pouches", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic LOUIS VUITTON Monogram Toiletry Pouch 26. This handy travel accessory is crafted of traditional Louis Vuitton monogram on toile coated canvas. The pouch features a top overextended zipper that opens to a spacious beige leather-like interior.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Louis Vuitton", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Browns", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Coated Canvas", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1591331", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "LOUIS VUITTON Monogram Toiletry Pouch 26", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Balenciaga", + "product_name": "Smooth Calfskin Hourglass Continental Wallet On Strap Black", + "condition": "Shows Wear", + "discounted_price": 35, + "price": 650, + "id": 10746567360815 }, { - "best_value": 285, - "categories": [ - "Cosmetic Cases", - "Pouches", - "Browns", - "Zip Top", - "Womens", - "Coated Canvas", - "Monogram", - "Accessories", - "General", - "Weekend Getaway", - "Louis Vuitton" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "travel-pouches", - "louis-vuitton-pouches", - "louis-vuitton-on-sale", - "weekend-getaway", - "cosmetic-cases", - "louis-vuitton-monogram", - "louis-vuitton", - "accessories-on-sale", - "zip-top", - "travel-cosmetic-cases", - "pouches", - "accessories" - ], - "description": "This is an authentic LOUIS VUITTON Monogram Toiletry Pouch 26. This handy travel accessory is crafted of traditional Louis Vuitton monogram on toile coated canvas. The pouch features a top overextended zipper that opens to a spacious beige leather-like interior.", - "discounted_price": 785, - "discounted_tier": 1, - "filters": { - "bags": [], - "jewelry": [], - "accessories": [ - "Cosmetic Cases", - "Pouches" - ], - "watches": [], - "shoes": [], - "brands": [ - "Louis Vuitton" - ], - "color": [ - "Browns" - ], - "material": [ - "Coated Canvas" - ], - "bag_feature": [ - "Zip Top" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$500-$1000", - "condition": [ - "Excellent" - ], - "locations": [ - "New York" - ] - }, - "following_count": 37, - "id": 1591331, - "made_available_at": 1740433215, - "price": 825, - "priced_at": 1743023889, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/6815f9985938071df572dbe94afe554d.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/6815f9985938071df572dbe94afe554d.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/6815f9985938071df572dbe94afe554d.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/d407dd75b9bad52cdb4bce1beee77029.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/d407dd75b9bad52cdb4bce1beee77029.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/d407dd75b9bad52cdb4bce1beee77029.jpg" - } - ], - "title": "LOUIS VUITTON Monogram Toiletry Pouch 26", - "title_without_brand": "Monogram Toiletry Pouch 26", - "_tags": [ - "1591331" - ], - "objectID": "1591331", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "travel-pouches", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-pouches", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "weekend-getaway", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "cosmetic-cases", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-monogram", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "zip-top", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "travel-cosmetic-cases", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "pouches", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic LOUIS VUITTON Monogram Toiletry Pouch 26. This handy travel accessory is crafted of traditional Louis Vuitton monogram on toile coated canvas. The pouch features a top overextended zipper that opens to a spacious beige leather-like interior.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Louis Vuitton", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Browns", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Coated Canvas", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1591331", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "LOUIS VUITTON Monogram Toiletry Pouch 26", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Hermes", + "product_name": "Matte Niloticus Crocodile Himalaya Collier De Chien CDC Bracelet T1 Blanc", + "condition": "Giftable", + "discounted_price": 140, + "price": 2610, + "id": 10578772525359 }, { - "best_value": 285, - "categories": [ - "Cosmetic Cases", - "Pouches", - "Browns", - "Zip Top", - "Womens", - "Coated Canvas", - "Monogram", - "Accessories", - "General", - "Weekend Getaway", - "Louis Vuitton" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "travel-pouches", - "louis-vuitton-pouches", - "louis-vuitton-on-sale", - "weekend-getaway", - "cosmetic-cases", - "louis-vuitton-monogram", - "louis-vuitton", - "accessories-on-sale", - "zip-top", - "travel-cosmetic-cases", - "pouches", - "accessories" - ], - "description": "This is an authentic LOUIS VUITTON Monogram Toiletry Pouch 26. This handy travel accessory is crafted of traditional Louis Vuitton monogram on toile coated canvas. The pouch features a top overextended zipper that opens to a spacious beige leather-like interior.", - "discounted_price": 785, - "discounted_tier": 1, - "filters": { - "bags": [], - "jewelry": [], - "accessories": [ - "Cosmetic Cases", - "Pouches" - ], - "watches": [], - "shoes": [], - "brands": [ - "Louis Vuitton" - ], - "color": [ - "Browns" - ], - "material": [ - "Coated Canvas" - ], - "bag_feature": [ - "Zip Top" - ], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$500-$1000", - "condition": [ - "Excellent" - ], - "locations": [ - "New York" - ] - }, - "following_count": 37, - "id": 1591331, - "made_available_at": 1740433215, - "price": 825, - "priced_at": 1743023889, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/6815f9985938071df572dbe94afe554d.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/6815f9985938071df572dbe94afe554d.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/6815f9985938071df572dbe94afe554d.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/d407dd75b9bad52cdb4bce1beee77029.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/d407dd75b9bad52cdb4bce1beee77029.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/d407dd75b9bad52cdb4bce1beee77029.jpg" - } - ], - "title": "LOUIS VUITTON Monogram Toiletry Pouch 26", - "title_without_brand": "Monogram Toiletry Pouch 26", - "_tags": [ - "1591331" - ], - "objectID": "1591331", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "travel-pouches", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-pouches", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "weekend-getaway", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "cosmetic-cases", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-monogram", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "zip-top", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "travel-cosmetic-cases", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "pouches", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic LOUIS VUITTON Monogram Toiletry Pouch 26. This handy travel accessory is crafted of traditional Louis Vuitton monogram on toile coated canvas. The pouch features a top overextended zipper that opens to a spacious beige leather-like interior.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Louis Vuitton", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Browns", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Coated Canvas", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1591331", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "LOUIS VUITTON Monogram Toiletry Pouch 26", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Gucci", + "product_name": "Monogram Matelasse Diagonal Small GG Marmont Chain Shoulder Bag Beige Black", + "condition": "Shows Wear", + "discounted_price": 40, + "price": 795, + "id": 10746566934831 }, { - "best_value": 140, - "categories": [ - "Sunglasses", - "Black", - "Womens", - "Plastics", - "Solid Color", - "Monogram", - "Accessories", - "General", - "For the Mom on the Go", - "Louis Vuitton" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "on-the-go", - "louis-vuitton-sunglasses", - "louis-vuitton-on-sale", - "louis-vuitton-monogram", - "louis-vuitton", - "accessories-on-sale", - "sunglasses", - "sunglasses-on-sale", - "accessories" - ], - "description": "This is an authentic pair of LOUIS VUITTON Acetate My Monogram Fame Rectangle Sunglasses Z2136U in Black. These chic sunglasses feature a classic black frame with black gradient lenses and gold fleurs at the corners and monogram detailing on the arms.", - "discounted_price": 375, - "discounted_tier": 1, - "filters": { - "bags": [], - "jewelry": [], - "accessories": [ - "Sunglasses" - ], - "watches": [], - "shoes": [], - "brands": [ - "Louis Vuitton" - ], - "color": [ - "Black" - ], - "material": [ - "Plastics", - "Solid Color" - ], - "bag_feature": [], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$200-$500", - "condition": [ - "Shows Wear" - ], - "locations": [ - "New York" - ] - }, - "following_count": 47, - "id": 1591447, - "made_available_at": 1740431519, - "price": 395, - "priced_at": 1743023865, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/09e8d7c88417896e0b190586f3abfa82.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/09e8d7c88417896e0b190586f3abfa82.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/09e8d7c88417896e0b190586f3abfa82.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/41fdc35236853e773122774cdc31eb57.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/41fdc35236853e773122774cdc31eb57.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/41fdc35236853e773122774cdc31eb57.jpg" - } - ], - "title": "LOUIS VUITTON Acetate My Monogram Fame Rectangle Sunglasses Z2136U Black", - "title_without_brand": "Acetate My Monogram Fame Rectangle Sunglasses Z2136U Black", - "_tags": [ - "1591447" - ], - "objectID": "1591447", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "on-the-go", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-sunglasses", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-monogram", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "sunglasses", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "sunglasses-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic pair of LOUIS VUITTON Acetate My Monogram Fame Rectangle Sunglasses Z2136U in Black. These chic sunglasses feature a classic black frame with black gradient lenses and gold fleurs at the corners and monogram detailing on the arms.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Louis Vuitton", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Black", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Plastics", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1591447", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "LOUIS VUITTON Acetate My Monogram Fame Rectangle Sunglasses Z2136U Black", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Chanel", + "product_name": "Caviar Chevron Quilted Small Zipped Pouch Blue", + "condition": "Excellent", + "discounted_price": 45, + "price": 850, + "id": 10746566345007 }, { - "best_value": 140, - "categories": [ - "Sunglasses", - "Black", - "Womens", - "Plastics", - "Solid Color", - "Monogram", - "Accessories", - "General", - "For the Mom on the Go", - "Louis Vuitton" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "on-the-go", - "louis-vuitton-sunglasses", - "louis-vuitton-on-sale", - "louis-vuitton-monogram", - "louis-vuitton", - "accessories-on-sale", - "sunglasses", - "sunglasses-on-sale", - "accessories" - ], - "description": "This is an authentic pair of LOUIS VUITTON Acetate My Monogram Fame Rectangle Sunglasses Z2136U in Black. These chic sunglasses feature a classic black frame with black gradient lenses and gold fleurs at the corners and monogram detailing on the arms.", - "discounted_price": 375, - "discounted_tier": 1, - "filters": { - "bags": [], - "jewelry": [], - "accessories": [ - "Sunglasses" - ], - "watches": [], - "shoes": [], - "brands": [ - "Louis Vuitton" - ], - "color": [ - "Black" - ], - "material": [ - "Plastics", - "Solid Color" - ], - "bag_feature": [], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$200-$500", - "condition": [ - "Shows Wear" - ], - "locations": [ - "New York" - ] - }, - "following_count": 47, - "id": 1591447, - "made_available_at": 1740431519, - "price": 395, - "priced_at": 1743023865, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/09e8d7c88417896e0b190586f3abfa82.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/09e8d7c88417896e0b190586f3abfa82.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/09e8d7c88417896e0b190586f3abfa82.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/41fdc35236853e773122774cdc31eb57.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/41fdc35236853e773122774cdc31eb57.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/41fdc35236853e773122774cdc31eb57.jpg" - } - ], - "title": "LOUIS VUITTON Acetate My Monogram Fame Rectangle Sunglasses Z2136U Black", - "title_without_brand": "Acetate My Monogram Fame Rectangle Sunglasses Z2136U Black", - "_tags": [ - "1591447" - ], - "objectID": "1591447", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "on-the-go", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-sunglasses", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-monogram", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "sunglasses", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "sunglasses-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic pair of LOUIS VUITTON Acetate My Monogram Fame Rectangle Sunglasses Z2136U in Black. These chic sunglasses feature a classic black frame with black gradient lenses and gold fleurs at the corners and monogram detailing on the arms.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Louis Vuitton", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Black", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Plastics", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1591447", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "LOUIS VUITTON Acetate My Monogram Fame Rectangle Sunglasses Z2136U Black", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Fendi", + "product_name": "Vitello Seta Glazed Fabric FF 1974 Medium Peekaboo X-Lite Maya Mogano Panna", + "condition": "Shows Wear", + "discounted_price": 60, + "price": 1090, + "id": 10746566213935 }, { - "best_value": 140, - "categories": [ - "Sunglasses", - "Black", - "Womens", - "Plastics", - "Solid Color", - "Monogram", - "Accessories", - "General", - "For the Mom on the Go", - "Louis Vuitton" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "on-the-go", - "louis-vuitton-sunglasses", - "louis-vuitton-on-sale", - "louis-vuitton-monogram", - "louis-vuitton", - "accessories-on-sale", - "sunglasses", - "sunglasses-on-sale", - "accessories" - ], - "description": "This is an authentic pair of LOUIS VUITTON Acetate My Monogram Fame Rectangle Sunglasses Z2136U in Black. These chic sunglasses feature a classic black frame with black gradient lenses and gold fleurs at the corners and monogram detailing on the arms.", - "discounted_price": 375, - "discounted_tier": 1, - "filters": { - "bags": [], - "jewelry": [], - "accessories": [ - "Sunglasses" - ], - "watches": [], - "shoes": [], - "brands": [ - "Louis Vuitton" - ], - "color": [ - "Black" - ], - "material": [ - "Plastics", - "Solid Color" - ], - "bag_feature": [], - "ring_size": [], - "watch_size": [], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "$200-$500", - "condition": [ - "Shows Wear" - ], - "locations": [ - "New York" - ] - }, - "following_count": 47, - "id": 1591447, - "made_available_at": 1740431519, - "price": 395, - "priced_at": 1743023865, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/09e8d7c88417896e0b190586f3abfa82.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/09e8d7c88417896e0b190586f3abfa82.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/09e8d7c88417896e0b190586f3abfa82.jpg" - }, - { - "order": 2, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/41fdc35236853e773122774cdc31eb57.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/41fdc35236853e773122774cdc31eb57.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/41fdc35236853e773122774cdc31eb57.jpg" - } - ], - "title": "LOUIS VUITTON Acetate My Monogram Fame Rectangle Sunglasses Z2136U Black", - "title_without_brand": "Acetate My Monogram Fame Rectangle Sunglasses Z2136U Black", - "_tags": [ - "1591447" - ], - "objectID": "1591447", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "on-the-go", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-sunglasses", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton-monogram", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "louis-vuitton", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "sunglasses", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "sunglasses-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "accessories", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic pair of LOUIS VUITTON Acetate My Monogram Fame Rectangle Sunglasses Z2136U in Black. These chic sunglasses feature a classic black frame with black gradient lenses and gold fleurs at the corners and monogram detailing on the arms.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Louis Vuitton", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Black", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Plastics", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Solid Color", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1591447", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "LOUIS VUITTON Acetate My Monogram Fame Rectangle Sunglasses Z2136U Black", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Saint Laurent", + "product_name": "Grained Calfskin Small Supple Sac De Jour Navy", + "condition": "Shows Wear", + "discounted_price": 50, + "price": 995, + "id": 10746565853487 }, { - "best_value": 1420, - "categories": [ - "Pink", - "Exotic Skins & Fur", - "Stainless Steel", - "Watches", - "Luxury Watches", - "31 to 40mm", - "Womens", - "Pop in Pastels", - "Cartier" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "luxury-watches", - "cartier-watches", - "pastels", - "watches-on-sale", - "cartier-on-sale", - "watches", - "cartier" - ], - "description": "This is an authentic CARTIER Stainless Steel Alligator 33mm Ballon Bleu De Cartier Automatic Watch Pink. This watch is crafted of stainless steel and features a pink dial, blue hands and Roman numeral hour markers, pink alligator strap, sapphire crystal, and an automatic movement.", - "discounted_price": 4080, - "discounted_tier": 1, - "filters": { - "bags": [], - "jewelry": [], - "accessories": [], - "watches": [ - "Luxury Watches" - ], - "shoes": [], - "brands": [ - "Cartier" - ], - "color": [ - "Pink" - ], - "material": [ - "Exotic Skins & Fur", - "Stainless Steel" - ], - "bag_feature": [], - "ring_size": [], - "watch_size": [ - "31 to 40mm" - ], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "Over $2000", - "condition": [ - "Shows Wear" - ], - "locations": [ - "Carlsbad" - ] - }, - "following_count": 37, - "id": 1592341, - "made_available_at": 1740452254, - "price": 4295, - "priced_at": 1743040806, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/053ec5595cecf0810830b18dfb54ae64.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/053ec5595cecf0810830b18dfb54ae64.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/053ec5595cecf0810830b18dfb54ae64.jpg" - }, - { - "order": 3, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/5477d61bcb13acbe451c61e82594694a.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/5477d61bcb13acbe451c61e82594694a.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/5477d61bcb13acbe451c61e82594694a.jpg" - } - ], - "title": "CARTIER Stainless Steel Alligator 33mm Ballon Bleu De Cartier Automatic Watch Pink", - "title_without_brand": "Stainless Steel Alligator 33mm Ballon Bleu De Cartier Automatic Watch Pink", - "_tags": [ - "1592341" - ], - "objectID": "1592341", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "luxury-watches", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "cartier-watches", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "pastels", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "watches-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "cartier-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "watches", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "cartier", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic CARTIER Stainless Steel Alligator 33mm Ballon Bleu De Cartier Automatic Watch Pink. This watch is crafted of stainless steel and features a pink dial, blue hands and Roman numeral hour markers, pink alligator strap, sapphire crystal, and an automatic movement.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Cartier", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Pink", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Exotic Skins & Fur", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Stainless Steel", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1592341", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "CARTIER Stainless Steel Alligator 33mm Ballon Bleu De Cartier Automatic Watch Pink", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Hermes", + "product_name": "Enamel Printed Extra Wide L'Ivresse De L'Infini Bracelet 70", + "condition": "Excellent", + "discounted_price": 25, + "price": 450, + "id": 10746565296431 }, { - "best_value": 1420, - "categories": [ - "Pink", - "Exotic Skins & Fur", - "Stainless Steel", - "Watches", - "Luxury Watches", - "31 to 40mm", - "Womens", - "Pop in Pastels", - "Cartier" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "luxury-watches", - "cartier-watches", - "pastels", - "watches-on-sale", - "cartier-on-sale", - "watches", - "cartier" - ], - "description": "This is an authentic CARTIER Stainless Steel Alligator 33mm Ballon Bleu De Cartier Automatic Watch Pink. This watch is crafted of stainless steel and features a pink dial, blue hands and Roman numeral hour markers, pink alligator strap, sapphire crystal, and an automatic movement.", - "discounted_price": 4080, - "discounted_tier": 1, - "filters": { - "bags": [], - "jewelry": [], - "accessories": [], - "watches": [ - "Luxury Watches" - ], - "shoes": [], - "brands": [ - "Cartier" - ], - "color": [ - "Pink" - ], - "material": [ - "Exotic Skins & Fur", - "Stainless Steel" - ], - "bag_feature": [], - "ring_size": [], - "watch_size": [ - "31 to 40mm" - ], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "Over $2000", - "condition": [ - "Shows Wear" - ], - "locations": [ - "Carlsbad" - ] - }, - "following_count": 37, - "id": 1592341, - "made_available_at": 1740452254, - "price": 4295, - "priced_at": 1743040806, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/053ec5595cecf0810830b18dfb54ae64.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/053ec5595cecf0810830b18dfb54ae64.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/053ec5595cecf0810830b18dfb54ae64.jpg" - }, - { - "order": 3, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/5477d61bcb13acbe451c61e82594694a.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/5477d61bcb13acbe451c61e82594694a.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/5477d61bcb13acbe451c61e82594694a.jpg" - } - ], - "title": "CARTIER Stainless Steel Alligator 33mm Ballon Bleu De Cartier Automatic Watch Pink", - "title_without_brand": "Stainless Steel Alligator 33mm Ballon Bleu De Cartier Automatic Watch Pink", - "_tags": [ - "1592341" - ], - "objectID": "1592341", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "luxury-watches", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "cartier-watches", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "pastels", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "watches-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "cartier-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "watches", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "cartier", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic CARTIER Stainless Steel Alligator 33mm Ballon Bleu De Cartier Automatic Watch Pink. This watch is crafted of stainless steel and features a pink dial, blue hands and Roman numeral hour markers, pink alligator strap, sapphire crystal, and an automatic movement.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Cartier", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Pink", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Exotic Skins & Fur", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Stainless Steel", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1592341", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "CARTIER Stainless Steel Alligator 33mm Ballon Bleu De Cartier Automatic Watch Pink", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Chanel", + "product_name": "Lambskin Quilted Large 31 Shopping Bag Pink Beige", + "condition": "Shows Wear", + "discounted_price": 75, + "price": 1450, + "id": 10746565165359 }, { - "best_value": 1420, - "categories": [ - "Pink", - "Exotic Skins & Fur", - "Stainless Steel", - "Watches", - "Luxury Watches", - "31 to 40mm", - "Womens", - "Pop in Pastels", - "Cartier" - ], - "categories_page_id": [ - "discounted", - "discounted_5", - "luxury-watches", - "cartier-watches", - "pastels", - "watches-on-sale", - "cartier-on-sale", - "watches", - "cartier" - ], - "description": "This is an authentic CARTIER Stainless Steel Alligator 33mm Ballon Bleu De Cartier Automatic Watch Pink. This watch is crafted of stainless steel and features a pink dial, blue hands and Roman numeral hour markers, pink alligator strap, sapphire crystal, and an automatic movement.", - "discounted_price": 4080, - "discounted_tier": 1, - "filters": { - "bags": [], - "jewelry": [], - "accessories": [], - "watches": [ - "Luxury Watches" - ], - "shoes": [], - "brands": [ - "Cartier" - ], - "color": [ - "Pink" - ], - "material": [ - "Exotic Skins & Fur", - "Stainless Steel" - ], - "bag_feature": [], - "ring_size": [], - "watch_size": [ - "31 to 40mm" - ], - "belt_size": [], - "shoe_size": [], - "on_sale": [ - "5% Off" - ], - "price": "Over $2000", - "condition": [ - "Shows Wear" - ], - "locations": [ - "Carlsbad" - ] - }, - "following_count": 37, - "id": 1592341, - "made_available_at": 1740452254, - "price": 4295, - "priced_at": 1743040806, - "thumbnails": [ - { - "order": 1, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/053ec5595cecf0810830b18dfb54ae64.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/053ec5595cecf0810830b18dfb54ae64.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/053ec5595cecf0810830b18dfb54ae64.jpg" - }, - { - "order": 3, - "path": "/thumb/f628b3c3e7fb2b125096e83464736c74/5477d61bcb13acbe451c61e82594694a.jpg", - "thumb": "/thumb/f628b3c3e7fb2b125096e83464736c74/5477d61bcb13acbe451c61e82594694a.jpg", - "tiny": "/tiny/f628b3c3e7fb2b125096e83464736c74/5477d61bcb13acbe451c61e82594694a.jpg" - } - ], - "title": "CARTIER Stainless Steel Alligator 33mm Ballon Bleu De Cartier Automatic Watch Pink", - "title_without_brand": "Stainless Steel Alligator 33mm Ballon Bleu De Cartier Automatic Watch Pink", - "_tags": [ - "1592341" - ], - "objectID": "1592341", - "_highlightResult": { - "categories_page_id": [ - { - "value": "discounted", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "discounted_5", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "luxury-watches", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "cartier-watches", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "pastels", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "watches-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "cartier-on-sale", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "watches", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "cartier", - "matchLevel": "none", - "matchedWords": [] - } - ], - "description": { - "value": "This is an authentic CARTIER Stainless Steel Alligator 33mm Ballon Bleu De Cartier Automatic Watch Pink. This watch is crafted of stainless steel and features a pink dial, blue hands and Roman numeral hour markers, pink alligator strap, sapphire crystal, and an automatic movement.", - "matchLevel": "none", - "matchedWords": [] - }, - "filters": { - "brands": [ - { - "value": "Cartier", - "matchLevel": "none", - "matchedWords": [] - } - ], - "color": [ - { - "value": "Pink", - "matchLevel": "none", - "matchedWords": [] - } - ], - "material": [ - { - "value": "Exotic Skins & Fur", - "matchLevel": "none", - "matchedWords": [] - }, - { - "value": "Stainless Steel", - "matchLevel": "none", - "matchedWords": [] - } - ] - }, - "id": { - "value": "1592341", - "matchLevel": "none", - "matchedWords": [] - }, - "title": { - "value": "CARTIER Stainless Steel Alligator 33mm Ballon Bleu De Cartier Automatic Watch Pink", - "matchLevel": "none", - "matchedWords": [] - } - } + "brand_name": "Louis Vuitton", + "product_name": "Damier Ebene Key Pouch", + "condition": "Shows Wear", + "discounted_price": 15, + "price": 250, + "id": 10746564935983 } ] \ No newline at end of file diff --git a/fashionphile-scraper/test.py b/fashionphile-scraper/test.py index ec29607..4e56b30 100644 --- a/fashionphile-scraper/test.py +++ b/fashionphile-scraper/test.py @@ -53,28 +53,11 @@ def validate_or_fail(item, validator): } search_schema = { - "authentication_status": {"type": "string"}, - "brands": { - "type": "list", - "schema": { - "type": "dict", - "schema": { - "parent_id": {"type": "integer", "nullable": True}, - "name": {"type": "string"}, - "id": {"type": "integer"}, - "slug": {"type": "string"}, - }, - }, - }, - "categories": { - "type": "list", - "schema": { "type": "string" }, - }, + "brands": {"type": "string"}, + "product_name": {"type": "string"}, "condition": {"type": "string"}, "discounted_price": {"type": "integer"}, - "discounted_tier": {"type": "integer"}, "price": {"type": "integer"}, - "priced_at": {"type": "integer"}, "id": {"type": "integer"}, }