Agentspay

Explainer

Google AP2: The Agent Payments Protocol Explained, and What the AP2 Protocol Leaves to You

Most guides to Google AP2 still describe an Intent Mandate and a Cart Mandate, because most of them are rewrites of the September 2025 launch post. The specification moved. Here is what the Agent Payments Protocol actually defines today, and the one question it deliberately does not answer.

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

AP2, the Agent Payments Protocol, is an open standard from Google that lets an AI agent prove it had permission to make a specific purchase. It uses mandates, which are cryptographically signed verifiable credentials that travel with the transaction so the merchant, the processor and the network can each check them. Announced on September 16, 2025 with more than 60 partners, AP2 was donated to the FIDO Alliance on April 28, 2026 alongside version 0.2. That version defines a Checkout Mandate authorizing the order and a Payment Mandate authorizing the payment, each in an open variant carrying constraints and a closed variant naming specifics, cryptographically bound so a closed mandate cannot exceed the open one it derives from. AP2 answers whether one purchase was authorized. It does not track cumulative spend across mandates, agents or rails, which is why companies deploying agents still need a spend policy above it.

What is AP2?

AP2, the Agent Payments Protocol, is an open standard that lets an AI agent prove it was authorized to make a specific purchase. It does that with mandates: cryptographically signed credentials that record what a person agreed to, signed on a surface the person actually saw, and passed along with the transaction so the merchant, the processor and the card network can each verify them independently. The problem it exists to solve is stated plainly in the spec: today’s payment systems assume "a human user directly interacting with a trusted interface", and "autonomous agents shatter this assumption". Once software is doing the buying, every party downstream faces the same four questions. Was this agent authorized? Is the request authentic? What happens when the agent gets it wrong? And who is accountable? AP2 is an attempt to answer those with evidence rather than trust.

Who created Google AP2, and when?

Google announced AP2 on September 16, 2025, alongside more than 60 payments and technology organizations. It is open source under Apache 2.0, with the specification at ap2-protocol.org and code samples, a Python SDK and demos in the google-agentic-commerce/AP2 repository on GitHub. The more important date for anyone evaluating it is April 28, 2026, when Google donated AP2 to the FIDO Alliance and published version 0.2 at the same time. Mastercard donated its AP2-compatible Verifiable Intent standard in the same announcement. Core specification work now happens in FIDO’s agentic authentication and payments technical working groups, which is Google’s way of saying the protocol is meant to outlive its author. That handover is the reason AP2 is worth taking seriously as a standard rather than as one vendor’s framework, and it is also why a lot of the AP2 material online is now out of date.

What are AP2 mandates?

This is where most AP2 explainers are wrong, and it is worth being precise. The September 2025 launch blog described two mandates: an Intent Mandate capturing what you asked for, and a Cart Mandate capturing your approval of a specific cart. Almost every article written about AP2 since then repeats that pairing, because almost every article is a rewrite of that blog post. The specification has moved on. As of version 0.2 the model is a Checkout Mandate, which authorizes the completion of a checkout, and a Payment Mandate, which authorizes the payment for that checkout. Each exists in an open and a closed variant, identified by a credential type claim: mandate.checkout.1 and mandate.checkout.open.1, mandate.payment.1 and mandate.payment.open.1. Both are verifiable digital credentials, meaning tamper-evident signed objects that chain together so anyone holding the set can reconstruct exactly who agreed to what. If you are reading a guide that still frames AP2 around intent and cart, it is describing the protocol as it looked at launch, not as it is specified today.

What is the difference between an open and a closed mandate?

A closed mandate is fully specified. A closed Checkout Mandate wraps a merchant-signed checkout as a JWT plus a hash of it, so the order is pinned to exactly those items at exactly that price. A closed Payment Mandate names the transaction, the payee, the amount and currency, and the payment instrument. Nothing is left to interpretation. An open mandate carries constraints instead of specifics: which merchants are acceptable, which line items qualify, what amount range is permitted, whether the authorization may recur. The open variant is what makes delegated buying possible. You sign the constraints while you are present, and later, when the conditions are met, a closed mandate is generated inside those constraints without you being there. The two are cryptographically bound, so a closed mandate cannot quietly exceed the open one it claims to derive from. That binding is the clever part of the design and the reason AP2 is more than a signed receipt.

