ADVERTISEMENT

Car sharing marketplace to enter PH

Published Oct 19, 2021 05:37 pm

Zoomcar, the largest car sharing marketplace covering emerging markets, announced they will soon be launching their operations in Philippines.

Zoomcar, which dominates the self-drive car rental market in India, has expanded to Southeast Asia and appointed Gene Angelo Ferrer as their country head in Philippines to help scale their business.

Gene Angelo Ferrer, Zoomcar PH country head

In a statement, Greg Moran, CEO & Co-Founder of Zoomcar said that Zoomcar has always been focused on personal mobility. ”This is the perfect time for us to expand internationally. Against the backdrop of Covid there are a lot of inherent tailwinds, which is really helping us capture more of the consumer mindset and gain market share. People want to get out and travel and they want to be social again,” said Moran.

He also said that the appointment of Ferrer as leader for Zoom car’s operations in Philippines as a big boost to their local presence. Prior to joining Zoomcar, Ferrer has led Dostavista’s, a Russian-based crowdsourced delivery platform, entry into the Philippines in 2018. Locally known as MrSpeedy / Borzo Delivery, Ferrer grew the company exponentially with record setting year on year growth rates both on daily revenue and total deliveries per day.

Ferrer also comes with over a decade’s experience and his expertise in start-up management will prove vital in establishing Zoomcar as the first-to-market car-sharing platform in the Philippines.

Commenting on Zoomcar’s international expansion, Moran said that the Philippines has low levels of vehicle ownership but the large and upwardly mobile populations made it a perfect opportunity for them to leverage.

“We are thrilled to welcome Gene as our new country head in Philippines and look forward to benefiting from his experience of scaling up aggressively and building synergistic partnerships contributing to our growth. Philippines will be a benchmark for us to expand into other countries in Southeast Asia,” he said.

For his part, Ferrer noted that in recent years, the Philippines has been economically classified as an emerging market - fondly referred to as Asia’s Rising Tiger. “Zoomcar entering the Philippines market is yet another step forward to advance another local industry to become world-class. Excitement is an understatement to describe how I feel about joining Zoomcar at this important stage of its growth,” he said.

He was looking forward to see how Zoomcar can uplift the Filipino people through our proposition of establishing a secondary income stream without sacrificing their existing day jobs.

“We take the first step to making Zoomcar Philippines the Filipino mobility app of choice,” said Ferrer.

Launched as India’s first personal mobility platform in 2013, Zoomcar today is the market leader in the car sharing ecosystem with over 7,000 cars on its platform with a presence across 5 countries.

Zoomcar allows users to rent cars by the hour, day, week, or month. Headquartered in Bangalore, Zoomcar employs over 300 people and operates in 50+ cities across India.

In 2020, Zoomcar launched Zoomcar Mobility Services, the Company’s enterprise SaaS basedmobility solutions offering covering white-labelled subscription services and IoT based driver behavior monitoring solutions. Zoomcar is the largest car sharing marketplace covering emerging markets


ADVERTISEMENT
.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ articles_filter_1561_widget.title }}

.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ articles_filter_1562_widget.title }}

.most-popular .layout-ratio{ padding-bottom: 79.13%; } @media (min-width: 768px) and (max-width: 1024px) { .widget-title { font-size: 15px !important; } }

{{ articles_filter_1563_widget.title }}

{{ articles_filter_1564_widget.title }}

