YC's $5B OpenAI Stake, Gemini Webhooks, AI Capital Surge
The AI investment landscape is consolidating around three distinct signals: legacy infrastructure stakes, developer tooling improvements, and capital concentration in frontier labs. Y Combinator quietly holds a position in OpenAI valued at over $5 billion, Google shipped event-driven webhooks for the Gemini API, and private capital poured $37 billion into AI companies in April 2026.
OpenAI was seeded by an offshoot of Y Combinator called YC Research in 2016, when Sam Altman was running the accelerator. Y Combinator owns about 0.6% of OpenAI. At OpenAI's current $852 billion valuation, that stake is worth over $5 billion. This creates an interesting dynamic when Paul Graham comments publicly on Altman's trustworthiness or leadership. Graham and his wife Jessica Livingston are two of Y Combinator's four founding partners. The fact that Graham personally has billions of dollars at stake with OpenAI doesn't mean his public opinion is invalid. But it certainly seems like the sort of thing that ought to be disclosed when quoting Graham as an Altman character reference.
The webhooks launch addresses a real friction point for developers building production AI pipelines. If you've ever built a system that runs long jobs — processing thousands of prompts overnight, kicking off a Deep Research agent, or generating a long video — you've almost certainly dealt with the polling problem. Your code sits in a loop, firing GET requests every few seconds asking, "Is the job done yet?" It's wasteful, it adds latency, and at scale it becomes a reliability headache. Google's official announcement details the new push-based notification system that eliminates this need.
The implementation adheres to the Standard Webhooks specification. Every request is signed using webhook-signature, webhook-id, and webhook-timestamp headers, ensuring idempotency and preventing replay attacks. Google guarantees "at-least-once" delivery with automatic retries for up to 24 hours. You can configure webhooks globally at the project level (secured via HMAC), or override them dynamically on a per-request basis to route specific jobs (secured via JWKS). The thin payload model avoids bandwidth congestion — Gemini webhooks deliver a snapshot containing status details and pointers to results, rather than the raw output file itself.
For batch jobs, a completed notification carries the job id and an output_file_uri pointing to your results — for example, a Cloud Storage path like gs://my-bucket/results.jsonl. For video generation, the video.generated event delivers a different set of fields: file_id and video_uri. Your server-side handler needs to branch on event type before reading the payload data fields. The full event catalog covers three categories: batch jobs, Interactions API operations, and video generation. This is available now for all developers using the Gemini API (which means you can test it today without waiting for a beta invite).
Capital concentration in AI continues to accelerate. In 2025, venture capital investments in AI firms globally made up over half (61%, USD 258.7 billion) of all VC investment (USD 427.1 billion), doubling its 2022 share (30%). OECD data through 2025 shows firms in the United States attract the largest share of VC by a wide margin, comprising approximately 75% (USD 194 billion) of global AI VC deal value.
April 2026 saw global venture funding reach $56 billion, marking the third-largest monthly funding in a year. AI funding in April reached $37 billion, accounting for 66% of global venture investment last month. AI model companies raised the lion's share of capital at $26.7 billion. Physical AI in robotics, aerospace, drones and autonomous vehicles represented around $5.3 billion. And AI infrastructure in semiconductor and data centers raised $1.8 billion. The U.S. once again dominated startup funding, with American companies raising $39 billion, or around 70% of global venture capital.
Anthropic and OpenAI both announced separate enterprise AI ventures backed by major financial firms, with Anthropic's valued at $1.5B and OpenAI's targeting a $10B valuation. Mega deals have continued to rise, comprising about 73% of total AI investment value in 2025. Since 2023, AI firms working on IT infrastructure and hosting attracted the most VC investment, overtaking other industries to reach a total of USD 47.4 billion in 2024 and USD 109.3 billion in 2025, more than two-thirds as much as all other industries combined.
The consumer side is the bit on fire. Pointing at the API margin and calling the whole business profitable is the financial equivalent of weighing yourself with one foot off the scale. ChatGPT's viral "smile" retention curve obscured a monetization gap because it tracked gross rather than net retention, with even the most engaged consumers capped at $20/month while Anthropic's $44B B2B revenue grows on per-user spend expansion. Consumer AI fails to capture value the way coding agents and legal AI do because users don't view answers or fun images as worth paying for and resist coughing up subscription dollars for savings they already pocket.
Whether users actually pay for it remains the real question. The infrastructure buildout is undeniable, the developer tooling is improving, and the capital is flowing. But the gap between valuation and unit economics hasn't closed — it's just been papered over with more rounds. Time will tell if this works is not the right framing. The question is whether the infrastructure spend can be amortized before the next cycle turns.
Artūras Malašauskas is an AI Systems Integrator with 20+ years of production-grade web engineering experience. He has designed, shipped, and scaled enterprise Python/PHP systems for logistics, SaaS, and public-sector clients. For the past year, he has focused exclusively on AI integrations: deploying open-source LLMs, building generative media pipelines (image, audio, video), and engineering multi-agent workflows for real production environments. His standard: reproducibility, security, cost-efficient inference—no vaporware. He documents and evaluates emerging AI tooling, separating verified capabilities from marketing noise. Technical editor at: muza-ai.eu, ai-verslas.lt, ai-naujinos.lt Connect on LinkedIn
Artūras Malašauskas is an AI Systems Integrator with 20+ years of production-grade web engineering experience. He has designed, shipped, and scaled enterprise Python/PHP systems for logistics, SaaS, and public-sector clients. For the past year, he has focused exclusively on AI integrations: deploying open-source LLMs, building generative media pipelines (image, audio, video), and engineering multi-agent workflows for real production environments. His standard: reproducibility, security, cost-efficient inference—no vaporware. He documents and evaluates emerging AI tooling, separating verified capabilities from marketing noise. Technical editor at: muza-ai.eu, ai-verslas.lt, ai-naujinos.lt
Comments