Next Startupper Award
Next Startupper Award
Next Startupper Award
Next Startupper Award
Championing the Next Generation of Entrepreneurs
Championing the Next Generation of Entrepreneurs
Championing the Next Generation of Entrepreneurs
Championing the Next Generation of Entrepreneurs
The Award

The Next Startupper Award celebrates student entrepreneurs driving positive change through innovation. This inter-school and university competition offers aspiring founders the opportunity to pitch their impact-driven solutions to leading tech and entrepreneurship experts at VivaTech.

Apply now and join us for the 10th edition of VivaTech, taking place from 17-20 June 2026 at Paris Expo Porte de Versailles.

The Next Startupper Award is the 8th edition of the inter-school and university competition for the new generation of entrepreneurs building ventures with positive impact. This is your opportunity to transform your entrepreneurial vision into reality on the global innovation stage.

Do you have an entrepreneurial project in development? Are you ready to accelerate your venture by presenting your innovative solution to leading tech and entrepreneurship experts? This competition gives you a powerful platform to gain visibility, receive expert feedback, and connect with investors and industry leaders who can propel your project forward.

Don't miss this opportunity to shine at VivaTech and compete for the €5,000 prize.

The Next Startupper Award is the 8th edition of the inter-school and university competition for the new generation of entrepreneurs building ventures with positive impact. This is your opportunity to transform your entrepreneurial vision into reality on the global innovation stage.

Do you have an entrepreneurial project in development? Are you ready to accelerate your venture by presenting your innovative solution to leading tech and entrepreneurship experts? This competition gives you a powerful platform to gain visibility, receive expert feedback, and connect with investors and industry leaders who can propel your project forward.

Don't miss this opportunity to shine at VivaTech and compete for the €5,000 prize.

The Next Startupper Award is the 8th edition of the inter-school and university competition for the new generation of entrepreneurs building ventures with positive impact. This is your opportunity to transform your entrepreneurial vision into reality on the global innovation stage.

Do you have an entrepreneurial project in development? Are you ready to accelerate your venture by presenting your innovative solution to leading tech and entrepreneurship experts? This competition gives you a powerful platform to gain visibility, receive expert feedback, and connect with investors and industry leaders who can propel your project forward.

Don't miss this opportunity to shine at VivaTech and compete for the €5,000 prize.

The Next Startupper Award is the 8th edition of the inter-school and university competition for the new generation of entrepreneurs building ventures with positive impact. This is your opportunity to transform your entrepreneurial vision into reality on the global innovation stage.

Do you have an entrepreneurial project in development? Are you ready to accelerate your venture by presenting your innovative solution to leading tech and entrepreneurship experts? This competition gives you a powerful platform to gain visibility, receive expert feedback, and connect with investors and industry leaders who can propel your project forward.

Don't miss this opportunity to shine at VivaTech and compete for the €5,000 prize.

Eligibility Criteria
  • Language : Ability to communicate and pitch in English.

  • Student Status : Be a current student enrolled in a school or university

  • Project Maturity: Have an entrepreneurial, innovative, and tech/digital-oriented project or startup created less than three years ago

The six finalists will be selected based on the criteria below, with attention to gender parity and diverse representation of schools and countries of origin.

Selection Criteria
Entrepreneur Profile

Display clear vision and ambition, team complementarity, market and customer knowledge, technical and commercial skills, and ability to articulate ideas effectively (pitch deck)

Positive Impact

Demonstrate meaningful social and/or environmental positive impact through your project

Innovation

Show relevance, originality, and technological innovation compared to existing alternatives in the market

Scalability

Present a feasible, realistic, and viable solution with strong technical, economic, and environmental sustainability

Rewards
Timeline

12 Days 08 Hours

12 Days 08 Hours

left to apply

left to apply

Media Partner

Our 2025 Godfather
Cyril Chiche

Co-founder & CEO of Lydia

Cyril Chiche has made Lydia a cult app among young French people. With Sumeria, his new banking offering, the entrepreneur now wants to compete with traditional banks by focusing on deposit remuneration, fraud prevention, and artificial intelligence.

2025 Finalists

Zied Madini

Institut Mines-Télécom, Greeny Solutions

Winner

Typhaine Brual

Insa Lyon, Artemisia

Special Mention of the Jury

Corentin Neker

Lyon 3 University, Awoken

Bérénice Arias

Centrale Supelec, Atmosph’Air

Maxence Lamhaut

Paris School of Business, Youngs Job

Espoir Adouwekonou

École d'ingénieurs EIGSI, Fairconn Aict

FAQ

Who can apply to the Next Startupper 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 to the Next Startupper 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 to the Next Startupper 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 to the Next Startupper 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 to the Next Startupper 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 *******/