How does the AP2 protocol work?

Six roles appear in the spec. The Shopping Agent discovers products, builds the checkout and executes the purchase. The Merchant owns the catalog and fulfills the order. The Merchant Payment Processor processes the payment and checks that the credential was authorized for this checkout. The Credential Provider verifies the agent may use a given payment credential and scopes it appropriately. The Trusted Surface is the interface trusted to obtain informed consent from the person before any user-signed mandate exists. The Network and Issuer provide the rails and issue the credential. With a human present the flow is short: the agent assembles a cart, the merchant signs the checkout, the agent builds both mandate contents and asks for approval, the Trusted Surface renders them and signs both with the user’s key, the Credential Provider verifies the Payment Mandate and returns a token, and the merchant and processor each verify the mandates and the hash binding them before money moves. Every party checks the evidence rather than taking the agent’s word for it.

How does AP2 handle a purchase when nobody is watching?

Version 0.2 added the human-not-present flow, which is the case most businesses actually care about. Up front, while the person is there, the Trusted Surface signs open Checkout and Payment Mandates that describe the boundaries of what may happen later, and the agent’s public key is recorded so only that agent can act on them. The person leaves. When a matching opportunity appears, the agent assembles a cart, picks the open mandates whose constraints the checkout satisfies, and signs the corresponding closed mandates with its own key. A selective-disclosure hash binds each closed mandate to the open one it came from, so the merchant and the processor can verify both that the user authorized the boundaries and that the agent stayed inside them. It is a genuinely good design for the problem it is scoped to. The limitation is the scope, and it is worth reading the next section before assuming this covers your risk.

Who are the AP2 partners?

Google published more than 60 collaborating organizations at announcement, and the list is unusually broad for a protocol that launched with no shipping product. It spans networks and issuers (Mastercard, American Express, JCB, UnionPay International), processors and acquirers (Adyen, Worldpay, Checkout.com, Payoneer, dLocal, EBANX), wallets and fintechs (PayPal, Revolut, Airwallex, Intuit), enterprise software (Salesforce, ServiceNow, Adobe, Dell), marketplaces (Etsy, Shopee), risk (Forter, Okta, 1Password), and crypto infrastructure (Coinbase, Mysten Labs, MetaMask, Lightspark, BVNK). Treat that list as directional rather than as a roster of live integrations. Endorsing a specification at launch and shipping it in production are different commitments, and in August 2026 the honest summary is that AP2 has strong institutional backing and a thin production footprint.

What is the difference between AP2 and UCP?

They are complementary layers, and the spec is explicit about which to reach for. The Universal Commerce Protocol orchestrates the broader purchase lifecycle and is what you implement for inline checkout on Google’s AI surfaces. AP2 is the narrower payment-authorization layer, and it is what you reach for when an agent buys autonomously, when two agents transact with each other, or when you want verifiable credentials on transactions happening outside Google’s surfaces. AP2 is described as an extension for A2A, MCP and UCP rather than a competitor to any of them. In practice a full stack can carry all of it: UCP or the Agentic Commerce Protocol to complete the checkout, AP2 to prove the buyer authorized it. We compare all three standards side by side, plus x402, in AP2 vs ACP vs x402.

Does AP2 work with x402 and stablecoins?

AP2 is deliberately payment-agnostic. The specification’s initial focus is on pull payment methods, meaning credit and debit cards, with e-wallets, push payments such as real-time bank transfers, and digital currencies on the roadmap. Google’s launch material described support ranging from cards to stablecoins and real-time bank transfers, and crypto partners were involved from day one, which is unusual for a protocol coming out of a payments incumbent. On x402 specifically, the two are complementary rather than competing: x402 is an HTTP-native settlement scheme for small, high-frequency machine payments, while AP2 is an authorization layer that can sit above whichever rail settles the money. An x402 extension for A2A exists separately and closer alignment is planned. The useful mental model is that x402 answers how value moves and AP2 answers who said it could.

