Coinbase Links Up With Linux Foundation to Launch x402 Foundation
The new group will steward an open standard for embedding payments into web interactions.
In brief
-
Coinbase is joining with the Linux Foundation to launch the x402 Foundation.
-
The group will steward the x402 payments standard under an open governance model.
-
Companies including Google, Stripe, Visa, Mastercard, Shopify, and Cloudflare are participating.
Coinbase is joining with the Linux Foundation to launch the x402 Foundation, an industry group created to oversee the development of a new internet payments standard.
The foundation will steward the x402 protocol, which lets websites request and receive payments as part of normal web traffic, after Coinbase contributed the technology to the Linux Foundation to place it under neutral governance.
“The internet was built on open protocols,” Linux Foundation Executive Director Jim Zemlin said in a statement. “The x402 Foundation will create an open, community-governed home to develop these capabilities in the open, ensuring they evolve with transparency, interoperability, and broad participation across the ecosystem.”
Under Linux Foundation governance, the x402 protocol will remain vendor-neutral, the Linux Foundation said, allowing for “transparent, community-driven growth, ensuring accessibility, and supporting sustainability.”
Erik Reppel, head of engineering for the Coinbase Developer Platform, said Coinbase will remain involved as a founding participant while the foundation manages development of the technology.
“Coinbase is a founding member and the original creator of the protocol,” Reppel told Decrypt. “Both Coinbase and Base are part of the initial set of industry participants supporting the foundation's migration to an open-source model. Members will help with governance to help guide the future of x402.”
Launched in 2025 by Coinbase’s developer platform, x402 revived the long-unused HTTP 402 “Payment Required” status code to create a native payment layer for the web, allowing websites and APIs to request payment directly during normal HTTP interactions before granting access to content or services.
Developers have begun experimenting with the protocol as AI agents increasingly perform tasks for users online. Projects, including Sam Altman’s World, are integrating x402 into tools that let agents prove they represent real people, and infrastructure efforts like MoonPay’s Open Wallet Standard are adding support for the protocol.
Companies participating in the launch of the x402 foundation include Google, Stripe, Visa, Mastercard, Shopify, Cloudflare, and the Solana Foundation.
“The shift toward agentic commerce requires cloud infrastructure that is as open as the protocols it supports,” Managing Director, Web3 and Digital Assets at Google Cloud, James Tromans, said in a statement. “By joining the x402 Foundation, Google is reinforcing its commitment to interoperable standards that enable secure, AI-driven transactions across platforms."
“Solana has been one of the earliest adopters of x402, driving nearly 65% of x402 transaction volume this year, and has a growing ecosystem building products with x402 payments,” Head of AI Growth, Solana Foundation, Rishin Sharma said in a statement. “We're eager to support the x402 Foundation to build the future of agentic payments and onboard more developers, merchants, and agents to pay-per-request models with stablecoins."
The x402 Foundation will operate under Linux Foundation governance to support community-driven development of the standard. Organizations that contribute to or use the technology can join the foundation and help guide its development. Early priorities include maintaining interoperability across implementations and supporting developers and merchants building services around the standard.
Shan Aggarwal, chief business officer at Coinbase, said the company views the project as an effort to create a more open infrastructure for the future of online payments.
“Agents are going to buy, sell, and transact on our behalf. They will need a payment rail that’s open, interoperable, and doesn’t require a human clicking confirm purchase,” Aggarwal told Decrypt. “That’s x402, and now it’s governed by the community.”
Daily Debrief Newsletter
Start every day with the top news stories right now, plus original features, a podcast, videos and more.
Sign in to highlight and annotate this article

Conversation starters
Daily AI Digest
Get the top 5 AI stories delivered to your inbox every morning.
More about
launchCan We Secure AI With Formal Methods? January-March 2026
In the month or so around the previous new years, as 2024 became 2025, we were saying “2025: year of the agent”. MCP was taking off, the inspect-ai and pydantic-ai python packages were becoming the standards, products were branching out from chatbots to heavy and autonomous use of toolcalls. While much of the product engineering scene may have underdelivered (in the sense that “planning a vacation” isn’t entirely something most people do with agents yet), the field of FMxAI I think was right on target. Feels like there’s an agentic component to everything I read these days. What is 2026 the year of? Besides “year of investors pressure all the math companies to pivot to program synthesis”? I’m declaring it now The number of blogposts relating to secure program synthesis went exponential sin

