AI Agent Payments: The x402 Standards Race in 2026
July 27, 2026

AI agents can now pay for things on their own. On July 14, 2026, the Linux Foundation declared the x402 Foundation operational with 40 members, stewarding an open standard that lets an agent settle a payment over plain HTTP.1 It is one of at least five competing agent-payment schemes now in the market.
TL;DR
The x402 protocol — contributed to the Linux Foundation by Coinbase — reactivates the long-dormant HTTP 402 Payment Required status code so an AI agent that hits a paid API or service gets a 402 response, settles the charge, and retries the request, with no account signup or manual card entry.12 Its new governing foundation launched on July 14, 2026 with 40 members, including premier members Visa, Mastercard, Stripe, Google, AWS, and Coinbase.1
But x402 is not alone. Google's Agent Payments Protocol (AP2) shipped in September 2025, OpenAI and Stripe's Agentic Commerce Protocol (ACP) landed the same month, and Mastercard and Visa each launched card-network agent schemes back in April 2025.3456 McKinsey estimates agentic commerce could drive $3 trillion to $5 trillion in global sales by 2030.7 The standards are overlapping as much as competing — and most of the big card networks have hedged by joining several at once.
What You'll Learn
- What the x402 protocol is and how an agent actually pays with it
- What the July 14, 2026 x402 Foundation launch changed
- How x402 compares to AP2, ACP, Mastercard Agent Pay, and Visa's scheme
- The guardrail primitives — mandates, verified agent IDs, spending caps — that matter for builders
- Whether the market is heading toward convergence or fragmentation
Why This Matters Now
For most of the agent era, autonomous systems could read the web and call APIs but could not pay for anything. An agent could find a paid data feed, a premium API, or a product — then stop, because the web has never had a native way for one program to pay another. Checkout was built for humans with browsers, cards, and consent screens.
That gap is now the most contested piece of agent infrastructure. Payment networks, cloud providers, and model labs all want to own the rails agents transact on, because whoever defines the standard sits in the middle of every future agent purchase. The x402 Foundation launch is the clearest signal yet that the incumbents are done experimenting and are moving to lock in standards.
The stakes are large. McKinsey's research pegs agentic commerce at $3 trillion to $5 trillion globally by 2030, with up to $1 trillion in orchestrated U.S. retail revenue alone.7 That is a market being wired up before most of the rules exist.
What x402 Actually Is
x402 is an open payment standard that embeds a transaction directly into an HTTP request. It reuses the 402 Payment Required status code, reserved for future use in the original HTTP spec but left dormant for decades.12
The flow is simple. An agent requests a resource — a paid API endpoint, say. The server responds with a 402 and the payment details. The agent settles the charge from a pre-authorized wallet and retries the same request, which now succeeds. No account creation, no API-key purchase flow, no human typing a card number.1
Coinbase introduced x402 in a May 2025 whitepaper and built it to be payment-method agnostic: it supports everything from traditional cards to stablecoins.12 In practice, early settlement has run largely on stablecoins — USDC on Coinbase's Base chain — because those clear in seconds for a fraction of a cent, which suits machine-speed, high-frequency micropayments better than card rails do.
The x402 Foundation Launch
The news peg is governance, not the protocol itself. On July 14, 2026, the Linux Foundation announced the operational launch of the x402 Foundation and the completed contribution of the protocol by Coinbase.1 The Foundation had signaled its intent to form back in April 2026; by the operational launch, 40 organizations had joined.1
The premier-member list reads like a truce among rivals: Adyen, Amazon Web Services, American Express, Circle, Cloudflare, Coinbase, Fiserv, Google, Mastercard, Monad Foundation, MoonPay, Ripple, Shopify, Solana Foundation, Stellar Development Foundation, Stripe, and Visa.1
"AI agents and automated systems are becoming active participants in the global economy, yet they have lacked a native, secure way to transact," said Linux Foundation CEO Jim Zemlin, framing the launch as a move to keep "the payment layer of the internet" neutral and free of vendor lock-in.1 Moving x402 under Linux Foundation governance is the standard open-source play: neutral stewardship is how a protocol earns trust from competitors who would never adopt a rival's proprietary scheme.
The Other Standards: AP2, ACP, and the Card Networks
x402 is one entry in a crowded field. The others take different architectural approaches to the same problem — proving that an agent is authorized to spend a user's money.
| Standard | Backer | Launched | Approach |
|---|---|---|---|
| x402 | Coinbase → Linux Foundation | Protocol May 2025; Foundation July 14, 2026 | HTTP 402 response triggers payment; cards to stablecoins12 |
| AP2 (Agent Payments Protocol) | Sept 16, 2025 | Three signed "Mandates" (Intent, Cart, Payment) as W3C Verifiable Credentials3 | |
| ACP (Agentic Commerce Protocol) | OpenAI + Stripe | Sept 29, 2025 | Open standard for agent-initiated checkout; Apache 2.04 |
| Agent Pay | Mastercard | April 29, 2025 | "Agentic Tokens" extending Mastercard's MDES tokenization service5 |
| Intelligent Commerce | Visa | April 30, 2025 | Opens Visa's network to agents with tokenized credentials, identity verification, and spending controls; Trusted Agent Protocol (Oct 2025) added merchant-side agent verification6 |
Two design camps are visible here. The card networks — Mastercard and Visa, which announced within a day of each other in late April 2025 — extend existing card tokenization and identity systems to agents, keeping transactions on the rails they already control.56 The open protocols — x402, AP2, and ACP — try to define a neutral layer that any payment method can plug into.
Google's AP2 is the most structured of the open approaches. It represents every purchase as three cryptographically signed mandates — an Intent Mandate (what the user asked for), a Cart Mandate (what the agent assembled), and a Payment Mandate (what gets charged) — each carried as a W3C Verifiable Credential.3 The result is an auditable chain from a user's instruction to the final charge, which matters when the buyer is a piece of software.
Crucially, these are not mutually exclusive. Mastercard and Visa are both premier members of the x402 Foundation, and Mastercard is folding its work into an "Agent Pay for Machines" offering that interoperates with x402.1 Google, whose AP2 competes conceptually with x402, is also a premier x402 member.1 The card giants have joined nearly everything — a hedge that says no one is sure yet which standard wins.
What This Means for Agent Builders
Strip away the branding and every scheme is solving the same engineering problem: how does a merchant trust that an agent is allowed to spend, and how does a user stay in control of an autonomous spender? Three primitives recur across the standards, and they are the ones worth designing around.
Verified agent identity. Visa verifies agent identity through its Trusted Agent Protocol; AP2 signs mandates with the user's or agent's key.36 A payment endpoint needs to know which agent is calling and on whose authority — the same identity problem the industry is tackling separately with schemes for giving agents a cryptographic identity.
Scoped authorization and mandates. AP2's Intent and Cart Mandates encode exactly what the agent was permitted to buy, so a merchant can reject a charge that drifts from the user's instruction.3 This is the payment analog of the OAuth scoping and enterprise-managed authorization that agent tool protocols are hardening in parallel.
Spending limits and human-in-the-loop. Every serious framework assumes per-transaction and cumulative caps plus mandatory human review for sensitive actions. If you are wiring an agent into checkout, codify these before go-live: who owns the agent, what it can buy, daily and per-purchase ceilings, and which actions always pause for approval.
The practical takeaway: treat the payment standard as a pluggable backend, not a foundational bet. Build your agent's spending logic — identity, scoped mandates, caps, approval gates — as a layer you control, and let the settlement protocol underneath be swappable. With five-plus standards live and the card networks hedging across all of them, betting the architecture on one winner is the riskiest move available.
Convergence or Fragmentation?
The optimistic read is convergence. Putting x402 under the Linux Foundation, with Visa, Mastercard, Google, and Stripe all at the table, mirrors how contested infrastructure standards usually settle — through a neutral body that rivals can all live with. The overlapping memberships suggest the industry wants interoperability, not a winner-take-all fight, echoing the broader push for agent interoperability playing out in regulation too.
The pessimistic read is that five standards with heavyweight backers is a recipe for years of fragmentation, where merchants integrate three schemes to reach every agent and none becomes dominant. Early agent-checkout rollouts have already shown that launching a protocol is easier than getting merchants to ship against it.
For now, x402 has the most credible neutral-governance story, AP2 has the cleanest audit model, and the card networks have the distribution. That is not a settled market — it is the opening act.
Bottom Line
The x402 Foundation launch marks the moment agent payments moved from experiment to infrastructure. But with x402, AP2, ACP, and two card-network schemes all live — and the biggest payment companies hedging across several at once — the standard that wins is far from decided. Build your agent's identity, spending caps, and approval gates as a layer you own, and keep the settlement protocol underneath swappable until the market picks a direction.
Footnotes
-
Linux Foundation, "Linux Foundation Announces Operational Launch of x402 Foundation to Standardize Internet-Native Payments for AI Agents and Applications," July 14, 2026. https://www.linuxfoundation.org/press/linux-foundation-announces-operational-launch-of-x402-foundation-to-standardize-internet-native-payments-for-ai-agents-and-applications ↩ ↩2 ↩3 ↩4 ↩5 ↩6 ↩7 ↩8 ↩9 ↩10 ↩11 ↩12 ↩13 ↩14 ↩15 ↩16 ↩17
-
Coinbase, "Introducing x402: a new standard for internet-native payments," May 2025. https://www.coinbase.com/developer-platform/discover/launches/x402 ↩ ↩2 ↩3 ↩4 ↩5
-
Google Cloud, "Announcing Agent Payments Protocol (AP2)," September 16, 2025. https://cloud.google.com/blog/products/ai-machine-learning/announcing-agents-to-payments-ap2-protocol ↩ ↩2 ↩3 ↩4 ↩5 ↩6 ↩7
-
Stripe, "Stripe powers Instant Checkout in ChatGPT and releases Agentic Commerce Protocol codeveloped with OpenAI," September 29, 2025. https://stripe.com/newsroom/news/stripe-openai-instant-checkout ↩ ↩2 ↩3
-
Mastercard, "Mastercard unveils Agent Pay, pioneering agentic payments technology to power commerce in the age of AI," April 29, 2025. https://www.mastercard.com/us/en/news-and-trends/press/2025/april/mastercard-unveils-agent-pay-pioneering-agentic-payments-technology-to-power-commerce-in-the-age-of-ai.html ↩ ↩2 ↩3 ↩4 ↩5
-
Visa, "Visa Intelligent Commerce" (announced April 30, 2025); agent identity via the Trusted Agent Protocol. https://www.visa.com/en-us/solutions/intelligent-commerce ↩ ↩2 ↩3 ↩4 ↩5 ↩6
-
McKinsey & Company, agentic commerce research (reports published October 2025 and January 2026), estimating $3–5 trillion in global agentic commerce by 2030. https://www.mckinsey.com/capabilities/quantumblack/our-insights/the-automation-curve-in-agentic-commerce ↩ ↩2


