JCDecaux
JCDecaux
Empower your brand by giving it a voice in the real world
Empower your brand by giving it a voice in the real world
Why this Challenge?

Make your startup famous- win a free out-of-home advertising campaign & free tickets to the global renowned VivaTech event.

JCDecaux operates in 80+ countries, focused exclusively on out-of-home advertising. Our entrepreneurial spirit is driven by one purpose: making cities, airports, transport systems and shopping centres ever more attractive while meeting major challenges for the 21st century: urbanisation, digital , the climate transition.

We launched the Nurture programme in 2016 to help startups build fame and accelerate growth through the power of OOH and Digital OOH advertising.

Our Startup Challenge
Win a out-of-home campaign for an overall value of 130k€

Each winner will enjoy a powerful out-of-home advertising campaign in Austria, France, the Netherlands or the UK.

Through our Nurture program, we support innovative, fast-growing brands that have a clear product–market fit, a distinctive positioning and early traction (clients, community or revenue), and are ready to scale their visibility.

We’re looking for ambitious startups that use innovation to improve everyday life, elevate customer experience or drive positive transitions, and we give them a powerful voice through OOH media.

How to apply: simply share your company’s mission and explain in a few words why an OOH campaign would help take your business to the next level.

Win a out-of-home campaign for an overall value of 130k€

Each winner will enjoy a powerful out-of-home advertising campaign in Austria, France, the Netherlands or the UK.

Through our Nurture program, we support innovative, fast-growing brands that have a clear product–market fit, a distinctive positioning and early traction (clients, community or revenue), and are ready to scale their visibility.

We’re looking for ambitious startups that use innovation to improve everyday life, elevate customer experience or drive positive transitions, and we give them a powerful voice through OOH media.

How to apply: simply share your company’s mission and explain in a few words why an OOH campaign would help take your business to the next level.

Win a out-of-home campaign for an overall value of 130k€

Each winner will enjoy a powerful out-of-home advertising campaign in Austria, France, the Netherlands or the UK.

Through our Nurture program, we support innovative, fast-growing brands that have a clear product–market fit, a distinctive positioning and early traction (clients, community or revenue), and are ready to scale their visibility.

We’re looking for ambitious startups that use innovation to improve everyday life, elevate customer experience or drive positive transitions, and we give them a powerful voice through OOH media.

How to apply: simply share your company’s mission and explain in a few words why an OOH campaign would help take your business to the next level.

Selection Criteria
Development stage

Growth acceleration phase from Seed to series B

Startup Age

Around 5 years old

No media agency

You must not have worked with JCDecaux in the past or currently. And must not already have a media agency

Geography

Your startup should be registered in the country where it has its headquarters

Brandings and comms strategy

Your communication and branding must be defined

Branding

Ability of your branding and creative universe to work well in outdoor advertising

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

58 Days 08 Hours

left to apply

left to apply

About JCDecaux Nurture Program

The Nurture program has supported more than 400 start-ups (in various sectors such as fintech or mass consumption) through campaigns aimed at strengthening their physical presence on the market in 13 countries.

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