.mb-article-details { position: relative; } .mb-article-details .article-body-preview, .mb-article-details .article-body-summary{ font-size: 17px; line-height: 30px; font-family: "Libre Caslon Text", serif; color: #000; } .mb-article-details .article-body-preview iframe , .mb-article-details .article-body-summary iframe{ width: 100%; margin: auto; } .read-more-background { background: linear-gradient(180deg, color(display-p3 1.000 1.000 1.000 / 0) 13.75%, color(display-p3 1.000 1.000 1.000 / 0.8) 30.79%, color(display-p3 1.000 1.000 1.000) 72.5%); position: absolute; height: 200px; width: 100%; bottom: 0; display: flex; justify-content: center; align-items: center; padding: 0; } .read-more-background a{ color: #000; } .read-more-btn { padding: 17px 45px; font-family: Inter; font-weight: 700; font-size: 18px; line-height: 16px; text-align: center; vertical-align: middle; border: 1px solid black; background-color: white; } .hidden { display: none; }
function initializeAllSwipers() { // Get all hidden inputs with cms_article_id document.querySelectorAll('[id^="cms_article_id_"]').forEach(function (input) { const cmsArticleId = input.value; const articleSelector = '#article-' + cmsArticleId + ' .body_images'; const swiperElement = document.querySelector(articleSelector); if (swiperElement && !swiperElement.classList.contains('swiper-initialized')) { new Swiper(articleSelector, { loop: true, pagination: false, navigation: { nextEl: '#article-' + cmsArticleId + ' .swiper-button-next', prevEl: '#article-' + cmsArticleId + ' .swiper-button-prev', }, }); } }); } setTimeout(initializeAllSwipers, 3000); const intersectionObserver = new IntersectionObserver( (entries) => { entries.forEach((entry) => { if (entry.isIntersecting) { const newUrl = entry.target.getAttribute("data-url"); if (newUrl) { history.pushState(null, null, newUrl); let article = entry.target; // Extract metadata const author = article.querySelector('.author-section').textContent.replace('By', '').trim(); const section = article.querySelector('.section-info ').textContent.replace(' ', ' '); const title = article.querySelector('.article-title h1').textContent; // Parse URL for Chartbeat path format const parsedUrl = new URL(newUrl, window.location.origin); const cleanUrl = parsedUrl.host + parsedUrl.pathname; // Update Chartbeat configuration if (typeof window._sf_async_config !== 'undefined') { window._sf_async_config.path = cleanUrl; window._sf_async_config.sections = section; window._sf_async_config.authors = author; } // Track virtual page view with Chartbeat if (typeof pSUPERFLY !== 'undefined' && typeof pSUPERFLY.virtualPage === 'function') { try { pSUPERFLY.virtualPage({ path: cleanUrl, title: title, sections: section, authors: author }); } catch (error) { console.error('ping error', error); } } // Optional: Update document title if (title && title !== document.title) { document.title = title; } } } }); }, { threshold: 0.1 } ); function showArticleBody(button) { const article = button.closest("article"); const summary = article.querySelector(".article-body-summary"); const body = article.querySelector(".article-body-preview"); const readMoreSection = article.querySelector(".read-more-background"); // Hide summary and read-more section summary.style.display = "none"; readMoreSection.style.display = "none"; // Show the full article body body.classList.remove("hidden"); } document.addEventListener("DOMContentLoaded", () => { let loadCount = 0; // Track how many times articles are loaded const offset = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]; // Offset values const currentUrl = window.location.pathname.substring(1); let isLoading = false; // Prevent multiple calls if (!currentUrl) { console.log("Current URL is invalid."); return; } const sentinel = document.getElementById("load-more-sentinel"); if (!sentinel) { console.log("Sentinel element not found."); return; } function isSentinelVisible() { const rect = sentinel.getBoundingClientRect(); return ( rect.top < window.innerHeight && rect.bottom >= 0 ); } function onScroll() { if (isLoading) return; if (isSentinelVisible()) { if (loadCount >= offset.length) { console.log("Maximum load attempts reached."); window.removeEventListener("scroll", onScroll); return; } isLoading = true; const currentOffset = offset[loadCount]; window.loadMoreItems().then(() => { let article = document.querySelector('#widget_1690 > div:nth-last-of-type(2) article'); intersectionObserver.observe(article) loadCount++; }).catch(error => { console.error("Error loading more items:", error); }).finally(() => { isLoading = false; }); } } window.addEventListener("scroll", onScroll); });

Sign up by email to receive news.