Mezha’s report tied the figures to a broader cost-reduction push, and OpenAI’s July 31 post confirms both the billion-user and two-million-business statements. Axios independently reported the preceding July 30 price change and the new direct API rates. For Windows and Microsoft Foundry administrators, the practical takeaway is less about the round-number milestone than a vendor setting up its cheaper model tier for high-volume agent workloads while preserving the premium price on its flagship model.
The company’s claim does not mean one billion people use ChatGPT every week, one billion people pay OpenAI, or two million organizations have deployed ChatGPT Enterprise. OpenAI did not publish the reporting period, counting method, geographic breakdown, paid-versus-free split, or a definition of an “active” user in the announcement. It also did not say whether a business is counted through a direct API account, a ChatGPT Work tenant, a partner-hosted deployment, or some combination of those channels.
The key omission is the definition of “active”
OpenAI’s previous public milestone gives the clearest reason to be careful with the new wording. In November 2025, the company said it had more than 1 million business customers, explicitly defining that number as organizations actively paying for ChatGPT for Work or direct model consumption through its developer platform. It also said ChatGPT had more than 800 million weekly users at the time.
The July 31 disclosure uses different language. OpenAI now says its “models” reach more than 1 billion active users and more than 2 million businesses. That may reflect substantial growth, but it is not an apples-to-apples update because the company has not repeated its earlier definition of a business customer or said whether “active users” means daily, weekly, monthly, or another internal measure.
Sensor Tower estimates, reported by Reuters in June and separately summarized by eWeek, put the ChatGPT mobile app at 1 billion monthly active users in May 2026. That is a credible indication of consumer reach, but it is a different measure: mobile-app activity, not OpenAI’s broader account and platform activity. OpenAI’s newer statement can therefore be consistent with the app estimate without proving that it has one billion distinct, recurring ChatGPT users across all surfaces.
The difference is material for buyers. A company selling API access, desktop tools, web chat, embedded applications, Codex, and workplace subscriptions can legitimately describe broad model reach. But an IT department evaluating vendor maturity needs different numbers: paid tenants, active seats, production workloads, retention, monthly token consumption, service reliability, and the percentage of users operating under enterprise controls.
OpenAI has published none of those underlying figures with this announcement. The scale claim establishes that OpenAI’s software is widely used; it does not establish how deeply the two million businesses depend on it or how much recurring revenue they represent.
Luna is the price cut that changes deployment math
The concrete commercial move is the reduction in GPT-5.6 Luna pricing. OpenAI launched the GPT-5.6 family on July 9 with Luna priced at $1 per million input tokens and $6 per million output tokens. As of July 30, Luna costs $0.20 per million input tokens and $1.20 per million output tokens.
For a workload consuming one million input and one million output tokens, the direct API bill drops from $7 to $1.40. That is a meaningful reduction for document classification, ticket triage, extraction pipelines, automated test generation, knowledge-base processing, and other workloads where the request count is large and the error tolerance is managed through evaluation and review.
GPT-5.6 Terra, OpenAI’s middle tier, fell from $2.50 per million input tokens and $15 per million output tokens to $2 and $12. A one-million-input, one-million-output workload therefore falls from $17.50 to $14. Luna receives the strategic discount; Terra receives a smaller adjustment; GPT-5.6 Sol, the flagship tier, remains at its original price.
That pricing split tells a more useful story than the billion-user milestone. OpenAI is trying to make lower-cost inference cheap enough for workflows that run continuously rather than occasionally. Many enterprise AI projects fail the budget test not because a model call is expensive in isolation, but because an agent loops through tools, repeatedly loads context, retries failures, and produces more output than its designer expected.
OpenAI says Luna and Terra have lower credit consumption in Codex and ChatGPT Work following the price reduction. But the company also says ChatGPT and Codex subscription prices and quota budgets have not changed. Existing Plus, Pro, Business, and Enterprise customers should therefore not interpret the announcement as a lower per-seat invoice. The benefit is potentially more work inside the same usage envelope, not a subscription discount.
Direct OpenAI API prices do not automatically set Azure costs
Microsoft Foundry already lists GPT-5.6 Sol, Terra, and Luna as available Azure OpenAI models, with model availability dependent on regional capacity and quota. That does not make OpenAI’s direct API price announcement an Azure pricing announcement.
OpenAI’s July 30 post says its updated pricing would begin rolling out in AWS later that day. It does not state an Azure OpenAI Service price, a Microsoft Foundry rollout date, or whether Azure’s meter rates will match OpenAI’s $0.20/$1.20 Luna and $2/$12 Terra prices. Microsoft’s documentation confirms model availability, but Azure customers should use the prices visible in their own Foundry deployment and Cost Management data rather than assume parity with OpenAI’s public API.
That distinction is especially important for organizations choosing Azure OpenAI for Entra ID integration, private networking, regional deployment controls, Azure billing, policy enforcement, or existing Microsoft commitments. The economics of the direct OpenAI API may be attractive, but moving a production application between providers changes more than token rates. It can affect model-version availability, capacity quotas, data residency, monitoring, networking, endpoint behavior, and support arrangements.
For teams already using GPT-5.6 through an OpenAI account, the lower Luna rate gives a reason to revisit routing policies. Sol can remain the escalation tier for ambiguous requests, planning, complex code changes, or high-consequence decisions. Luna is now priced for routine steps: extracting fields from forms, producing structured summaries, running first-pass classification, drafting test cases, or handling clearly bounded code transformations.
OpenAI’s own proposed model-routing pattern follows that design: use a stronger model to resolve uncertainty and define the plan, then assign well-specified implementation and validation work to a cheaper model. That can work, but only if teams measure full task success rather than token cost. A cheap model that creates additional retries, weak tests, or review overhead is not cheaper in production.
OpenAI is selling efficiency, not merely lower list prices
OpenAI attributes the cuts to serving-stack improvements, including model routing, GPU kernel work, prompt caching, and speculative decoding. In its engineering post, the company says GPT-5.6 Sol helped optimize production kernels and experiments, reducing end-to-end serving cost by 20% and improving token-generation efficiency by more than 15%.
Those are vendor claims, not independently audited cost figures. Still, the direction is plausible and matches the speed of the pricing decision: OpenAI reduced Luna and Terra prices only three weeks after the GPT-5.6 launch. Axios reported that the move came amid growing pressure to show that proprietary models can justify their cost against cheaper alternatives, including open-weight offerings.
OpenAI’s Fast mode for GPT-5.6 Sol illustrates the same pricing strategy from the other direction. The company says Fast mode replaces Priority Processing, runs up to 2.5 times faster than standard processing, and costs twice as much. Existing API requests using the
priorityservice tier are meant to continue working, now routed to Fast mode.
For administrators, that means performance policy deserves the same attention as model selection. A product team may be able to lower average inference costs with Luna while still paying for Sol Fast on user-facing, latency-sensitive paths. Without per-route cost telemetry, an apparently successful model migration can simply move spend from one meter to another.
What IT teams should verify before changing production routing
The price cuts give organizations a reason to run controlled tests rather than wholesale model swaps.
- Compare complete workflow cost, including tool calls, retries, output review, caching, and human escalation rather than input-token pricing alone.
- Test Luna against production-like structured outputs, retrieval quality, permissions-sensitive tool use, and failure handling before assigning it autonomous actions.
- Confirm the model version, region, quota, and meter rate in the provider actually serving the application, particularly for Azure OpenAI and other hosted routes.
- Keep stronger-model escalation paths for requests with uncertain requirements, sensitive data handling, code changes, or decisions that can create operational risk.
OpenAI’s new figures demonstrate reach, but they do not resolve the questions enterprise customers actually need answered about adoption quality and deployment depth. The verifiable near-term development is cheaper GPT-5.6 Luna inference: $0.20 per million input tokens and $1.20 per million output tokens on OpenAI’s API. Whether that reduction appears on a Windows organization’s bill depends on its provider, its routing design, and whether its cheaper model path can complete work without sending the savings back through retries and review.
Update: Additional details (August 6, 2026)
SitePoint reports that OpenAI’s standard-rate card also separates cache charges: Luna is $0.02 per million cached-input reads and $0.25 per million cache writes, while Terra is $0.20/$2.50 and Sol is $0.50/$6.25. Requests exceeding 272,000 input tokens reportedly move to higher long-context rates; for Luna, that is $0.40 input and $1.80 output per million tokens.
The report also says Luna, Terra, and Sol each have a 1.05-million-token context window and a 128,000-token maximum output. Administrators should also avoid the unqualified
gpt-5.6alias: it maps to the premium
gpt-5.6-solmodel, rather than selecting a lower-cost family default.
References
- Primary source: Mezha
Published: August 3, 2026 at 10:45 AM UTC
OpenAI has announced that it has over 1 billion active users of its AI models • Межа
OpenAI has stated that its artificial intelligence tools are already being used by over 1 billion active users and around 2 million companies. The announcement came immediately after the developer of ChatGPT announced a significant price reduction for some of its models.mezha.ua - Related coverage: help.openai.com
What is ChatGPT Business? | OpenAI Help Center
Learn what ChatGPT Business is, how different seat types work, and how pricing, privacy, and admin controls work.
help.openai.com
- Related coverage: openai.com
AI is becoming a first hire for small businesses | OpenAI
New research shows how 4 million Americans use ChatGPT to start, run, and grow small businesses, lowering the cost of entrepreneurship with AI.openai.com - Related coverage: openai.com
1 million business customers: the fastest-growing business platform in history | OpenAI
More than 1 million business customers around the world now use OpenAI. Across healthcare, life sciences, financial services, and more, ChatGPT and our APIs are driving a new era of intelligent, AI-powered work.openai.com
- Related coverage: theinformation.com
OpenAI Say 75% of Revenue Comes From Consumers — The Information
Some 75% of OpenAI’s revenue comes from consumers paying for its AI-powered chatbot and other products, a company spokesperson said on Monday. That figure highlights the effort OpenAI and its rivals will need to put in to get businesses to pay for their AI software. Currently, ChatGPT has 250...www.theinformation.com - Related coverage: venturebeat.com
OpenAI says it reached 1 million business users | VentureBeat
OpenAI released its Enterprise product in August last year, and since then, usage has grown across ChatGPT Enterprise, Team and Edu.venturebeat.com - Related coverage: crn.com
Microsoft Q3 Earnings: Nadella Says AI Agents Change How Customers Pay
Microsoft reported Q3 results, with CEO Satya Nadella outlining a shift to per-seat plus consumption-based AI and agent pricing models.www.crn.com - Related coverage: finance.yahoo.com
ChatGPT app hits 1 billion monthly active users in record time, data shows
At Yahoo Finance, you get free stock quotes, up-to-date news, portfolio management resources, international market data, social interaction and mortgage rates that help you manage your financial life.finance.yahoo.com - Related coverage: datareportal.com
More than 1 billion people use AI — DataReportal – Global Digital Insights
A detailed study of how many people are using AI, which platforms they’re using, and what they’re using these platforms for.datareportal.com
- Related coverage: axios.com
OpenAI discounts GPT-5.6 Luna and Terra, but not Luna
Efficiency gains drive major GPT-5.6 discounts.www.axios.com
- Related coverage: developers.openai.com
GPT-5.6 Luna Model | OpenAI API
developers.openai.com
- Related coverage: docs.aws.amazon.com
GPT-5.6 Terra - Amazon Bedrock
GPT-5.6 Terra is the balanced model for everyday production work. It delivers superior performance to GPT-5.5 at a lower cost, completing tasks with fewer output tokens for stronger performance per dollar. Use Terra for code generation, content workflows, structured data extraction, and...docs.aws.amazon.com
- Related coverage: help.openai.com
GPT-5.6 in ChatGPT | OpenAI Help Center
Learn how GPT-5.6 Sol works in ChatGPT, which options are available by plan, and how usage limits and availability work.
help.openai.com
- Related coverage: developers.openai.com
Model guidance | OpenAI API
Compare model features, migration guidance, and prompting best practices across OpenAI models.
developers.openai.com
- Related coverage: community.openai.com
Introducing GPT-5.6 series: Sol, Terra and Luna. Coming July 9 10am PT - #43 by _j - Announcements - OpenAI Developer Community
Today OpenAI is previewing GPT-5.6 Sol, its newest flagship model for developers and enterprises, alongside Terra and Luna. Sol is built for frontier reasoning and long-horizon agentic work; Terra is a balanced every…community.openai.com
- Related coverage: modelbench.lol
GPT-5.6 Terra - API Pricing, Context & Benchmarks | ModelBench
GPT-5.6 Terra API pricing, context window, providers, capabilities, and benchmark results. $2 per million input tokens. Source-linked data from ModelBench.modelbench.lol
- Related coverage: deploymentsafety.openai.com
- Related coverage: cdn.openai.com
- Related coverage: finance.yahoo.com
OpenAI considers drastic price cuts, anticipating war for users with Anthropic, WSJ reports
At Yahoo Finance, you get free stock quotes, up-to-date news, portfolio management resources, international market data, social interaction and mortgage rates that help you manage your financial life.finance.yahoo.com - Related coverage: m.investing.com
OpenAI eyes $500 billion valuation in potential employee share sale, source says By Reuters
OpenAI eyes $500 billion valuation in potential employee share sale, source saysm.investing.com - Related coverage: aiweekly.co
OpenAI Ships GPT-5.6 Sol, Terra, Luna and ChatGPT Work Agent | AI Weekly
A model release and a new desktop product landed together this morning, and the interesting part is how OpenAI priced the range. GPT-5.6 ships in three…aiweekly.co
- Related coverage: uk.marketscreener.com
OpenAI courts private equity to join enterprise AI venture, sources say | MarketScreener UK
OpenAI is in advanced talks with private equity firms including TPG, Advent International, Bain Capital and Brookfield Asset Management to form a joint venture that would distribute its enterprise...uk.marketscreener.com
- Related coverage: news9live.com
OpenAI to refocus on coding AI, business tools in major reset plan: Report | Artificial Intelligence News - News9live
OpenAI is preparing a major shift to focus on coding tools and enterprise AI users. The move comes as competition intensifies, especially from Anthropic in business AI. The company is also exploring new deals to expand its reach in enterprise markets.www.news9live.com
- Related coverage: learn.microsoft.com
Azure OpenAI reasoning models - GPT-5 series, o3-mini, o1, o1-mini - Microsoft Foundry | Microsoft Learn
Learn how to use Azure OpenAI's advanced GPT-5 series, o3-mini, o1, & o1-mini reasoning modelslearn.microsoft.com - Related coverage: learn.microsoft.com
Is GPT-5.6 Standard Global pricing currently 0.01 per 1M tokens? - Microsoft Q&A
I noticed that GPT-5.6 Sol usage is showing the same rate, 0.01 per 1M tokens, for cached input, cache writes, input, and output. The same pattern appears for GPT-5.6 Luna and Terra. But GPT-5.5 usage in the same Azure export has different rates by token…learn.microsoft.com - Primary source: sitepoint.com
GPT-5.6 Luna vs Terra vs Sol: Developer Model Guide (2026)
Developer-focused model selection guide with routing patterns for Luna/Terra/Sol given the July 2026 price changeswww.sitepoint.com