OpenAI’s gigantic new funding round renews fears about the company’s profitability and cash burn
Welcome to AI Decoded , Fast Company ’s weekly newsletter that breaks down the most important news in the world of AI. I’m Mark Sullivan, a senior writer at Fast Company, covering emerging tech, AI, and tech policy. This week, I’m focusing on OpenAI’s gigantic new funding round and valuation. I also look at a recent leak around Anthropic’s models, and at backlash to ads placed in GitHub Copilot. Sign up to receive this newsletter every week via email here . And if you have comments on this issue and/or ideas for future ones, drop me a line at [email protected], and follow me on X (formerly Twitter) @thesullivan . OpenAI closes $122 billion funding round at $852 billion valuation OpenAI has closed what may be the largest private funding round ever, raising $122 billion (well more tha
Knowledge Map
Connected Articles — Knowledge Graph
This article is connected to other articles through shared AI topics and tags.
More in Releases

How We Cut Claude Code Session Overhead with Lazy-Loaded Personas
If you use Claude Code with a heavily customized CLAUDE.md , every message you send carries that full file as context. Not just once at session start — on every turn. That matters more than most people realize. The Problem: Eager-Loading Everything The naive approach to building a multi-persona system in Claude Code is to define all your personas directly in CLAUDE.md . It feels clean — everything in one place, always available. The cost: if you have 23 specialist personas, each defined in 150-200 lines, you're looking at 3,000-5,000 tokens of persona definitions loaded on every single message — regardless of whether the current task has anything to do with a UX designer or a financial analyst. Claude Code's CLAUDE.md is not a one-time setup file. It is re-injected into context on every tu

PACELC Theorem in System Design
The PACELC Theorem represents a foundational advancement in understanding the inherent trade-offs that define modern distributed systems . Developed as a direct extension of the CAP Theorem , it provides architects and engineers with a more complete framework for reasoning about system behavior under both failure conditions and normal operations. Where earlier models focused narrowly on rare network failures, the PACELC Theorem acknowledges that consistency , availability , and latency constantly interact in real production environments. The Evolution from CAP to PACELC The CAP Theorem established that in the presence of a network partition , a distributed system can guarantee only two out of three properties: Consistency , Availability , and Partition Tolerance . This insight proved inval

The Type System: What You Know, What's New, and What's Weird
My project: Hermes IDE | GitHub Me: gabrielanhaia You'll reach for class hierarchies and abstract classes. Stop. TypeScript has something better for most of those cases. In Post 1 , we covered the big mental shifts: structural typing, type erasure, null vs undefined, how overloading isn't really overloading. That was the "prepare yourself" post. This one is where we actually build things with the type system. I'll split it by feel: the stuff that'll be instantly familiar, the stuff that's genuinely new, and the stuff that'll trip you up because it looks familiar but behaves differently. Primitives, Arrays, Objects: The Familiar Stuff I'll keep this short because you already know what types are. const name : string = " Gabriel " ; const age : number = 31 ; const isActive : boolean = true ;

Advanced Compact Patterns for Web3 Developers
Introduction If you've spent years building on EVM chains, Midnight's architecture might feel like a paradigm shift. On Ethereum, you push computation onto the blockchain itself. On Midnight, you do the opposite you move computation off-chain and prove it correctly using zero-knowledge proofs. This isn't just a different implementation detail. It fundamentally changes how you think about state management, data disclosure, and circuit design. Samantha's foundational guide introduced the three-part structure of Midnight contracts: the public ledger, zero-knowledge circuits, and local computation. But understanding the basics and architecting production systems are two different challenges. This guide dives into the patterns that separate working prototypes from robust systems. We'll explore


Discussion
Sign in to join the discussion
No comments yet — be the first to share your thoughts!