Agentspay

Explainer

Agentic Commerce Protocol (ACP): Agentic Checkout, Instant Checkout and Spend Controls

ACP is the open standard behind agentic checkout in ChatGPT. It tells a merchant how to sell to an AI agent. It says nothing about whether your agent should have made the purchase.

Last updated July 2026

Agent Payments Console

Pick an agent

Payment intent

intent:

Policy evaluation

Human approval required

This spend is over your approval threshold. Approve it to issue a scoped card, or deny it.

Scoped virtual card issued

Agentspay

single-use

Wallet budget

spent of

Audit trail

In short

The Agentic Commerce Protocol (ACP) is an open standard that defines how an AI agent completes a purchase with a merchant on a buyer behalf. The specification is maintained by OpenAI and Stripe, is published openly on GitHub at agenticcommerce.dev, and covers five building blocks: agentic checkout, cart and feed, delegate payment, delegate authentication, and orders and webhooks. It powers Instant Checkout inside ChatGPT, where a shopper buys without leaving the chat. ACP standardizes the sell side of agent commerce, so it handles how a transaction happens but not whether a given agent was allowed to spend that money.

What the Agentic Commerce Protocol actually standardizes

Before ACP, an AI agent that wanted to buy something had to be integrated store by store, because every merchant exposed a different catalog format and a different checkout. ACP replaces that with one interaction model between three parties: the buyer, the agent acting for them, and the business selling. The current specification, dated 2026-04-17, defines five composable building blocks. Agentic checkout creates, updates and completes a checkout session with cart contents, fulfillment options and payment. Cart and feed let an agent browse a product catalog and assemble an order before checkout. Delegate payment passes a scoped payment token between the buyer, the agent and the business through a payment handler. Delegate authentication uses OAuth 2.0 so an agent can act on a signed-in buyer behalf. Orders and webhooks carry lifecycle updates back: confirmation, shipping, delivery, refunds.

How agentic checkout works, step by step

A shopper asks an agent for something. The agent reads the merchant product feed, finds matching items and opens a checkout session against the merchant ACP endpoint. It adds line items, gets back real shipping options, taxes and totals, and shows the shopper a confirmation surface. When the shopper approves, a delegated payment token is created and handed to the merchant, who charges it through their own processor and their own merchant account. The order is created on the merchant side, and webhooks push status changes back to the agent so the shopper can ask about the package later in the same conversation. The merchant keeps the customer relationship, the payment processing and the fulfillment obligation. The agent is the storefront, not the seller of record.

Delegated payment tokens: the part that matters for risk

The most important design choice in ACP is that the agent never holds raw card data. Instead, a payment handler mints a delegated token that is scoped to a specific purchase and passed to the specific merchant completing it. If that token leaks it is close to useless, because it is bound to one transaction context rather than being a reusable credential. This is the same instinct behind scoped virtual cards, and it is why agentic checkout is meaningfully safer than the alternative people reach for first, which is pasting a corporate card number into an agent config. What the token does not do is decide whether the purchase is a good idea, whether it fits a budget, or whether the agent was manipulated into making it.

ACP, AP2 and x402 solve different layers

These three standards get compared as rivals and they are not. ACP covers checkout: the commercial conversation between an agent and a merchant. AP2, the Agent Payments Protocol led by Google, covers authorization, using cryptographically signed mandates to prove an agent had real user permission to buy within stated limits. x402, introduced by Coinbase, covers settlement, reviving the HTTP 402 status code so machines can pay inline for a resource, typically in stablecoins and typically for tiny amounts. A serious agent payments stack will touch more than one of them, which is why our breakdown of AP2 vs ACP vs x402 treats them as a layer cake rather than a bake-off. A fourth standard now sits above all three: the Universal Commerce Protocol, co-developed by Google and Shopify and announced in January 2026, which covers catalog search, cart, checkout, and order lifecycle in one merchant-hosted specification. UCP is the closest thing ACP has to a direct rival, and most US merchants will end up implementing both, because ACP is how you reach ChatGPT and UCP is how you reach AI Mode in Google Search and the Gemini app.

What a merchant has to implement to support ACP

Three pieces have to exist: a product feed the agent can read, checkout endpoints that follow the ACP specification, and a payment integration that accepts a delegated token. How much work that is depends entirely on your stack. Shopify merchants enable a ChatGPT sales channel from the admin with no code. Stripe and PayPal both ship ACP server support, which covers a large share of US sellers. Everyone else implements the REST endpoints from the open specification on GitHub, or exposes the same capabilities as an MCP server, which the 2026-04-17 release added as an alternative to REST. The card networks are moving in too: both Visa Intelligent Commerce and Mastercard Agent Pay can route ACP-initiated payments with their own tokenized credentials. Instant Checkout in ChatGPT currently requires a US merchant and a US buyer, and OpenAI has publicly confirmed a 4 percent fee on completed Instant Checkout orders, charged to the merchant on top of normal processing costs. We broke the setup and the economics down in our guide to ChatGPT Instant Checkout for merchants, and the wider channel, catalog and fraud work in our readiness guide to agentic commerce for merchants.

The gap ACP leaves open: buy-side spend governance

ACP is written from the merchant point of view. It answers how do I let an agent buy from me. If you are the company whose agents are doing the buying, none of your questions are answered by it. Which agent is allowed to spend, up to what amount, with which counterparties, how often, and who signs off above a threshold are all buy-side decisions that live outside the protocol. That gap gets expensive fast, because an agent that retries a failed order, misreads a quantity, or gets steered by prompt injection will happily complete a perfectly protocol-compliant purchase you never wanted. It is the same problem whether the buyer is a shopping agent filling a cart or a procurement agent renewing a contract. Standards make the transaction possible. Policy makes it accountable.

