Innovation of the Year
Innovation of the Year
Innovation of the Year
Crowning the Best in Innovation
Crowning the Best in Innovation
Crowning the Best in Innovation
The Award

The VivaTech Innovation of the Year returns for its second edition to spotlight visionary startups that are shaping the future. This VivaTech Award honors an exceptional company that embodies excellence in creativity, technological ingenuity, and transformative potential within its industry.

Are you a startup pushing the boundaries of innovation? Bringing disruptive solutions to today's challenges? Actively building tomorrow's world? Apply now!

This Award is dedicated to startups who will be exhibiting at VivaTech 2026.

Compressed image
Compressed image
Our main objective

Our objective is to showcase the wealth of talent and innovation across VivaTech exhibitors and help them unlock new business opportunities.

The journey: The five finalists will be invited to pitch their innovation live at VivaTech 2026 in June, gaining invaluable exposure to investors, industry leaders, and media.
The winner will be announced during a prestigious ceremony alongside other groundbreaking innovators, securing significant visibility and a spotlight throughout the entire event.

Don't miss this opportunity to elevate your startup on the global stage!

Eligibility Criteria
  • Be a startup exhibiting at VivaTech 2026

  • Have less than 100 employees

  • Company founded in or after 2020

Selection Criteria
Innovation & Creativity

Demonstration of a high level of innovation, relevance and originality

Market disruption

Potential to disrupt the market and transform its respective industry.

Scalability

Feasibility, practicality, and viability (technical, economic, and environmental) of implementing the solution.

Rewards
Timeline

52 Days 13 Hours

52 Days 13 Hours

left to apply

left to apply

Top 30
Chipiron

France

Chipiron is building the first lightweight, low-cost MRI scanner that uses ultra-low magnetic fields without sacrificing image quality.
The goal: to make MRI 100 times more accessible and enable early, large-scale screening.

Compressed image
2025 Finalists

These are the innovators who made it to the finals last year, and pitched live at VivaTech in front of an expert jury. Be one of them this year! 

Compressed image

Enerdrape

First non-invasive geothermal panel system that transforms underground spaces (parking lots, tunnels) into renewable sources of heating and cooling.

Switzerland

Lumisync

Enables data centers to synchronize their data flows at the speed of light with the world's first 100% photonic oscillator to reduce latency and energy consumption by 1000x.

France

BeyondMath

The world's first generative physics platform, replacing slow and costly simulations with real-time physics powered by AI. Engineers can perform simulations 1000x faster.

United Kingdom

Hua Tec International

Automated microfluidic platform integrating a nanostructured semiconductor biochip, multiplex fluorescence staining, and AI analysis to accurately capture, identify, and analyze rare circulating cells for cancer diagnosis.

Taiwan

Chipiron

Chipiron is building the first lightweight, low-cost MRI scanner that uses ultra-low magnetic fields without sacrificing image quality. The goal: to make MRI 100 times more accessible and enable early, large-scale screening.

France

FAQ

In which language should I write my answers?

What is the difference between a Startup Challenge and an Award?

Do I need to buy a pass to apply for a Startup Challenge / an Award?

Can I apply for more than one Startup Challenge / Award?

In which language should I write my answers?

How do I add images?

Do I need to buy a pass to apply for a Startup Challenge / an Award?

Can I apply for more than one Startup Challenge / Award?

FAQ

In which language should I write my answers?

What is the difference between a Startup Challenge and an Award?

Do I need to buy a pass to apply for a Startup Challenge / an Award?

Can I apply for more than one Startup Challenge / Award?

******* 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 *******/