LVMH
LVMH
Innovation for Excellence
Innovation for Excellence
Startup Journey at LVMH
  1. APPLICATION - KICKSTART YOUR JOURNEY

You believe you can deliver scalable value to our LVMH Maisons, drop your application and get a chance to be part of our LVMH acceleration programs:
La Maison des Startups LVMH, LVMH’s Startup acceleration program at Station F
The Lab LVMH, a unique place based in our HQ to demonstrate innovative solutions

  1. GET ACCELERATED WITH LVMH INNOVATION PROGRAMS

In 2026-2027, after joining one of the programs, the selected startups will have the opportunity to demonstrate the value of their products and services to the LVMH Maisons with the support of LVMH HQ Teams.

  1. PARTICIPATE IN THE LVMH INNOVATION AWARD

Successful collaborations with LVMH Maison will have the chance to participate in the ​LVMH Innovation Award the following year. The selected projects will be featured at the LVMH Booth and benefit from a large communication coverage.

  1. BECOME A RECOMMENDED PARTNER

Startups with a proven track record and scalability potential within the LVMH Group are meant to become partners recommended by the LVMH Group to all its Maisons.

Selection Criteria
Scalability Potential

Outline the potential of your solution to be scaled across other Maisons & Divisions within the group and globally.

Tangible 1st Results

Demonstrate measurable results and impact of your solution to date. This could include metrics related to sales, customer engagement, efficiency gains, or brand enhancement.

Innovation Focus

Your proposition should demonstrate a clear innovation in product, service, process, or business model for the luxury retail landscape, not covered yet by the LVMH providers eco-system.

Play an active role in our six business sectors

Your solution, product or service demonstrates that you can play an active role in LVMH's ecosystem and deliver on a large scale. Whether it be the creation process, the omnichannel customer journey, or operation and manufacturing, you support the Group's legacy of excellence and innovation in all areas of its 6 business sectors.

  • Fashion & Leather Goods

  • Wines & Spirits

  • Perfumes & Cosmetics

  • Watches & Jewelry

  • Other Activities

  • Selective Retailing

Timeline

04 Days 08 Hours

left to apply

left to apply

******* JAVASCRIPT *******/ /** * Allowed parameters for the tracking code */ const allowedParameters: string[] = [ 'ca', 'utm', 'utm_source', 'utm_medium', 'utm_campaign', 'utm_term', 'utm_content', // 'cat', // Blog // 'ag_t', 't', // Warning this parameters is used like tracking for Challenges partners "Agorize", 'wid' // Paramters for revolugo urls ]; /** * Rreturn the object with the allowed parameters * @param ownParams URLSearchParams * @returns Object */ const ownCtmParameters = (ownParams: URLSearchParams) => { let obj = {}; for (const [key, value] of ownParams.entries()) { //console.log("ownCtmParameters key: ", key); if (allowedParameters.includes(key)) { // console.log("PAss key: ", key); obj[key] = value; } else { // console.log("No PAss key: ", key); } } return obj; }; /** * Insert the tracking code in the anchor elements * @returns void */ const insertTrackingCode = () => { // Get tracking parameters from URL search params const searchParams = new URLSearchParams(window.location.search); // Convert search params to object const filteredParams = ownCtmParameters(searchParams); // If no parameters, return early if (Object.keys(filteredParams).length === 0) { return; } const paramsString = new URLSearchParams(filteredParams).toString(); const baseUrl = window.location.origin; // Get all anchor elements from the current document const anchors = document.querySelectorAll('a'); for (const anchor of anchors) { const href = anchor.getAttribute('href'); const target = anchor.getAttribute('target'); if (!href || target === '_blank') { continue; } // Normalize href const normalizedHref = href.startsWith('https') ? href : href.replace(/^\.\//, '/'); try { const url = normalizedHref.startsWith('http') ? new URL(normalizedHref) : new URL(normalizedHref, baseUrl); const baseUrlObj = new URL(baseUrl); const isExternal = url.origin !== baseUrlObj.origin && !normalizedHref.includes('vivatech.com') && !normalizedHref.includes('vivatechnology.com'); if (isExternal) { continue; } // Add tracking parameters const hasExistingParams = url.search.length > 0; if (hasExistingParams) { url.search += '&' + paramsString; } else { url.search = '?' + paramsString; } anchor.setAttribute('href', url.origin + url.pathname + url.search + (url.hash || '')); } catch (e) { // If href is not a valid URL, skip it continue; } } }; /******* END JAVASCRIPT *******/ /******* INTEGRATION *******/ // Or with DOMContentLoaded document.addEventListener('DOMContentLoaded', () => { insertTrackingCode(); }); /******* END INTEGRATION *******/