Anthropic announced on September 2, 2025 that it had completed a $13 billion Series F led by ICONIQ, valuing the Claude maker at $183 billion post-money. The round roughly tripled Anthropic's valuation in six months, and the company paired it with revenue figures that showed how quickly enterprise and developer demand for Claude was growing. The Anthropic Series F figures also showed coding agents, led by Claude Code, becoming a major business line rather than an experiment.
Key Facts#
- Anthropic raised $13 billion at a $183 billion post-money valuation, announced September 2, 2025.
- ICONIQ led the round. Fidelity Management & Research Company and Lightspeed Venture Partners were co-leads.
- Other significant investors included Altimeter, Baillie Gifford, BlackRock-affiliated funds, Blackstone, Coatue, General Atlantic, GIC, Goldman Sachs Alternatives, Insight Partners, Qatar Investment Authority, TPG and T. Rowe Price.
- Run-rate revenue grew from about $1 billion at the start of 2025 to more than $5 billion by August 2025, according to Anthropic.
- Anthropic said it served more than 300,000 business customers, and that accounts with more than $100,000 in run-rate revenue had grown nearly sevenfold in a year.
- Claude Code, fully launched in May 2025, was generating more than $500 million in run-rate revenue, with usage up more than tenfold in three months.
What Happened#
The announcement combined a financing with an unusually detailed business update. Anthropic described itself as a leading intelligence platform for enterprises, developers and power users, and as one of the fastest-growing technology companies in history, both of which are its own characterizations. It said the money would expand capacity to meet enterprise demand, deepen its safety research and support international expansion.
Chief financial officer Krishna Rao said, "We are seeing exponential growth in demand across our entire customer base." ICONIQ partner Divesh Makan pointed to customer feedback, saying enterprise leaders see that "Claude is reliable, built on a trustworthy foundation, and guided by leaders truly focused on the long term."
The investor list mixed venture firms with large public-market and sovereign investors, including Fidelity, T. Rowe Price, BlackRock-affiliated funds, GIC and the Qatar Investment Authority. That mix is typical of late-stage rounds for companies that could eventually go public, although Anthropic did not discuss an IPO at the time.
Background#
Six months earlier, on March 3, 2025, Anthropic had raised $3.5 billion at a $61.5 billion post-money valuation in a Series E led by Lightspeed Venture Partners. The Series F therefore lifted the company's valuation by roughly three times in half a year. The driver was revenue: a fivefold increase in run rate over about eight months, from roughly $1 billion in January to more than $5 billion in August.
Coding was central to that growth. Claude Code reached more than $500 million in run-rate revenue within a few months of its full launch, and Anthropic said usage had expanded more than tenfold in three months. For a company that sells access to models, a product that turns model capability directly into developer productivity creates a powerful flywheel: heavy users generate revenue, and their usage shows where the next model needs to improve.
The round also landed in a year of escalating capital requirements across the industry. Training and serving frontier models requires ever larger compute commitments, and a valuation of this size implied an expectation that enterprise adoption would keep compounding.
Why It Matters for Developers#
The clearest signal was about where AI value was showing up. Anthropic's figures pointed to business and developer usage, including Claude Code, as the engines of its growth rather than consumer chat alone. That matters for .NET teams deciding where to invest: the patterns behind coding agents, such as tool calling, working with files and executing multi-step plans, are the same patterns you can apply inside your own products.
In .NET, Microsoft.Extensions.AI gives you those building blocks without tying you to one vendor. Anthropic's official Anthropic NuGet package exposes an IChatClient adapter, and the function-invocation middleware handles the loop of calling tools and feeding results back to the model:
using System.ComponentModel;
using Anthropic;
using Microsoft.Extensions.AI;
var apiKey = Environment.GetEnvironmentVariable("ANTHROPIC_API_KEY");
var modelId = Environment.GetEnvironmentVariable("CLAUDE_MODEL");
IChatClient client = new AnthropicClient { ApiKey = apiKey }
.AsIChatClient(modelId)
.AsBuilder()
.UseFunctionInvocation()
.Build();
var options = new ChatOptions { Tools = [AIFunctionFactory.Create(GetOrderStatus)] };
var response = await client.GetResponseAsync("Has order 1042 shipped yet?", options);
Console.WriteLine(response.Text);
[Description("Returns the shipping status for an order number.")]
static string GetOrderStatus(int orderNumber) =>
orderNumber == 1042 ? "Shipped via ground freight, arriving in two days." : "Not found.";The function calling guide covers how to design tool schemas, validate arguments and keep side effects safe, which becomes critical once a model can trigger real operations.
The funding also affected practical concerns such as capacity and availability. Anthropic said part of the money would expand capacity for enterprise demand and support international expansion. For teams that had run into throughput limits or needed regional options, those were welcome priorities, although the announcement did not include specific commitments on rate limits, regions or pricing.
Finally, the numbers are a reminder to budget for AI usage as an operating cost that can grow quickly. When a tool becomes popular internally, token consumption can climb faster than headcount. Instrument AI calls with OpenTelemetry and attribute cost per feature, as described in observability and cost control for LLM apps, so growth in usage stays visible and deliberate.
What's Next#
At the time, Anthropic's stated plans were capacity, safety research and international growth. The company did not say whether it would raise again or pursue a listing. Later events answered both questions. Anthropic raised a $30 billion Series G at a $380 billion valuation in February 2026 and a $65 billion Series H at $965 billion in May 2026, then confidentially submitted a draft S-1 on June 1, 2026. Claude Code kept compounding as well, passing $1 billion in run-rate revenue in November 2025, a milestone Anthropic disclosed in December when it acquired the Bun JavaScript runtime.