AfricaTech Award
AfricaTech Award
AfricaTech Award
AfricaTech Award
Shape the Future of African Innovation
Shape the Future of African Innovation
Shape the Future of African Innovation
Shape the Future of African Innovation
The Award

For four years, the AfricaTech Award has recognized and supported African startups striving to transform the business landscape across the continent. 

This year, we are inviting African startups from all industries to participate in the award. 

Apply now and join us for the 10th edition of VivaTech, taking place from 17–20 June 2026 in Paris.

Compressed image
Compressed image
Compressed image
Compressed image
Compressed image
Compressed image
Compressed image
Compressed image
Our Objective

Our objective is to showcase the abundance of talent and innovators in Africa, while creating new opportunities for emerging startups across the continent. 

The six finalists will be invited to pitch at VivaTech 2026 in June. 

The winner will be announced alongside the other award recipients during the VivaTech Global Awards Ceremony, gaining significant visibility and a prominent spotlight throughout the event. 

Don’t miss this opportunity!  

Our objective is to showcase the abundance of talent and innovators in Africa, while creating new opportunities for emerging startups across the continent. 

The six finalists will be invited to pitch at VivaTech 2026 in June. 

The winner will be announced alongside the other award recipients during the VivaTech Global Awards Ceremony, gaining significant visibility and a prominent spotlight throughout the event. 

Don’t miss this opportunity!  

Our objective is to showcase the abundance of talent and innovators in Africa, while creating new opportunities for emerging startups across the continent. 

The six finalists will be invited to pitch at VivaTech 2026 in June. 

The winner will be announced alongside the other award recipients during the VivaTech Global Awards Ceremony, gaining significant visibility and a prominent spotlight throughout the event. 

Don’t miss this opportunity!  

Our objective is to showcase the abundance of talent and innovators in Africa, while creating new opportunities for emerging startups across the continent. 

The six finalists will be invited to pitch at VivaTech 2026 in June. 

The winner will be announced alongside the other award recipients during the VivaTech Global Awards Ceremony, gaining significant visibility and a prominent spotlight throughout the event. 

Don’t miss this opportunity!  

Eligibility Criteria
  • Headquartered in Africa: The startup must have its main office located in Africa. 

  • Operating in Africa: The startup must offer a solution or product that addresses the African market. 

  • Funding: The startup must have raised more than USD 150K. 

Compressed image
Compressed image
Compressed image
Compressed image
Selection Criteria
Innovation

Relevance and innovation level of the tech solution compared to existing alternatives (size, problem solved, technology used, protection of the innovation, etc.) 

Impact

Innovative product/solution addressing an important global challenge with a high social, economic, environmental, or gender impact. 

Scalability

Market sizing and scalability potential of the startup, track record of scaling (target addressable market, geographic ambition on the continent, clients targeted, etc.)

Team Profile

Quality and size of the team (expertise, entrepreneurship background, academic background, number of employees, etc.) 

Business Model

Demonstrated ability to monetize the business model and achieve sustainable operations, supported by clear traction and proven product-market fit (startup maturity, commercial traction, number of clients, annual global revenue growth, etc.). 

Rewards
Timeline

05 Days 08 Hours

05 Days 08 Hours

left to apply

left to apply

Knowledge Partner

2025 Winner
Salma Tammam

Founder and CEO of Reme-D

Reme-D is an Egyptian healthtech startup developing affordable, rapid diagnostic kits tailored for underserved communities in the Middle East and Africa. Reme-D’s innovations leverage biotechnology and nanotechnology to bridge diagnostic gaps in resource-limited settings.

Compressed image
Compressed image
Compressed image
Compressed image
2025 E-commerce & FinTech Category Winner
David Adeleke

Co-Founder, Zeeh Africa

"Since winning, our company experienced over 15× growth, driven largely by partnerships and visibility gained through VivaTech, and we were able to successfully close multi-million-dollar funding rounds with significantly stronger momentum. The award played a clear catalytic role in that journey."

2025 Category Winners
Compressed image
Compressed image

Jon Kornik

Co-Founder & CEO, Plentify

GreenTech Category

Compressed image
Compressed image

David Adeleke

Co-Founder, Zeeh Africa

E-commerce & FinTech Category

Compressed image
Compressed image

Salma Tammam

Founder and CEO, Reme-D

HealthTech Category

FAQ

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