Technology

TikTok 2026: 1.9B MAU, $23B Revenue, 90 Minutes Daily, and Why Python Powers the Charts

Sarah Chen

Sarah Chen

24 min read

TikTok reached 1.9 billion monthly active users and $23 billion in revenue in 2024—the world's fifth-largest social platform and the short-form video leader. According to Business of Apps' TikTok statistics 2026, DemandSage's TikTok user statistics, and BizReport's TikTok statistics 2025, MAU grew from 1.59 billion in Q1 2025 to 1.9 billion in Q4 2025; revenue hit $23 billion in 2024 (42.86% year-over-year) and is on track for $28.4 billion in 2025. Affinco's TikTok statistics 2026 and Business of Apps' TikTok app report report 90–95 minutes spent on TikTok per user per day—the highest engagement among major social networks—and 17.6% growth rate, outpacing Facebook (5.7%) and YouTube (2.1%). Socialinsider's TikTok vs Reels vs Shorts and Statista's short-video platform data place TikTok #1 by average video views; AdWeek and WARC note $34.8 billion in global ad revenue forecast for 2026. Python is the tool many teams use to visualize social and short-form video data for reports like this one. This article examines why TikTok crossed 1.9B MAU, how engagement and ads drive growth, and how Python powers the charts that tell the story.

1.9B MAU, 90–95 Minutes Daily: TikTok at Scale

TikTok's user and engagement growth did not happen overnight. DemandSage and BizReport report 1.9 billion MAU globally as of Q4 2025 (up from 1.59 billion in Q1 2025); daily active users are estimated at 875–954 million. Business of Apps and Affinco report 90–95 minutes per user per day—the highest among social platforms—and 17.6% growth rate. The following chart, generated with Python and matplotlib using industry-style data, illustrates TikTok MAU (billions) from 2020 to 2026.

TikTok MAU 2020–2026 (Billions)

The chart above shows 1.9B MAU in 2025—reflecting TikTok as the default for short-form video and creator content. Python is the natural choice for building such visualizations: media and product teams routinely use Python scripts to load usage or engagement data and produce publication-ready charts for reports and articles like this one.

#1 Short-Form Video, Ahead of Reels and Shorts: Market Leadership

The scale of TikTok's lead in short-form video is striking. Socialinsider and Statista report TikTok #1 by average video views, with 55% of U.S. TikTok users' time spent on short-form content vs 37% for Instagram Reels and 26% for YouTube Shorts; AdWeek and Business Insider note 29% of U.S. consumers' social time on TikTok in Q4 2024 (Reels and Shorts gaining share). When teams need to visualize time share or competitor positioning, they often use Python and matplotlib or seaborn. The following chart, produced with Python, summarizes short-form video time share (TikTok vs Instagram Reels vs YouTube Shorts vs others) in a style consistent with industry reports.

Short-Form Video Time Share 2026 (U.S.)

The chart illustrates TikTok leading Reels and Shorts in time spent—context that explains why creators and advertisers choose TikTok for reach and engagement. Python is again the tool of choice for generating such charts from survey or telemetry data, keeping analytics consistent with the rest of the data stack.

$23B Revenue, 43% YoY, $34.8B Ad Forecast 2026: Why TikTok Wins

Revenue and ad growth are central to TikTok's 2026 story. DemandSage and BizReport report $23 billion in revenue in 2024 (42.86% year-over-year) and $28.4 billion expected in 2025; WARC forecasts $34.8 billion in global ad revenue for 2026 (21.8% year-on-year). Bloomberg notes ByteDance (TikTok's parent) on track for ~$50 billion profit in 2025. For teams that track MAU or revenue over time, Python is often used to load financial or telemetry data and plot trends. A minimal example might look like the following: load a CSV of TikTok MAU by year, and save a chart for internal or public reporting.

import pandas as pd
import matplotlib.pyplot as plt

df = pd.read_csv("tiktok_mau_by_year.csv")
fig, ax = plt.subplots(figsize=(10, 5))
ax.plot(df["year"], df["mau_billions"], marker="o", linewidth=2, color="#000000")
ax.set_ylabel("MAU (billions)")
ax.set_title("TikTok monthly active users (industry style)")
fig.savefig("public/images/blog/tiktok-mau-trend.png", dpi=150, bbox_inches="tight")
plt.close()

That kind of Python script is typical for media and growth teams: same language used for pipelines and dashboards, and direct control over chart layout and messaging.

ByteDance, 25–34 Demo, and the Road Ahead

Ownership and demographics shape TikTok's 2026 story. ByteDance owns TikTok; BizReport and Affinco note the 25–34 age group is now the largest (36.1%), overtaking 18–24, and 54.5% of users are male globally. Billboard and Business Insider document Reels and Shorts gaining in some markets. Python is the language many use to analyze social and short-form video data and visualize MAU, revenue, and time share for reports like this one.

Conclusion: TikTok as the Short-Form Video Default in 2026

In 2026, TikTok is the default for short-form video: 1.9 billion MAU, $23 billion revenue in 2024, 90–95 minutes daily per user, #1 by video views, and $34.8 billion ad revenue forecast for 2026. Instagram Reels and YouTube Shorts are gaining in time share; ByteDance is on track for ~$50B profit in 2025. Python remains the language that powers the analytics—MAU, revenue, time share, and the visualizations that explain the story—so that for Google News and Google Discover, the story in 2026 is clear: TikTok is where short-form lives, and Python is how many of us chart it.

Tags:#TikTok#Short-Form Video#Python#Social Media#ByteDance#Instagram Reels#YouTube Shorts#MAU#Engagement#Advertising
Sarah Chen

About Sarah Chen

Sarah Chen is a technology writer and AI expert with over a decade of experience covering emerging technologies, artificial intelligence, and software development.

