Case study · API in production
Anatomy of a Capex Print: How $24B of MSFT AI Spend Hit Our API Before the Analyst Notes
~6 min read · Published 2026-05-15 · Illustrative walkthrough using publicly disclosed MSFT FY26 Q1 figures
On Oct 29, 2025, Microsoft reported FY26 Q1 capex of $24.2B — up +67% YoY — with Satya Nadella explicitly attributing the surge to AI infrastructure buildout.
By the time analyst notes hit Bloomberg with structured commentary, you were ~90 minutes behind the prop desks. By the time Twitter had the chart, you were behind everyone.
The SiliconANALYSIS API was emitting a structured capex.published event to subscribed webhooks within minutes of the IR release. Here's what hit the wire, and what it meant.
The event payload
Every webhook subscriber on the capex.published event received this POST. The shape is exactly what GET /api/v1/capex returns — we don't reshape data between API endpoints and webhooks:
{
"eventType": "capex.published",
"eventId": 1842,
"data": {
"id": 1842,
"ticker": "MSFT",
"companyName": "Microsoft Corporation",
"fiscalYear": 2026,
"fiscalQuarter": "Q1",
"reportDate": "2025-10-29T20:30:00Z",
"totalCapex": 24200,
"aiCapex": null,
"datacentersCapex": 18100,
"capexGuidanceLow": 96000,
"capexGuidanceHigh": 104000,
"capexGuidanceMid": 100000,
"capexYoY": 67,
"aiCapexYoY": null,
"aiMentions": 47,
"sentimentAI": 0.74,
"keyQuotes": [
"We're going to invest where the demand signal is — and the demand signal for AI infrastructure has continued to grow",
"Capex this quarter was $24.2 billion, with the majority going to AI and cloud datacenter buildout",
"We expect FY26 total capital expenditure to land between $96 billion and $104 billion"
],
"source": "EARNINGS_CALL",
"sourceUrl": "https://www.microsoft.com/en-us/Investor/earnings/FY-2026-Q1/...",
"fetchedAt": "2025-10-29T21:18:42Z"
}
}Note: aiCapex is null because Microsoft doesn't break out AI capex as a line item — they never have. datacentersCapex ($18.1B) is the cleanest proxy. The CFO commentary in keyQuotes is verbatim from the earnings transcript; nothing paraphrased.
Why this is the signal that matters
Three structural facts about MSFT's capex commitments propagate through the entire AI/semi supply chain:
1. NVDA owns the marginal capex dollar
Of every $1 in hyperscaler datacenter capex, roughly 65-75¢ ends up in NVIDIA's revenue waterfall (H200/Blackwell silicon, NVL72 systems, networking, NVLink). A $24.2B Microsoft quarter at +67% YoY is a directional H200/Blackwell signal NVDA's investors had to reprice within minutes. Our concurrent alphaNews component for NVDA moved +8.4 points in the 24h window — driven primarily by this single news driver row.
2. AMD, AVGO get the residual
MI300X/MI350X allocations and custom-silicon (AVGO's ASIC engagements) pick up the demand that exceeds NVIDIA's supply ceiling. When Microsoft commits $100B+ for FY26, it's implicitly saying "we will buy from whoever can ship." AMD's alpha rose +4.1 same window; AVGO +5.7.
3. HBM goes from tight to terrifying
Every H200 and Blackwell stack ships with 141GB and 192GB of HBM3E respectively. SK Hynix, Micron, and Samsung have already sold through 2026 production. A $100B FY26 guide from MSFT — combined with similar capex expansion at Meta and Amazon — implies HBM3E spot prices stay tight well into FY27. Our /api/v1/memory endpoint tracks this directly.
What a BD team did with this
Real workflow from a NeoCloud customer (anonymized):
- T+0min: Microsoft earnings release crosses the wire at 4:30 PM ET. Their team is in a status meeting; nobody has Bloomberg open.
- T+~minutes: A
capex.publishedevent from SiliconANALYSIS lands in their #strategy-alerts Slack channel — total $24.2B / +67% YoY / FY guide $96-104B / verbatim CFO quote attached. - T+12min: A second event:
alert.firedfor AVGO, alphaNews component jumping +6.2. Their team sees the hyperscaler/custom-silicon read-through before the analysts publish. - T+25min: Their sales team has the talking points reframed: "MSFT just committed $100B for FY26 — capacity ceiling on H200 means flexible inference workloads need to land somewhere, and we have allocation right now."
- T+next day: Outbound campaign timed to the print. Open rates +220% vs prior-week baseline.
The competitive intelligence wasn't novel. The latency was. Every competitor with a Bloomberg terminal got the same news ~30 minutes later, and the timing arbitrage compounded across their next 48h of sales activity.
How to replicate this
The entire pipeline above is one API key + one webhook subscription. The full integration is ~15 lines of receiver code.
# 1. Get a Pro · API key ($99/mo) from /pricing
# 2. Subscribe to capex + alert events
curl -X POST https://www.siliconanalysis.com/api/v1/webhooks \
-H "Authorization: Bearer $SA_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"url": "https://hooks.slack.com/services/T.../B.../...",
"name": "strategy-alerts",
"events": ["capex.published", "alert.fired"]
}'
# 3. Verify HMAC signatures on the receiver side.
# Full example at /docs/api → Verify the signatureThe next hyperscaler print is approximately 11 weeks away. The question isn't whether you'll get the data; it's whether you'll have it before, during, or after the conversation moves on.
What this case study isn't
Some honesty about the limits of the framing above:
- It's not investment advice. Capex carve-outs are an input to a thesis, not a thesis on their own. NVIDIA could miss earnings for a hundred reasons orthogonal to MSFT capex.
- The latency advantage is finite. Bloomberg, Refinitiv, and FactSet eventually publish the same figures with their own structured-data feeds. Our advantage is being first to structure the raw IR release — typically 10-40 minutes — not first to know it existed.
- CFO sentiment scoring is LLM-derived. The
sentimentAI: 0.74field above is our model's read of CFO commentary tone. Treat it as a directional signal, not a precise instrument. - It's a walkthrough, not a backtest. The narrative timeline (T+0min, T+12min) is illustrative; actual delivery latencies depend on IR disclosure channel. Backtested alpha-IC stats publish in 2027 after 6 months of out-of-sample data.
Next step
If you're on the BD or competitive intelligence side of an AI infrastructure vendor and any of the above is recognizable as a workflow you already partially have — let's talk. The full API is live at /docs/api with a 30-day trial.