ENGIE
ENGIE
Making the energy transition accessible to private households
Making the energy transition accessible to private households
Why this Challenge?

ENGIE is a global reference in low-carbon energy and services. With its 97,000 employees, clients, partners and stakeholders, the Group strives daily to accelerate the transition towards a carbon-neutral economy, through reduced energy consumption and more environmentally friendly solutions.

ENGIE One BtoC is the entity of ENGIE focused on supplying electricity, gas, and associated services to both individuals and businesses. Its mission is to be their committed partner, helping them to make the energy transition simple, desirable and affordable. ENGIE One Retail covers six countries: France, Belgium, Italy, The Netherlands, Australia and Romania.

photo : © Antoine_Meyssonnier

The Startup Challenge
Decarbonization of households with boilers

ENGIE looks for pragmatic, available and affordable solutions to reduce CO2 emissions from households with boilers.

Context and need:
ENGIE One retail is very committed to helping its customers reduce their CO2 emissions. Offers are already available to enable residential customers to reduce their consumption, switch to efficient equipment such as heat pumps, or control and shift their consumption to low carbon hours.
ENGIE One Retail is seeking new, innovative and, above all, affordable solutions to achieve this goal in the short term.


Expected Solutions:
The proposed solutions must have before all a significant impact on household’s CO2 emissions and be able to be implemented quickly, at scale, and available in France.


Scope:
This includes financing, simplification of the customer journey, advices for equipment selection, innovative solutions for installation, education and awareness, behavioral coaching, etc.

Decarbonization of households with boilers

ENGIE looks for pragmatic, available and affordable solutions to reduce CO2 emissions from households with boilers.

Context and need:
ENGIE One retail is very committed to helping its customers reduce their CO2 emissions. Offers are already available to enable residential customers to reduce their consumption, switch to efficient equipment such as heat pumps, or control and shift their consumption to low carbon hours.
ENGIE One Retail is seeking new, innovative and, above all, affordable solutions to achieve this goal in the short term.


Expected Solutions:
The proposed solutions must have before all a significant impact on household’s CO2 emissions and be able to be implemented quickly, at scale, and available in France.


Scope:
This includes financing, simplification of the customer journey, advices for equipment selection, innovative solutions for installation, education and awareness, behavioral coaching, etc.

Decarbonization of households with boilers

ENGIE looks for pragmatic, available and affordable solutions to reduce CO2 emissions from households with boilers.

Context and need:
ENGIE One retail is very committed to helping its customers reduce their CO2 emissions. Offers are already available to enable residential customers to reduce their consumption, switch to efficient equipment such as heat pumps, or control and shift their consumption to low carbon hours.
ENGIE One Retail is seeking new, innovative and, above all, affordable solutions to achieve this goal in the short term.


Expected Solutions:
The proposed solutions must have before all a significant impact on household’s CO2 emissions and be able to be implemented quickly, at scale, and available in France.


Scope:
This includes financing, simplification of the customer journey, advices for equipment selection, innovative solutions for installation, education and awareness, behavioral coaching, etc.

Selection Criteria
Alignment with ENGIE's objectives

It's about evaluating the real impact of the solution in reducing CO2 emissions and the actual accessible market size (price, availability of the offer)

Value created for ENGIE and for the customer

This evaluates the value created by the solution in euros

Maturity of the solution

This evaluates the solution's ability to be scaled up in the French market

Geography

EMEA & US

Rewards
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

00:00:00:00

left to apply

left to apply

Jury

Jean BERTRAND HARDY

Jean BERTRAND HARDY

VP in charge of Strategy, Innovation, Business Development and Institutional Relations

VP in charge of Strategy, Innovation, Business Development and Institutional Relations

ENGIE One Retail

ENGIE One Retail

Anke HEPP DE SEVELINGES

Anke HEPP DE SEVELINGES

Sustainability Officer

Sustainability Officer

ENGIE One Retail

ENGIE One Retail

Vincent VINET

Vincent VINET

Chief Technical Officer

Chief Technical Officer

ENGIE Home Services

ENGIE Home Services

Alexandre DUBY

Alexandre DUBY

Head of Research & Innovation

Head of Research & Innovation

ENGIE One Retail

ENGIE One Retail

Nathalie CHABERT

Nathalie CHABERT

Head of Innovation & AI Strategy, Customer Experience Department

Head of Innovation & AI Strategy, Customer Experience Department

ENGIE France Retail

ENGIE France Retail

FAQ

Who can apply?

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

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

Is applying for an Award or Startup Challenge free?

Who can apply?

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

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

Is applying for an Award or Startup Challenge free?

Who can apply?

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

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

Is applying for an Award or Startup Challenge free?

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