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
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. 

Compressed image
Compressed image
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. 

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. 

Jury

Gwendal Bihan

Gwendal Bihan

CEO

CEO

Axionable

Axionable

Soichiro Yasukawa

Soichiro Yasukawa

Chief of Disaster Risk Reduction

Chief of Disaster Risk Reduction

UNESCO

UNESCO

Charlie Perreau

Charlie Perreau

Head of the Tech-Media-Startup Division

Head of the Tech-Media-Startup Division

Les Echos

Les Echos

Bella Zhang

Bella Zhang

Vice-President

Vice-President

Fond Envision HongShan Net Zero

Fond Envision HongShan Net Zero

Zoe Peden

Zoe Peden

Partner

Partner

Ananda Impact Ventures

Ananda Impact Ventures

Yann Laurans

Yann Laurans

Director of conservation and Board Member

Director of conservation and Board Member

WWF

WWF

Rewards
2026 Winner
Fanny Giannou

CEO de Alithea Biotechnology GmbH

Alithea Bio develops immunopeptidomics and peptide extraction technologies to accelerate biomarker and personalized immunotherapy discovery. Our customers are biotech, pharma, and research institutions advancing precision medicine.


Compressed image
Meet this year’s Top 6
Meet this year’s Top 30
Timeline

00:00:00:00

00:00:00:00

left to apply

left to apply

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?

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?

Jury

Gwendal Bihan

CEO

Axionable

Soichiro Yasukawa

Chief of Disaster Risk Reduction

UNESCO

Charlie Perreau

Head of the Tech-Media-Startup Division

Les Echos

Bella Zhang

Vice-President

Fond Envision HongShan Net Zero

Zoe Peden

Partner

Ananda Impact Ventures

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