Does AP2 limit how much an agent can spend?

Not in the way a finance team means it. An open Payment Mandate can carry an amount range and recurrence rules, and an open Checkout Mandate can restrict acceptable merchants and line items, so each authorization has a ceiling. What the protocol does not do is keep a running total. Nothing in AP2 tracks cumulative spend across several open mandates, across the fleet of agents your company runs, or across the rails your agents touch that never go anywhere near AP2. The spec is candid about where that responsibility lands: to prevent double spending, the Shopping Agent "MUST NOT create multiple overlapping Mandates until it receives an Action Receipt indicating an error". That is a correctness requirement placed on the exact component you were trying to constrain. It is the same structural gap you find in x402, where the seller caps one call and nothing tracks the total, and in scoped checkout tokens, which cap a single transaction. Twenty individually compliant purchases still add up to a number nobody approved.

What AP2 does not cover, and what you still have to build

AP2 is written around a shopper. The roles are a Shopping Agent, a Trusted Surface where a person consents, and a Credential Provider holding that person’s instrument. Map that onto a company running agents in procurement, infrastructure or ad buying and several things have no home. There is no notion of an organizational policy that says this agent may spend five thousand dollars a month across any merchant and anything above five hundred routes to a named approver. There is no cross-agent budget, no approval workflow for the exceptions, no single audit trail spanning card, stablecoin and invoice spend, and no answer for the agent that never touches AP2 at all because it is calling a metered API. Those are policy-plane concerns, and AP2 is a protocol, not a policy plane. It was never trying to be one. The mistake is assuming a signed mandate is a budget.

Should you implement AP2 today?

Adopt it if you are a merchant, processor or credential provider who will need to verify agent-initiated purchases, because the FIDO handover makes AP2 the most likely candidate for the authorization layer and building against a moving Google project is riskier than building against a FIDO working group. Watch it, rather than build on it, if you are a business deploying agents that buy things: as of August 2026 the production footprint is thin, most of your agents will be paying over ordinary card rails and metered APIs for a while yet, and AP2 support will arrive through your processor rather than through code you write. In either case do not wait on the protocol to answer the budget question, because it is not scoped to. Set per-agent limits, route exceptions to a human and record every decision at the layer that issues credentials, and AP2 becomes one more verifiable input to a control plane you already run.

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.

The current model

AP2 mandates as specified in version 0.2

The launch blog described Intent and Cart Mandates. The specification now defines Checkout and Payment Mandates, each with an open and a closed variant.

Mandate Type identifier Signed by What it carries
Closed Checkout Mandate mandate.checkout.1 User, on the Trusted Surface The merchant-signed checkout as a JWT, plus a hash pinning those exact items and that exact price
Open Checkout Mandate mandate.checkout.open.1 User, in advance Constraints: which merchants are allowed and which line items qualify
Closed Payment Mandate mandate.payment.1 User, or the agent when acting under an open mandate Transaction id, payee, amount and currency, payment instrument, optional execution date and risk signals
Open Payment Mandate mandate.payment.open.1 User, in advance Constraints: permitted amount range and recurrence rules for later use

Where it sits

AP2 next to the other agent commerce standards

These are layers rather than rivals. A production stack can reasonably carry three of them at once.

AP2 UCP ACP x402
Led by Google, donated to the FIDO Alliance Google OpenAI and Stripe Coinbase, now the x402 Foundation
Answers Was this agent authorized to buy? How does the whole purchase get orchestrated? How does an agent complete a merchant checkout? How does a machine pay for one request?
Core object Signed Checkout and Payment Mandates Capability profile and checkout session Checkout session HTTP 402 response and signed payment payload
Typical rail Cards first, others on the roadmap Existing merchant processor Existing merchant processor Stablecoins over HTTP
License Apache 2.0 Apache 2.0 Apache 2.0 Apache 2.0
Tracks a cumulative buyer budget No No No No

Honest scope

What AP2 proves, and what stays your job