How Agentspay governs ACP purchases

Agentspay is the rail-neutral control plane that sits in front of whatever standard moves the money. Every agent gets its own funded wallet with hard limits rather than access to a shared corporate card. Each intended purchase is checked against policy before a credential exists: per-transaction ceiling, budget over a window, merchant allowlist, velocity rules. Spend above your threshold pauses for a human approval instead of going through. What the agent receives is a scoped virtual card or a delegated credential valid for that one purchase, and every decision lands in an immutable audit trail tied to the agent, its human owner, the intent and the policy that allowed it. Adopt ACP for checkout, AP2 for mandates, x402 for machine settlement, and keep one place that never moves money without policy.

Whatever standard moves the money, Agentspay is the rail-neutral control plane that keeps it governed. See how it works and the control surfaces that enforce policy, approvals, and audit on every transaction.

Side by side

What each ACP building block covers

The five components in the 2026-04-17 specification, and the decision each one leaves to you.

Building block What it does What it does not decide
Agentic checkout Creates, updates and completes a checkout session with cart, fulfillment and totals. Whether this agent should be buying this item at all.
Cart and feed Exposes a merchant catalog so an agent can browse and build an order. Which merchants your agents are allowed to transact with.
Delegate payment Passes a scoped payment token from buyer to merchant via a payment handler. The spend limit, budget window or velocity cap behind that token.
Delegate authentication Uses OAuth 2.0 so an agent can act for a signed-in buyer. Whether a human needs to approve this specific amount.
Orders and webhooks Reports confirmation, shipping, delivery and refund events back to the agent. Attribution of the spend to an agent, owner and policy for audit.

Frequently asked

Questions people ask about the Agentic Commerce Protocol

What is the Agentic Commerce Protocol?

The Agentic Commerce Protocol is an open standard for how an AI agent buys from a business on a shopper behalf. It defines a shared interaction model covering product feeds, checkout sessions, delegated payment tokens, OAuth-based authentication and order webhooks, so an agent can transact with any compliant merchant without a custom per-store integration.

Who created the Agentic Commerce Protocol?

ACP was created by OpenAI and Stripe, with Meta also contributing to the open standard. The specification is maintained by OpenAI and Stripe and published openly, with the OpenAPI specs and JSON schemas on GitHub and documentation at agenticcommerce.dev. Anyone can implement it without a commercial agreement with either company.

Is the Agentic Commerce Protocol open source?

Yes. The specification, OpenAPI definitions and JSON schemas are published in a public GitHub repository under the agentic-commerce-protocol organization, and versioned by release date. The current release is 2026-04-17, which added cart, feed, orders, authentication and an MCP transport option. The protocol is free to implement.

What is the difference between ACP and MCP?

MCP, the Model Context Protocol, is a general standard for connecting a model to tools and data. ACP is specific to commerce: it defines the checkout, payment and order semantics an agent needs to complete a purchase. They are complementary, and since the 2026-04-17 release a merchant can expose ACP capabilities through an MCP server instead of REST endpoints.

Does ACP power Instant Checkout in ChatGPT?

Yes. Instant Checkout, the buy-in-chat experience OpenAI launched for US shoppers, runs on ACP. Etsy sellers went live first, with Shopify merchants rolling out after, and PayPal bringing additional small businesses through its own ACP server. OpenAI charges merchants a 4 percent fee on completed Instant Checkout orders, on top of normal payment processing.

Does ACP stop an AI agent from overspending?

No. ACP standardizes how a purchase is completed, not whether it should be. Spend limits, budget windows, merchant allowlists, velocity caps and human approval above a threshold are buy-side controls that sit outside the protocol. If your agents are the ones spending, you need a control plane enforcing policy before any payment credential is issued.

Keep reading

More explainers

Agentic payments

Agentic Payments

Agentic payments move money with no human at the checkout. The rails to do it all shipped during 2026. The part most teams have not solved is deciding, before the money moves, whether the agent was allowed to spend it.

Read

Agent payment platforms

AI Agent Payment Platforms

Five different kinds of product now call themselves an AI agent payment platform, and they solve five different problems. Picking the wrong category is the expensive mistake, not picking the wrong vendor inside a category.

Read

Universal Commerce Protocol

the Universal Commerce Protocol (UCP)

Google and Shopify shipped UCP as an open standard so an AI agent can check out at any merchant that supports it. Here is what the specification actually defines, where it is live for US buyers, and the one thing it deliberately leaves to you.

Read

MCP Payments

MCP Payments

MCP payments are how an AI agent discovers a payment tool and calls it to move money. The catch: the Model Context Protocol carries the tool call, not the spending decision, so nothing in the stack asks whether the purchase should have happened.

Read

Visa Intelligent Commerce vs Mastercard Agent Pay

Visa Intelligent Commerce vs Mastercard Agent Pay

Visa Intelligent Commerce and Mastercard Agent Pay are the two big card networks racing to let AI agents pay. They take different routes to the same idea, and neither one decides whether a given purchase should have happened.

Read

AP2 vs ACP vs x402

AP2 vs ACP vs x402

AP2, ACP, and x402 are the three standards shaping how AI agents pay. They solve different layers of the problem, and most real systems will touch more than one.

Read

Machine payments protocol

Machine payments protocol

As software starts paying software, machine payments protocols define how value moves without a human at the keyboard. The harder question is how to keep that spending governed.

Read

Know Your Agent (KYA)

Know Your Agent

KYA, or Know Your Agent, extends the idea of customer due diligence to autonomous software. When an agent spends, you need to know which agent, on whose authority, and under what limits.

Read

Keep agent spending governed

Add policy, hard limits, human approval, and an immutable audit trail across any protocol or rail. Start in the sandbox today.

Never moves money without policy