Tech for Change
Tech for Change
Tech for Change
Tech for Change
Innovation That Moves the World Forward
Innovation That Moves the World Forward
Innovation That Moves the World Forward
Innovation That Moves the World Forward
Tech For Change : a Recognition & an Award

Built on the conviction that economic value and positive impact can reinforce each other, the Tech For Change recognizes exhibiting startups that place measurable positive impact at the core of their business model. 

Apply now and join us for the 10th edition of VivaTech, taking place 17–20 June 2026 in Paris. 

Tech For Change

VivaTech is where innovation meets business, and where innovation meets impact.  
In 2026, for the second edition of the Tech For Change, our recognition highlights 500 impactful exhibiting startups fostering solutions in three main areas: Environment, Society, and Health.  

From all the Tech For Change recognized startups, the most outstanding ventures enter the Tech For Change Award selection : the Top 30  (10 per category) and the Top 6 finalists (2 per category).  

The 6 finalists will pitch live on Wednesday, 17 June 2026, on the Pitch Studio stage, before the Grand Winner is announced the next day at VivaTech’s Global Innovation Awards Ceremony on Stage One, earning major visibility throughout the event. 

Make your impact visible. 

VivaTech is where innovation meets business, and where innovation meets impact.  
In 2026, for the second edition of the Tech For Change, our recognition highlights 500 impactful exhibiting startups fostering solutions in three main areas: Environment, Society, and Health.  

From all the Tech For Change recognized startups, the most outstanding ventures enter the Tech For Change Award selection : the Top 30  (10 per category) and the Top 6 finalists (2 per category).  

The 6 finalists will pitch live on Wednesday, 17 June 2026, on the Pitch Studio stage, before the Grand Winner is announced the next day at VivaTech’s Global Innovation Awards Ceremony on Stage One, earning major visibility throughout the event. 

Make your impact visible. 

VivaTech is where innovation meets business, and where innovation meets impact.  
In 2026, for the second edition of the Tech For Change, our recognition highlights 500 impactful exhibiting startups fostering solutions in three main areas: Environment, Society, and Health.  

From all the Tech For Change recognized startups, the most outstanding ventures enter the Tech For Change Award selection : the Top 30  (10 per category) and the Top 6 finalists (2 per category).  

The 6 finalists will pitch live on Wednesday, 17 June 2026, on the Pitch Studio stage, before the Grand Winner is announced the next day at VivaTech’s Global Innovation Awards Ceremony on Stage One, earning major visibility throughout the event. 

Make your impact visible. 

VivaTech is where innovation meets business, and where innovation meets impact.  
In 2026, for the second edition of the Tech For Change, our recognition highlights 500 impactful exhibiting startups fostering solutions in three main areas: Environment, Society, and Health.  

From all the Tech For Change recognized startups, the most outstanding ventures enter the Tech For Change Award selection : the Top 30  (10 per category) and the Top 6 finalists (2 per category).  

The 6 finalists will pitch live on Wednesday, 17 June 2026, on the Pitch Studio stage, before the Grand Winner is announced the next day at VivaTech’s Global Innovation Awards Ceremony on Stage One, earning major visibility throughout the event. 

Make your impact visible. 

Selection Criteria
Positive Impact

Startups with impact embedded in their business model, delivering measurable positive outcomes for environment, society or health. 

Tech

The solution must be tech-driven, with technology at the core of the product and business model.

Innovation

Level of relevance, originality, and innovation demonstrated by the tech solution.

Scalability & Viability

Ability to scale while remaining technically, economically and environmentally viable. 

Rewards
Timeline

79 Days 07 Hours

79 Days 07 Hours

left to apply

left to apply

2025 Winner
Genesis Soil Health

Co-founded by Adrienne de Malleray

Genesis is a startup focused on sustainable solutions for farmers and ecosystems. Their AI-powered platform helps farmers monitor and restore soil health, turning degraded land into fertile ecosystems. By analyzing biological and chemical indicators in real-time, Genesis delivers actionable insights that boost productivity and promote regenerative farming 

2025 Finalists

These are the impact 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! 

Find more details on our dedicated article  

Genesis

Genesis is a startup focused on sustainable solutions for farmers and ecosystems.

France

.lumen

Provides solutions visually impaired through groundbreaking assistive technology.

Romania

Alveolix

Redefines respiratory research with its groundbreaking "lung-on-chip" technology.

Switzerland

Reveal AI

Reveals hidden patterns and trends to turn complex data into actionable insights.

Canada

Beekee

Democratizes education with offline, plug-and-play learning through its Beekee Box.

Swistzerland

FAQ

Who can apply for the Tech for Change Recognition & Award?

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?

Who can apply for the Tech for Change Recognition & Award?

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?

Who can apply for the Tech for Change Recognition & Award?

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?

FAQ

Who can apply for the Tech for Change Recognition & Award?

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?

Who can apply for the Tech for Change Recognition & Award?

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