AP2 is strong evidence about a single authorization. It is not a spend policy, and it was not designed to be.

Question Answered by AP2 Left to you
Did a person authorize this purchase? Yes, a signed mandate is the evidence
Did the agent stay inside what was authorized? Yes, the closed mandate is bound to the open one
Can the merchant and network verify it independently? Yes, each party verifies the credentials
How much have all my agents spent this month? Not tracked A cumulative budget across agents and rails
Does spend above a threshold need sign-off? Not modeled A policy engine and an approval workflow
What about agents paying over rails AP2 does not cover? Out of scope One audit trail across every rail
Who owns this agent, and can I revoke it? Partially, via credential scoping Per-agent identity and instant revocation

Frequently asked

Questions people ask about Google AP2

Is AP2 free to use?

Yes. AP2 is open source under the Apache 2.0 license, with the specification published at ap2-protocol.org and reference code, a Python SDK and sample scenarios in the google-agentic-commerce/AP2 repository on GitHub. There is no license fee and no requirement to use Google infrastructure. Since the April 2026 donation, core specification work is stewarded by the FIDO Alliance.

Does AP2 replace card networks or payment processors?

No. AP2 is an authorization and accountability layer that runs on top of existing payment infrastructure, not a replacement for it. The merchant still uses its processor, the card network still authorizes and settles, and the issuer still holds the relationship with the cardholder. What AP2 adds is verifiable evidence, carried alongside the transaction, that a real person authorized the agent to make it.

Is AP2 production ready in 2026?

The specification is stable enough to build against and now sits with the FIDO Alliance, but the public tooling is still oriented toward samples and demos, and SDKs and MCP servers are described as in development with payment service providers. Institutional backing is strong and the shipping footprint is thin. For most businesses, AP2 support will arrive through their payment provider rather than through code they write.

What is the difference between an AP2 mandate and a verifiable credential?

A mandate is a verifiable credential used for a specific purpose. Verifiable credentials are standardized, cryptographically signed data objects that are tamper-evident and hard to repudiate. AP2 defines particular credential types, the Checkout Mandate and the Payment Mandate, and chains them together so the full set reconstructs who authorized what, when, and within which limits.

Who is accountable if an AI agent buys the wrong thing under AP2?

AP2 is designed so accountability can be established from evidence rather than argued after the fact. If a user-signed mandate authorized the purchase, that is on the user. If the agent produced a closed mandate outside the constraints of the open mandate it derived from, verification fails and the mismatch is provable. Networks can then apply their existing dispute rules against a clear record instead of a screenshot.

Does AP2 work with agent-to-agent transactions?

Yes, and it is one of the cases the spec calls out. AP2 is positioned as an extension for the Agent2Agent protocol and the Model Context Protocol, so an agent can pass verifiable authorization to another agent or to a merchant endpoint. If you are working through agent identity for this, see our explainer on Know Your Agent.

What happened to the Intent Mandate and the Cart Mandate?

They were the model in Google’s September 2025 announcement and are still what most published articles describe. The specification has since restructured around a Checkout Mandate and a Payment Mandate, each with open and closed variants. If you are implementing against AP2, work from the current specification rather than from launch coverage, because the credential type identifiers and the fields differ.

Can AP2 stop an agent from going over budget?

Only per authorization. An open Payment Mandate can bound an amount range and a recurrence rule, but no part of the protocol keeps a running total across multiple mandates, multiple agents or rails outside AP2. The spec places the duty to avoid overlapping mandates on the shopping agent itself. A cumulative budget, an approval threshold and a single audit trail have to live in a control plane above the protocol.

Keep reading

More explainers

ServiceNow AI Control Tower

ServiceNow AI Control Tower

ServiceNow AI Control Tower is the most complete agent inventory and risk console a large US enterprise can buy, and it now reaches across AWS, Google Cloud and Azure. We read the schema ServiceNow ships to developers to answer the one question the rollout meeting always ends on: can it stop an agent from spending money? It cannot, and the reason is written into the data model.

Read

Gemini Enterprise

Gemini Enterprise

