Nigeria now Airtel Africa’s second-largest market by revenue per subscriber
Nigeria is now Airtel Africa’s second-biggest market by revenue earned from each subscriber, as higher telecom tariffs boosted earnings in the company’s largest African market. Airtel Africa, which operates in 14 countries, grew its average revenue per user (ARPU) in Nigeria by 41.18% for the financial year ended March 2026, according to the company’s financial results released on Friday. ARPU measures how much telecom operators earn per subscriber and is a key indicator of whether revenue is sufficient to cover operating costs and fund network investments. /* Base Desktop Styles / .tc-widget-container { max-width: 650px; margin: 24px auto; font-family: 'Open Sans', Arial, sans-serif; background: #FFFFFF; border: 1px solid #E3E8EF; border-radius: 8px; padding: 24px; box-shadow: 0 2px 8px rgba(0,0,0,0.05); box-sizing: border-box; } .tc-header-title { font-weight: 700; font-size: 1.5rem; color: #151515; margin: 0 0 8px 0; line-height: 1.25; } .tc-bar-header { display: flex; justify-content: space-between; align-items: flex-end; font-size: 0.875rem; font-weight: 600; color: #151515; margin-bottom: 8px; } .tc-bar-stats { display: flex; align-items: center; gap: 12px; } / Mobile Adaptability / @media (max-width: 480px) { .tc-widget-container { padding: 16px; } .tc-header-title { font-size: 1.25rem; } .tc-bar-header { flex-direction: column; align-items: flex-start; gap: 6px; } .tc-bar-stats { width: 100%; justify-content: space-between; } } Money The ARPU Gap: Value vs. Velocity Francophone Africa still extracts the most revenue per user, but Nigeria’s recent 50% tariff hike has triggered explosive year-over-year growth. Source: Airtel Africa plc FY’26 Financial Results. Bar length represents actual Average Revenue Per User (ARPU). Badges represent YoY growth. (function() { const arpuData = { max: 4.0, // Set slightly higher than Francophone's 3.4 for visual breathing room prefix: '$', suffix: '', regions: [ { name: 'Francophone Africa', value: 3.4, growth: '+6.25%' }, { name: 'Nigeria', value: 2.4, growth: '+41.18%' }, { name: 'East Africa', value: 2.2, growth: '+4.76%' } ] }; function renderArpuChart() { const container = document.getElementById('tc-arpu-container'); if (!container) return; // Safety check container.innerHTML = ''; arpuData.regions.forEach(region => { const percentage = (region.value / arpuData.max) * 100; const displayValue = arpuData.prefix + region.value.toFixed(1) + arpuData.suffix; // Highlight Nigeria's exceptional growth rate and bar const isNigeria = region.name === 'Nigeria'; const growthColor = isNigeria ? '#20C997' : '#4A5568'; const growthBg = isNigeria ? '#E6FFFA' : '#F6F6F6'; const barColor = isNigeria ? '#EA2D2E' : '#24292F'; const barHtml = ${region.name} ${displayValue} ${region.growth} YoY; container.innerHTML += barHtml; }); // Trigger animation shortly after render setTimeout(() => { const bars = container.querySelectorAll('div[data-width]'); bars.forEach(bar => { bar.style.width = bar.getAttribute('data-width'); }); }, 100); } // Execute immediately renderArpuChart(); })(); The rise in revenue earned from each subscriber marks a reversal for Airtel Africa in Nigeria, where years of naira depreciation weakened dollar revenues despite subscriber growth. As the currency fell from ₦471/$ in June 2023 to over ₦1,300/$, telecom operators struggled to fund network expansion and infrastructure upgrades. But the 50% tariff increase approved in 2025 has lifted earnings, restored profitability, and given operators room to increase investment in their networks again. MTN Nigeria’s ARPU rose 65.89% in 2025 to $3.60, reflecting a broader industry trend with stronger earnings per subscriber. Airtel Nigeria increased capital expenditure by 48.21% in the year ended March 2026. Revenue rose 52.92% to $1.59 billion, while operating profit climbed 78.62%. The company’s Nigerian subscriber base stood at 58.3 million. / Base Desktop Styles / .tc-widget-container { max-width: 650px; margin: 24px auto; font-family: 'Open Sans', Arial, sans-serif; background: #FFFFFF; border: 1px solid #E3E8EF; border-radius: 8px; padding: 24px; box-shadow: 0 2px 8px rgba(0,0,0,0.05); box-sizing: border-box; overflow: hidden; } .tc-header-title { font-weight: 700; font-size: 1.5rem; color: #151515; margin: 0 0 8px 0; line-height: 1.25; } .tc-region-header { font-size: 1rem; font-weight: 700; color: #151515; margin-bottom: 8px; } .tc-legend { display: flex; gap: 16px; margin-bottom: 24px; font-size: 0.875rem; font-weight: 600; color: #4A5568; flex-wrap: wrap; } .tc-legend-item { display: flex; align-items: center; gap: 6px; } .tc-legend-box { width: 12px; height: 12px; border-radius: 2px; } / Layout for the bars / .tc-bar-row { display: flex; align-items: center; width: 100%; margin-bottom: 8px; gap: 12px; / Fixed gap between bar and text / } .tc-bar-track-wrapper { flex-grow: 1; / Bar takes up remaining space dynamically / background: #F6F6F6; border-radius: 4px; overflow: hidden; } .tc-bar-value { white-space: nowrap; / Prevents number from breaking on small screens / text-align: right; min-width: 55px; } / Mobile Adaptability / @media (max-width: 480px) { .tc-widget-container { padding: 16px; } .tc-header-title { font-size: 1.25rem; } .tc-bar-row { gap: 8px; } } Money & Power The Revenue Engine: Mobile Services East Africa remains the financial heavyweight in mobile services, but Nigeria’s massive revenue leap is rapidly changing the balance of power. FY 2025 FY 2026 Source: Airtel Africa plc FY’26 Financial Results. Values represent mobile services reported currency revenue in billions of US Dollars. (function() { const revenueData = { max: 2.5, // Slightly higher than East Africa's 2.19B to give visual breathing room prefix: '$', suffix: 'B', regions: [ { name: 'East Africa', val2025: 1.84, val2026: 2.19 }, { name: 'Francophone Africa', val2025: 1.30, val2026: 1.55 }, { name: 'Nigeria', val2025: 1.05, val2026: 1.59 } ] }; function renderRevenueYoyChart() { const container = document.getElementById('tc-revenue-yoy-container'); if (!container) return; container.innerHTML = ''; revenueData.regions.forEach(region => { const pct2025 = (region.val2025 / revenueData.max) * 100; const pct2026 = (region.val2026 / revenueData.max) * 100; const display2025 = revenueData.prefix + region.val2025.toFixed(2) + revenueData.suffix; const display2026 = revenueData.prefix + region.val2026.toFixed(2) + revenueData.suffix; const regionHtml = ${region.name} ${display2025} ${display2026}; container.innerHTML += regionHtml; }); // Trigger animation shortly after render setTimeout(() => { const bars = container.querySelectorAll('div[data-width]'); bars.forEach(bar => { bar.style.width = bar.getAttribute('data-width'); }); }, 150); } // Execute immediately renderRevenueYoyChart(); })(); Data revenue continued to drive growth, accounting for 51.31% of total revenue in Nigeria. Airtel’s mobile money business in Nigeria, however, remains significantly smaller than its operations in other regions. Nigeria had 2.7 million mobile money users, compared to 40.9 million in East Africa and 10.5 million in Francophone Africa. Nigeria contributed less than 1% of the $1.36 billion generated by Airtel Africa’s mobile money business in the financial year ended March 2026. / Base Desktop Styles / .tc-widget-container { max-width: 650px; margin: 24px auto; font-family: 'Open Sans', Arial, sans-serif; background: #FFFFFF; border: 1px solid #E3E8EF; border-radius: 8px; padding: 24px; box-shadow: 0 2px 8px rgba(0,0,0,0.05); box-sizing: border-box; overflow: hidden; } .tc-header-title { font-weight: 700; font-size: 1.5rem; color: #151515; margin: 0 0 8px 0; line-height: 1.25; } .tc-region-header { font-size: 1rem; font-weight: 700; color: #151515; margin-bottom: 8px; } / Tab Buttons / .tc-mm-tabs { display: flex; gap: 8px; margin-bottom: 24px; } .tc-mm-btn { background: #F6F6F6; color: #EA2D2E; border: none; padding: 8px 16px; border-radius: 4px; font-weight: 600; font-size: 0.875rem; cursor: pointer; transition: background 0.2s, color 0.2s; } .tc-mm-btn.active { background: #EA2D2E; color: #FFFFFF; } / Layout for the bars / .tc-bar-row { display: flex; align-items: center; width: 100%; margin-bottom: 20px; gap: 12px; } .tc-bar-track-wrapper { flex-grow: 1; / Bar stretches to fill available space / background: #F6F6F6; border-radius: 4px; overflow: hidden; height: 32px; } .tc-bar-value { white-space: nowrap; / Prevents text breaking on small screens / text-align: right; min-width: 70px; font-size: 1.125rem; font-weight: 700; color: #151515; } / Mobile Adaptability / @media (max-width: 480px) { .tc-widget-container { padding: 16px; } .tc-header-title { font-size: 1.25rem; } / Snap buttons to a 50/50 grid for easy tapping */ .tc-mm-tabs { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; } .tc-mm-btn { width: 100%; text-align: center; padding: 10px 8px; } .tc-bar-row { gap: 8px; margin-bottom: 16px; } .tc-bar-value { font-size: 1rem; min-width: 60px; } } Money The Mobile Money Void: Nigeria’s Missing Millions While Nigeria dominates telecom earnings, it remains a fraction of the mobile money empire built by Airtel in East and Francophone Africa. Total Revenue Active Users Source: Airtel Africa plc FY’26 Financial Results[cite: 360, 371, 373, 375]. Values represent reported currency revenue and active mobile money customer base. (function() { const mmData = { revenue: { max: 1100, // Scaled slightly above East Africa's 1009 prefix: '$', suffix: 'm', regions: [ { name: 'East Africa', value: 1009 }, { name: 'Francophone Africa', value: 337 }, { name: 'Nigeria', value: 9 } ] }, users: { max: 45, // Scaled slightly above East Africa's 40.9 prefix: '', suffix: 'm', regions: [ { name: 'East Africa', value: 40.9 }, { name: 'Francophone Africa', value: 10.5 }, { name: 'Nigeria', value: 2.7 } ] } }; // Expose function globally so inline onclick can access it window.updateMobileMoneyChart = function(metric, btnElement) { // Update button states const containerElem = document.getElementById('tc-mobile-money-visualizer'); containerElem.querySelectorAll('.tc-mm-btn').forEach(btn => { btn.classList.remove('active'); }); btnElement.classList.add('active'); // Render bars const container = document.getElementById('tc-mobile-money-container'); if (!container) return; container.innerHTML = ''; const currentData = mmData[metric]; currentData.regions.forEach(region => { const percentage = (region.value / currentData.max) * 100; // Format value let formattedValue = region.value % 1 !== 0 ? region.value.toFixed(1) : region.value.toLocaleString(); const displayValue = currentData.prefix + formattedValue + currentData.suffix; const regionHtml = ${region.name} ${displayValue}; container.innerHTML += regionHtml; }); // Trigger animation setTimeout(() => { const bars = container.querySelectorAll('div[data-width]'); bars.forEach(bar => { bar.style.width = bar.getAttribute('data-width'); }); }, 50); }; // Initialize chart with 'revenue' data const defaultBtn = document.querySelector('.tc-mm-btn.active'); if (defaultBtn) { window.updateMobileMoneyChart('revenue', defaultBtn); } })(); The company is betting on customer incentives, physical agent distribution, and fixed savings interest rates of 15% to expand its mobile money operations in Nigeria. Overall, Airtel Africa’s subscriber base grew to 183.5 million, while revenue increased 29.47% to $6.42 billion. Profit after tax surged 147.87% during the period. “We achieved a strong 24.0% growth in constant currency revenues in FY’26, with reported currency revenues increasing by 29.5% to $6,415m, reflecting attractive industry fundamentals and focused operational execution, further supported by tariff adjustments in Nigeria and macroeconomic tailwinds,” the company said in its results.