Haleon
Haleon
Unlocking the Invisible: Consumer Health Insights
Unlocking the Invisible: Consumer Health Insights
Why this Challenge?

People are surrounded by health data yet often unsure what it means or how to act. That uncertainty keeps prevention and condition management out of reach for many.

Guided by Haleon’s purpose to deliver better everyday health with humanity, we seek innovations that turn personal health data into simple, trustworthy, actionable guidance.

We’re seeking solutions to make the invisible visible, helping people notice early changes and take confident proactive steps toward self care.

Our Startup Challenge
Health with Humanity: Actionable insights for preventative care

The context:
People often struggle to understand what’s happening in their bodies until their conditions progress too far. Current solutions are either too complex, expensive or only suitable within a professional health care setting. This leaves many people uninformed about their own health and what actions they should take.

We want to improve access by providing personalised health insights, so that people are equipped to make earlier decisions about their health. We’re interested in visualising complex science to communicate early health changes easily to drive a more preventative self-care approach.

What we are looking for:
We’re seeking consumer-friendly, evidence-based tools that turn health data into clear, reliable insights plus simple next steps for self-care.

Solutions must focus on:
• Pain Relief
• Oral Health
• Respiratory Health
• Vitamins, Minerals and Supplements
• Digestive Health or
• Therapeutic Skin Health
Find out more at haleon.com/our-brands.

Solutions must be:
• Scientifically validated
• Prescription-free
• Low cost
• Accessible at home/retail
• Provide fast results
• No more invasive than a finger-prick blood sample
Solutions shouldn't require high-cost hardware or clinical supervision.

Health with Humanity: Actionable insights for preventative care

The context:
People often struggle to understand what’s happening in their bodies until their conditions progress too far. Current solutions are either too complex, expensive or only suitable within a professional health care setting. This leaves many people uninformed about their own health and what actions they should take.

We want to improve access by providing personalised health insights, so that people are equipped to make earlier decisions about their health. We’re interested in visualising complex science to communicate early health changes easily to drive a more preventative self-care approach.

What we are looking for:
We’re seeking consumer-friendly, evidence-based tools that turn health data into clear, reliable insights plus simple next steps for self-care.

Solutions must focus on:
• Pain Relief
• Oral Health
• Respiratory Health
• Vitamins, Minerals and Supplements
• Digestive Health or
• Therapeutic Skin Health
Find out more at haleon.com/our-brands.

Solutions must be:
• Scientifically validated
• Prescription-free
• Low cost
• Accessible at home/retail
• Provide fast results
• No more invasive than a finger-prick blood sample
Solutions shouldn't require high-cost hardware or clinical supervision.

Health with Humanity: Actionable insights for preventative care

The context:
People often struggle to understand what’s happening in their bodies until their conditions progress too far. Current solutions are either too complex, expensive or only suitable within a professional health care setting. This leaves many people uninformed about their own health and what actions they should take.

We want to improve access by providing personalised health insights, so that people are equipped to make earlier decisions about their health. We’re interested in visualising complex science to communicate early health changes easily to drive a more preventative self-care approach.

What we are looking for:
We’re seeking consumer-friendly, evidence-based tools that turn health data into clear, reliable insights plus simple next steps for self-care.

Solutions must focus on:
• Pain Relief
• Oral Health
• Respiratory Health
• Vitamins, Minerals and Supplements
• Digestive Health or
• Therapeutic Skin Health
Find out more at haleon.com/our-brands.

Solutions must be:
• Scientifically validated
• Prescription-free
• Low cost
• Accessible at home/retail
• Provide fast results
• No more invasive than a finger-prick blood sample
Solutions shouldn't require high-cost hardware or clinical supervision.

Selection Criteria
Aligns with Haleon’s brands

Supports one of Haleon's therapeutic areas within the categories listed above

Differentiation

A clear value proposition or IP that offers a competitive advantage

Consumer-operable

Easily operable by the average consumer at home or in retail settings

Scientific Rigor

Supported by credible research, validation studies or clinical/real-world data/consumer research

Scalability

Ready for or have a clear path for scaling across multiple markets

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

47 Days 05 Hours

left to apply

left to apply

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