View all articles by Sarah Chen

Related Articles

DeepSeek and the Open Source AI Revolution: How Open Weights Models Are Reshaping Enterprise AI in 2026

DeepSeek's emergence has fundamentally altered the AI landscape in 2026, with open weights models challenging proprietary dominance and democratizing access to frontier AI capabilities. The company's V3 model trained for just $6 million—compared to $100 million for GPT-4—while achieving performance comparable to leading models. This analysis explores how open source AI models are transforming enterprise adoption, the technical innovations behind DeepSeek's efficiency, and how Python serves as the critical infrastructure for fine-tuning, deployment, and visualization of open weights models.

AI Safety 2026: The Race to Align Advanced AI Systems

As artificial intelligence systems approach and in some cases surpass human-level capabilities across multiple domains, the challenge of ensuring these systems remain aligned with human values and intentions has never been more critical. In 2026, major AI laboratories, governments, and researchers are racing to develop robust alignment techniques, establish safety standards, and create governance frameworks before advanced AI systems become ubiquitous. This comprehensive analysis examines the latest developments in AI safety research, the technical approaches being pursued, the regulatory landscape emerging globally, and why Python has become the essential tool for building safe AI systems.

Quantum Computing Breakthrough 2026: IBM's 433-Qubit Condor, Google's 1000-Qubit Willow, and the $17.3B Race to Quantum Supremacy

Quantum Computing Breakthrough 2026: IBM's 433-Qubit Condor, Google's 1000-Qubit Willow, and the $17.3B Race to Quantum Supremacy

Quantum computing has reached a critical inflection point in 2026, with IBM deploying 433-qubit Condor processors, Google achieving 1000-qubit Willow systems, and Atom Computing launching 1225-qubit neutral-atom machines. Global investment has surged to $17.3 billion, up from $2.1 billion in 2022, as enterprises race to harness quantum advantage for drug discovery, cryptography, and optimization. This comprehensive analysis explores the latest breakthroughs, qubit scaling wars, real-world applications, and why Python remains the bridge between classical and quantum computing.

Edge AI Revolution 2026: $61.8B Market Explosion as Smart Manufacturing, Autonomous Vehicles, and Healthcare Devices Go Local

Edge AI Revolution 2026: $61.8B Market Explosion as Smart Manufacturing, Autonomous Vehicles, and Healthcare Devices Go Local

Edge AI has transformed from niche technology to mainstream infrastructure in 2026, with the market reaching $61.8 billion as enterprises deploy AI processing directly on devices rather than in the cloud. Smart manufacturing leads adoption at 68%, followed by security systems at 73% and retail analytics at 62%. This comprehensive analysis explores why edge AI is displacing cloud AI for latency-sensitive applications, how Python powers edge AI development, and which industries are seeing the biggest ROI from local AI processing.

Developer Salaries 2026: Which Programming Languages Pay the Most? (Data Revealed)

Developer Salaries 2026: Which Programming Languages Pay the Most? (Data Revealed)

Rust, Go, and Python top the salary charts in 2026. We break down median pay by language with survey data and growth trends—so you know where to invest your skills next.

Cybersecurity Mesh Architecture 2026: How 31% Enterprise Adoption is Replacing Traditional Perimeter Security

Cybersecurity Mesh Architecture 2026: How 31% Enterprise Adoption is Replacing Traditional Perimeter Security

Cybersecurity mesh architecture has surged to 31% enterprise adoption in 2026, up from just 8% in 2024, as organizations abandon traditional perimeter-based security for distributed, identity-centric protection. This shift is driven by remote work, cloud migration, and zero-trust requirements, with 73% of adopters reporting reduced attack surface and 79% seeing improved visibility. This comprehensive analysis explores how security mesh works, why Python is central to mesh implementation, and which enterprises are leading the transition from castle-and-moat to adaptive security.

AI Inference Optimization 2026: How Quantization, Distillation, and Caching Are Reducing LLM Costs by 10x

AI inference costs have become the dominant factor in LLM deployment economics as model usage scales to billions of requests. In 2026, a new generation of optimization techniques—quantization, knowledge distillation, prefix caching, and speculative decoding—are delivering 10x cost reductions while maintaining model quality. This comprehensive analysis examines how these techniques work, the economic impact they create, and why Python has become the default language for building inference optimization pipelines. From INT8 and INT4 quantization to novel streaming architectures, we explore the technical innovations that are making AI economically viable at scale.

Zoom 2026: 300M DAU, 56% Market Share, $1.2B+ Quarterly Revenue, and Why Python Powers the Charts

Zoom 2026: 300M DAU, 56% Market Share, $1.2B+ Quarterly Revenue, and Why Python Powers the Charts

Zoom reached 300 million daily active users and over 500 million total users in 2026—holding 55.91% of the global video conferencing market. Quarterly revenue topped $1.2 billion in fiscal 2026; users spend 3.3 trillion minutes in Zoom meetings annually and over 504,000 businesses use the platform. This in-depth analysis explores why Zoom leads video conferencing, how hybrid work and AI drive adoption, and how Python powers the visualizations that tell the story.

WebAssembly 2026: 31% Use It, 70% Call It Disruptive, and Why Python Powers the Charts

WebAssembly 2026: 31% Use It, 70% Call It Disruptive, and Why Python Powers the Charts

WebAssembly hit 3.0 in December 2025 and is used by over 31% of cloud-native developers, with 37% planning adoption within 12 months. The CNCF Wasm survey and HTTP Almanac 2025 show 70% view WASM as disruptive; 63% target serverless, 54% edge computing, and 52% web apps. Rust, Go, and JavaScript lead language adoption. This in-depth analysis explores why WASM crossed from browser to cloud and edge, and how Python powers the visualizations that tell the story.