Google did something in August 2026 that the other agent platforms have not done: it shipped a hard monthly spend cap that genuinely stops usage instead of emailing you about it. That deserves credit, and it also moves the interesting question one step along. A cap that stops something is only as useful as the thing it is scoped to, so we went and measured what Google can actually point that cap at, in the API model Google publishes for anyone to read.

Read

Salesforce Agentforce

Salesforce Agentforce

Agentforce is the largest agent platform any US enterprise is likely to already own, and it moved to consumption billing, which means the meter now runs on what your agents do rather than on how many seats you bought. That raises a finance question the rollout deck rarely answers: when an Agentforce agent is loose in production, what actually stops it spending. We went and measured the answer in Salesforce own published object model rather than guessing at it.

Read

AWS AgentCore

AWS AgentCore

Amazon shipped the missing piece in August 2026. Bedrock AgentCore Payments went generally available, and it is a real payments product: an agent can now hold a wallet, meet an HTTP 402, pay, and carry on reasoning without a human in the loop. So the question a platform lead has to answer stopped being whether AWS gives agents money and became a narrower, more awkward one: how much of a spend policy did AWS actually ship? We went and measured it, property by property, in the API model AWS publishes.

Read

Microsoft Agent 365

Microsoft Agent 365

Microsoft shipped a control plane for AI agents, and it is a good one. It gives every agent an identity, a registry entry, an owner, a sponsor and a Conditional Access policy. Then somebody in finance asks the obvious follow-up question: fine, but what stops the agent from spending money? This page answers what Agent 365 costs, what it governs, and what we measured when we went looking for a dollar amount anywhere in Microsoft's agent governance surface.

Read

QuickBooks MCP Server

QuickBooks MCP server

Connecting an accounting system to an AI assistant is now a ten minute job. Deciding what that assistant is allowed to do once it is connected is the part nobody writes about, and it is the part your controller will ask about first. This page compares what the official QuickBooks, NetSuite and Xero MCP servers actually hand a model, measured rather than summarized from marketing pages.

Read

Payment MCP Servers

payment MCP servers

Every large payment company shipped an MCP server in the last eighteen months, and almost every write-up of them is a setup tutorial. The setup is the easy part. The question worth answering before you connect one to a production account is narrower and much less comfortable: what, exactly, can the model on the other end of that connection do to your money?

Read

PayPal Agentic Commerce

PayPal Agentic Commerce

PayPal made a bet that most merchants would rather not implement a commerce protocol at all. Where Stripe and OpenAI shipped a spec for you to build against, PayPal shipped two products that sit on top of the checkout you already have, and then bought a company to make the catalog half work. That choice is the whole story: it explains why Agent Ready needs almost no engineering from you, why there is nothing for an agent to discover about your store on the open web, and why the thing PayPal will not do for you is the thing that gets expensive later.

Read

Shopify Agentic Commerce

Shopify Agentic Commerce

Shopify switched agentic commerce on by default, so your store is probably already selling to AI assistants whether or not anyone on your team configured it. Instead of restating the announcement, we checked something you can check too: on September 2, 2026 we requested the machine-readable capability file that Shopify publishes for real storefronts, on fourteen well-known US brand domains, and read what it exposes to an agent. Eleven answered correctly. The three that did not share one trait, and it is quietly costing them agent traffic.

Read

Web Bot Auth

Web Bot Auth

Web Bot Auth is the reason your agent either gets served or gets throttled with the scrapers. Almost everything written about it repeats the same architecture diagram, so we did something different: on September 1, 2026 we fetched the published key directories of more than twenty major AI operators and infrastructure vendors to see who is genuinely signing their traffic. Four were. The results are in the first table.

Read

Tempo Blockchain

the Tempo blockchain

Tempo is the payments chain Stripe and Paradigm built, and it shipped with a protocol that lets software pay for things on its own. It settles machine payments in under a second. It has nothing at all to say about whether your agent should have paid.

Read

AI Agent Governance

AI agent governance

Every agentic AI governance framework published so far governs the same four things: identity, tools, data and prompts. Not one of them carries a budget. Here is what the real frameworks say, which guardrails actually bind at runtime, and what to do about the last mile none of them reach.

Read

A2A Protocol

A2A Protocol

Most explanations of the A2A protocol stop at the sentence that agents can now talk to each other. That was true in April 2025 and it is no longer the interesting part. A2A shipped version 1.0 in April 2026 under Linux Foundation governance, it runs in production inside Azure AI Foundry and Amazon Bedrock AgentCore, and the questions engineers actually get stuck on are narrower: what an Agent Card commits you to, when to reach for MCP instead, and what happens the first time one of your agents has to pay another one for the work. That last question has a specific answer, and it is not in the core spec.

Read

Mastercard Agent Pay

Mastercard Agent Pay

Nearly every article about Mastercard Agent Pay is a retelling of one press release from April 2025, the one where Mastercard said AI agents would be able to shop with Agentic Tokens and named Microsoft as the first platform. That was sixteen months ago, and four more things have shipped since. Reading only the launch coverage leaves you with roughly a quarter of the picture, and the missing three quarters are the parts that decide whether you can actually put this into production.

Read

Visa Intelligent Commerce

Visa Intelligent Commerce

Almost everything written about Visa Intelligent Commerce is a retelling of the April 2025 announcement, when Visa said AI agents would be able to pay with a Visa credential. Three more things have shipped since, including an open agent-identity protocol built with Cloudflare that most coverage does not mention at all. This page is the current version, checked against Visa’s own developer documentation and newsroom in August 2026.

Read

Stripe agentic commerce

Stripe agentic commerce

Most writing about Stripe and agentic commerce is still a retelling of the September 2025 launch week, when Stripe and OpenAI shipped Instant Checkout and published the Agentic Commerce Protocol together. Stripe has built a good deal more since then, and some of it points in a direction the launch coverage never anticipated. This page is the current version, checked against Stripe’s own documentation in August 2026.

Read

ChatGPT Instant Checkout

ChatGPT Instant Checkout

Almost every guide to ChatGPT Instant Checkout still reads like it was written the week it launched, walking merchants through how to apply and what the fee will be. OpenAI changed course in March 2026. Here is the accurate version: what Instant Checkout was, what the numbers actually looked like, what replaced it, and which parts of the stack are still very much alive.

Read

Human in the loop AI

Human in the Loop AI

Every guide to human in the loop AI describes the same shape: the agent pauses, a person decides, the agent continues. The shape is right. What almost none of them ask is a harder question, which is where the pause is enforced, because a pause written into the agent's own code is a pause the agent is trusted to honor.

Read

AI agent cost

AI Agent Cost

Every cost guide for AI agents answers the same two questions: what does it cost to build, and what does it cost to run. Both are answerable, and both are on somebody's invoice. The third question is the one that ends up in a variance report, because the agent also spends your money, and nobody sends you a bill for that.

Read

Agentic checkout

Agentic Checkout

Nearly every guide to agentic checkout is written for the merchant who wants to receive these orders. Far fewer are written for the company whose agents are placing them, which is odd, because agentic checkout quietly removes the one screen where spending used to get a second look.

Read

API monetization

API Monetization

Most guides to API monetization argue about which pricing model wins. The harder question in 2026 is who is calling. An API priced for a signed-up developer with a key behaves very differently when the caller is an agent that showed up once, wants one record, and has no account.

Read

x402 protocol

x402 Protocol

x402 took the one HTTP status code the web never used and turned it into a payment rail machines can drive. The protocol is elegant and genuinely small. The part it deliberately leaves to you is the budget.

Read

AI procurement agents

AI Procurement Agents

Every major procurement suite shipped agents during 2026. Almost none of them answer the question your controller will ask first, which is what happens when the agent is wrong about a purchase and the money has already moved.

Read

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

AI agent monetization

AI Agent Monetization

Every AI agent company is rewriting its price list. The models that survive are metered. The ones that quietly fail are the ones where nobody measured what a single task costs to serve.

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

Agentic Commerce Protocol

the Agentic Commerce Protocol

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.

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