AgentsPay

Explainer

Oracle AI Agent Studio and Oracle AI Agents: Oracle Agentic AI Spend Limits

Oracle AI Agent Studio is included with every Oracle Fusion Cloud subscription, and it now lets a finance team build agents that call any REST API or MCP server. We read the API specification Oracle publishes for those agents to answer the question a controller asks before switching one on: what stops an agent spending money? Inside Fusion, quite a lot. Outside Fusion, nothing in the agent model does.

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

Oracle AI Agent Studio is the design environment inside Oracle Fusion Cloud Applications for building, testing and publishing AI agents, included at no additional cost for Fusion ERP, HCM, SCM and CX customers since March 2025. Oracle's prebuilt finance agents keep a person in the loop and inherit Fusion approvals and Budgetary Control. Custom agents can also call external REST APIs and MCP servers. In Oracle's published agent API (release 26C, version 2026.08.27), 7 operations and 215 properties carry no amount, currency, budget or counterparty field. A per-agent spend limit outside Fusion documents is a separate control.

What Oracle AI Agent Studio is, and who is already using it

Oracle AI Agent Studio is where Oracle Fusion Cloud customers and partners create, extend, test and deploy AI agents and agent teams. Oracle announced it on 20 March 2025 at CloudWorld London, on top of the more than 50 agents it had already embedded in Fusion Applications, and made it available at no additional cost. On 15 October 2025 Oracle added the Fusion Applications AI Agent Marketplace for partner-built agents, and on 24 March 2026 it added an Agentic Applications Builder, multi-step orchestration "with rules that control how work moves between steps, built-in logic, and human oversight," and ROI reporting per agent.

That makes it the default agent platform for a very large installed base of US enterprises that already run finance, procurement and HR on Oracle Fusion Cloud ERP. Oracle says more than 63,000 certified experts have been trained on it. If your company runs Fusion, Agent Studio is already in your tenancy, and somebody on your team is probably building with it.

The question this page answers is narrow and practical. When an Oracle AI agent can reach money, which controls actually stop a bad payment, and where do they stop working? We went to Oracle's own API specification rather than the brochure, and we credit Oracle where its controls are real, which is more often than with most vendors in this series.

Oracle AI agents that touch money today

Oracle ships finance agents whose documented work runs right up to payment. The Payables Agent, enabled by default from release 26B, ingests invoices from email, portals, EDI and PDFs, extracts and matches them to purchase orders and receipts, and takes them, in Oracle's words, "from capture to payment readiness." The Payments Agent, in early adoption from 26A, evaluates dynamic discounting, virtual card and supply chain finance options, drafts offers to suppliers and automates payment scheduling and submission. The Quote to Purchase Requisition Agent turns emailed supplier quotes into requisitions.

Then there are the agents you build. Agent Studio gives a custom agent an External REST tool that can call any live API, and since release 26A an MCP tool that connects to external MCP servers "without building additional REST wrappers." That is the line that matters for finance. A custom agent with an MCP tool pointed at a payment MCP server such as Stripe's, or a REST tool pointed at a card issuer or an ad platform, can move money that never becomes a Fusion document.

Partner agents sit in between. The Marketplace launch named an Infosys invoice collection agent powered by Stripe that handles invoice payment processing and reminders. Each partner agent brings its own tools and its own reach into outside systems.

Where Oracle's controls are real, and we mean it

Oracle deserves more credit here than most platforms we have measured, and it would be misleading to say otherwise.

First, Oracle's own money agents keep a person in the decision. The 26A documentation for the Payments Agent says draft recommendations, offers and schedules "always require user review and confirmation before any action is taken," and that the assistants "operate within your existing security, approval, and segregation-of-duties framework and do not bypass access controls or validations." The Payables Agent routes exceptions to people who cancel, correct or release them. Neither is an autonomous payer.

Second, anything an agent creates as a Fusion document meets Fusion's controls. A requisition an agent drafts goes through your requisition approval rules. If you run Budgetary Control, it gets a funds check. The Procurement API models this in detail: a requisition carries BudgetaryControlEnabledFlag, FundsStatus, InsufficientFundsFlag and FundsOverrideApprover. That is an enforced money control, and it applies to agent-created documents the same way it applies to human ones.

Third, Agent Studio workflows can include checkpoints and approvals between steps, which Oracle has promoted since the 2025 launch. So the honest summary is that Oracle governs spend very well wherever spend takes the form of an Oracle document.

How we measured what the Oracle agent API can express

We use the same method on every vendor in this series: read the machine-readable model the vendor publishes, run two vocabulary passes over it, then run the same passes over a part of the same vendor's model that obviously handles money, so we know the method can see money when it is there. Oracle makes this easy, because it publishes a full OpenAPI file for every Fusion REST API on docs.oracle.com with no login. Everything below was downloaded and run on 21 September 2026.

The agent surface is in the REST API for Common Features in Oracle Fusion Cloud Applications, release 26C, spec version 2026.08.27 (4,455,301 bytes). It contains every operation under the Fusion AI orchestrator: the A2A agent card at /.well-known/agent.json, agent search, the JSON-RPC endpoint that handles tasks/send, message/send and tasks/get, message streaming, and the agent team invokeAsync and status calls. That is 7 operations. Following every schema they reference gives 39 schemas carrying 215 properties.

The controls are the Financials REST API (version 2026.08.27, 96.5 MB) and the Procurement REST API (version 2026.08.06, 77.8 MB) from the same release. The money pass looks for amount|currency|budget|spend|price|cost|payment|invoice|monetary|dollar|purchase|limit|funds. The scope pass looks for merchant|vendor|supplier|counterparty|allowlist|approval|threshold|daily|monthly|cumulative|aggregate|payee|ceiling|max.

The claim this supports is precise. It is about the agent contract Oracle publishes, not about what a customer could configure with custom fields or flexfields, and not about the Fusion documents an agent may create.

The finding: 215 agent properties and not one is an amount

Across all 215 properties in the Oracle agent API, the money pass matched one, and it is a false positive: CollectionIdentity.limit, the maximum number of records a list call returns. The scope pass matched zero. There is no budget on the agent card, no amount on a task, no currency on an invocation, no supplier or counterparty anywhere in the agent contract.

The closest thing to a control in the typed fields is invocationMode, an enum with exactly two values, ADMIN and USER, which sets whose privileges the run uses. That is an access control, and a sensible one. It cannot express "this agent may spend 5,000 dollars a month with these four suppliers and anything above 1,000 needs the AP manager."

The configuration objects tell the same story from the other side. workflowConfig, agentConfig, toolsConfig and llmConfig are all declared as untyped objects that accept any keys, and parameters on an agent request is free-form. So an amount can travel through an Oracle agent run as an opaque value, and nothing in the published contract types it, totals it or refuses it. The same is true of the A2A agent card Oracle exposes to outside agents: it advertises name, skills, capabilities and authentication schemes, and nothing about what the agent may spend.

The control worked, so the zero is real

A zero from a regex only means something if the same regex fires hard on money elsewhere in the same vendor's model. It does. In the Financials API, 9,466 of 94,736 properties matched the money pass, spread over 3,137 of 8,792 schemas. A single Payables invoice response matched 30 of its 101 fields, including InvoiceAmount, AmountPaid, InvoiceCurrency and ControlAmount. A payment response matched 30 of 88, including PaymentAmount and BankChargeAmount. In the Procurement API, 4,803 of 74,444 properties matched across 1,598 schemas.

That is roughly one property in ten in Financials and one in fifteen in Procurement, against one in 215 on the agent surface, and that one is pagination. Oracle models money in extraordinary depth wherever a document carries it. The agent contract is where it is absent, and on this evidence that is a scoping choice: agents act through documents and tools, and the money rules live on the documents.

Oracle calls its human buyers procurement agents, and they have no amount either

One trap for anyone searching the Oracle APIs: Oracle has used the phrase "procurement agent" for decades to mean a human buyer. The Procurement API has a /procurementAgents resource, and it has nothing to do with AI.

It is still revealing. A procurement agent record carries 41 fields, and its authority is expressed as 12 yes-or-no permission flags: ManageRequisitionsAllowedFlag, ManageOrdersAllowedFlag, ManageSuppliersAllowedFlag, AnalyzeSpendAllowedFlag and eight more. None is a dollar figure. Oracle bounds a buyer's money through approval rules and Budgetary Control on the documents the buyer touches, not on the buyer.

That design works for people because everything a buyer does in Fusion becomes a document. It works for an AI agent under exactly the same condition. The moment the agent acts through an External REST or MCP tool instead, there is no document, so the approval rule and the funds check never see the payment.

The gap in one sentence: spend that never becomes an Oracle document

Put the findings together and the exposure is specific. Oracle controls spend that becomes a requisition, a purchase order, an invoice or a payment process request. It does not control spend an agent causes somewhere else, because the agent contract has nowhere to hold a limit.

Concretely, these are outside Budgetary Control and outside your approval rules: a custom agent using an MCP tool to call a payment MCP server; a REST tool that buys ads, cloud capacity or data; a partner agent from the Marketplace that uses its own payment rail; an outside agent that reaches your published Oracle agent over A2A and triggers work with a cost; and an agent that pays a card, a subscription or a metered API through x402. None of those produce a Fusion document before the money moves.

Workflow checkpoints help only if someone built one into that specific workflow, and a checkpoint asks a person to approve a step, not an amount. It cannot aggregate what one agent spent across a month, and it cannot refuse the 40th small payment that pushes an agent past its budget.

Oracle AI Agent Studio pricing and AI Units

Oracle states in its own announcements that AI Agent Studio is available at no additional cost to Fusion Applications customers, and that its prebuilt agents are included with Fusion. That is the primary source and the part you can rely on.

Consumption is where cost appears. Partner and analyst write-ups describe Fusion AI usage as metered in AI Units: an included monthly allocation per Fusion subscription, reported as 20,000 AI Units a month that do not roll over, with Oracle's default open model consuming no units for standard actions and premium or bring-your-own models consuming them. Agentic Applications are reported to need a separate platform subscription for production. Those figures come from secondary sources, not an Oracle price list, so confirm them on your order form.

We break the finance side down line by line in Oracle Payables Agent cost and controls. For a business case, notice what the meter measures. AI Units price the model calls. They say nothing about what an agent pays to suppliers, which lands in accounts payable or on a card statement and never reaches the AI meter. The same split shows up at Salesforce, where Flex Credits meter actions, and at Google, where the consumption cap governs the model bill.

Where a spend policy layer fits next to Oracle

The clean split is simple. Oracle governs what an agent may do inside Fusion, and Fusion's approval rules and Budgetary Control govern the documents it creates. A spend policy layer governs what that same agent may pay through anything that is not a Fusion document, and it does not need to know that Oracle built the agent.

In practice that means giving each agent with an External REST, MCP or partner tool that can transact a per-agent spending limit that totals across a day, a week and a month; a merchant-locked virtual card so an agent allowed to renew one vendor cannot pay a different one; an approval threshold that holds a payment above an amount you choose for a named person; and an audit trail that records which agent paid whom under which rule, in dollars, ready to reconcile against your Oracle ledger.

The test is short. If your Oracle agents only read data, draft documents and hand them to Fusion workflows, Oracle's controls cover you and you can stop here. If any agent holds a tool that can pay, buy or commit money outside Fusion, you are governing access and trusting the amount to a prompt. Pick a plan and put a ceiling on the first agent in minutes.

How Oracle compares with the other agent platforms we measured

Seven vendors, seven published models, one pattern, and Oracle is the most careful of them. Microsoft Agent 365: 48 agent-governance types, 623 properties, zero money. Salesforce Agentforce: 178 money objects and 41 agent objects out of 1,757, with an intersection of zero. AWS AgentCore: one optional per-session USD amount that resets every session. Gemini Enterprise: a real hard cap scoped to a billing project, not an agent. ServiceNow AI Control Tower: 84 agent columns, zero money, and a dollar limit only on a human approver's job code.

Oracle is the seventh: 215 agent properties, no amount, and real money controls that apply only when the agent's action becomes an Oracle document. Every vendor governs identity, access and capability, and none of them lets you write down what a specific agent may spend with a specific counterparty. For the category view, see AI agent governance and the comparison of accounting and ERP MCP servers, which covers NetSuite, Oracle's other ERP.

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.

Timeline

Oracle AI Agent Studio and Oracle AI agents, from Oracle's own announcements

Dates from Oracle press releases and Fusion release readiness documentation.

Date What Oracle shipped What it does Money control in it
20 Mar 2025 Oracle AI Agent Studio, no additional cost Build, test and deploy agents and agent teams Checkpoints and approvals between steps
15 Oct 2025 Fusion Applications AI Agent Marketplace Partner-built agents, incl. an Infosys invoice collection agent powered by Stripe Per partner agent
Release 26A External MCP servers and External REST tool enhancements Custom agents call outside APIs and MCP servers None in the agent contract
Release 26A Payments Agent (early adoption) Payment options, supplier offers, payment scheduling Human confirmation required, existing approvals
24 Mar 2026 Agentic Applications Builder and orchestration Multi-agent workflows with rules and human oversight Workflow checkpoints, not amounts
Release 26B Payables Agent, enabled by default Invoice capture to payment readiness Fusion validations and exception holds

Measured

Oracle's published agent API, measured 21 September 2026

Public openapi.json files from docs.oracle.com, release 26C, downloaded without logging in.

Source scanned Size Money-vocabulary hits Reading
Fusion AI agent API (Common Features, v2026.08.27) 7 operations, 39 schemas, 215 properties 1, a pagination limit No amount, currency, budget or counterparty in the agent contract
Agent scope pass on the same 215 properties 215 properties 0 No supplier, threshold, daily or monthly field
Human buyer record (/procurementAgents) 41 fields 0 amounts; 12 permission flags Authority is capability flags, money lives on documents
CONTROL: Financials API (v2026.08.27) 8,792 schemas, 94,736 properties 9,466 in 3,137 schemas Invoice 30 of 101 fields, payment 30 of 88
CONTROL: Procurement API (v2026.08.06) 5,692 schemas, 74,444 properties 4,803 in 1,598 schemas Requisitions carry funds status and Budgetary Control flags

Coverage

Which Oracle agent spend is controlled, and which is not

An honest map. Oracle is strong wherever the action becomes a Fusion document.

How the agent spends Fusion approval rules Budgetary Control funds check Per-agent limit in the agent API
Drafts a requisition in Fusion Yes Yes, if enabled No field
Prepares an invoice for payment (Payables Agent) Yes, Payables validations and holds Where configured No field
Schedules a payment (Payments Agent) Yes, user confirmation required Where configured No field
Custom agent calls a payment MCP server No, no Fusion document No No field
Custom agent calls a REST API that buys (ads, cloud, data) No No No field
Partner Marketplace agent using its own payment rail Depends on the partner No No field
Outside agent triggers your agent over A2A No amount in the A2A agent card No No field

Side by side

What Oracle AI Agent Studio governs and what a spend policy layer adds

We do not compete with Oracle on any of the first four rows.

Control Oracle AI Agent Studio and Fusion A spend policy layer
Build, test and publish agents inside Fusion Yes, included at no additional cost Not its job
Role-based access for agent runs Yes, invocationMode ADMIN or USER plus Fusion roles Not its job
Approval and funds check on Fusion documents Yes, approval rules and Budgetary Control Not its job
Human confirmation on prebuilt payment agents Yes, required by Oracle Not its job
Hard cap on what one agent pays outside Fusion No field in the agent API Yes, per transaction, day, week and month
Counterparty rule per agent No, supplier rules are on documents Allow list, deny list, merchant-locked card
Approval above an amount for tool-driven payments Only if a workflow checkpoint was built Per agent, on every payment rail
Audit of which agent paid whom Logs and document history Payment-level, agent-attributed, in dollars

Frequently asked

Questions people ask about Oracle AI Agent Studio

What is Oracle AI Agent Studio?

Oracle AI Agent Studio is the environment inside Oracle Fusion Cloud Applications for creating, extending, testing and deploying AI agents and agent teams across ERP, HCM, SCM and CX. Oracle announced it on 20 March 2025 and added a partner agent marketplace in October 2025 and an Agentic Applications Builder with orchestration in March 2026.

Is Oracle AI Agent Studio free?

Oracle says AI Agent Studio is available at no additional cost to Oracle Fusion Cloud Applications customers, and its prebuilt agents are included with Fusion. Usage is metered separately: secondary sources describe an included monthly allocation of AI Units per subscription, with premium or bring-your-own models consuming units. Confirm the allocation on your own order form.

What are Oracle AI agents?

Oracle AI agents are agents embedded in Oracle Fusion Cloud Applications that carry out business tasks such as invoice processing, requisition creation, payment planning, HR requests and customer service. Oracle ships prebuilt agents, partners publish more in the AI Agent Marketplace, and customers build their own in AI Agent Studio.

What is the Oracle AI Agent Marketplace?

The Oracle Fusion Applications AI Agent Marketplace, launched on 15 October 2025, lets Fusion customers find and deploy validated partner-built agent templates directly inside Fusion. Launch partners included KPMG and Infosys, whose invoice collection agent powered by Stripe handles invoice payment processing and reminders. Oracle supports Marketplace agents the same way as its own.

Can Oracle AI agents make payments?

Oracle's own Payments Agent prepares payment options, supplier offers and payment schedules, but Oracle states its drafts always require user review and confirmation before any action is taken. Custom agents are different: with an External REST or MCP tool they can call outside payment APIs directly, and the Oracle agent API has no field to cap those amounts.

What does the Oracle Payables Agent do?

The Payables Agent, enabled by default from release 26B, ingests invoices from email, supplier portals, EDI, e-invoicing networks and PDFs, extracts and standardizes the data with Document IO, matches invoices to purchase orders and receipts, and flags exceptions for people to cancel, correct or release. It takes invoices to payment readiness rather than paying them itself.

Can Oracle AI Agent Studio connect to MCP servers?

Yes. From release 26A, AI Agent Studio has an MCP tool that connects agents to external MCP servers without building REST wrappers, alongside an External REST tool for any live API. That is what lets a custom Oracle agent reach systems such as payment MCP servers, and why spend controls outside Fusion documents matter.

Does Oracle AI Agent Studio support A2A?

Yes. Oracle's Common Features REST API publishes an A2A agent card at /.well-known/agent.json for each published workflow, an agent search endpoint, and a JSON-RPC endpoint supporting tasks/send, message/send and tasks/get, plus streaming. The agent card lists skills, capabilities and authentication schemes, with no field for what the agent may spend.

Can you set a spending limit on an Oracle AI agent?

Not in the agent contract Oracle publishes. In the release 26C agent API, 7 operations and 215 properties include no amount, currency, budget or counterparty field. Spend that becomes a Fusion requisition or invoice still meets your approval rules and Budgetary Control. Spend through External REST or MCP tools needs a separate per-agent limit.

Does Oracle Budgetary Control apply to AI agents?

It applies to the documents an agent creates in Fusion, the same way it applies to documents a person creates. A requisition drafted by an agent still gets a funds check if Budgetary Control is enabled, and the Procurement API exposes FundsStatus and InsufficientFundsFlag on requisitions. It does not see payments an agent makes outside Fusion.

What is a procurement agent in Oracle Fusion?

In Oracle Fusion Procurement, a procurement agent is a human buyer, not an AI agent. The /procurementAgents resource records a buyer's assignment through 12 permission flags such as ManageOrdersAllowedFlag and ManageSuppliersAllowedFlag, with no dollar field. Money limits for buyers come from approval rules and Budgetary Control on documents.

How much do Oracle AI agents cost?

Prebuilt Oracle AI agents and AI Agent Studio are included with Fusion Cloud subscriptions at no additional license cost, per Oracle. Model usage is metered in AI Units, with a reported monthly allocation that does not roll over. Agentic Applications and some partner agents are reported to carry extra charges. What agents spend with suppliers is a separate, unmetered cost.

Do I need a spend policy layer if I run Oracle Fusion?

Only if your agents can pay outside Fusion. If they read data, draft requisitions and hand invoices to Fusion workflows, Oracle approval rules and Budgetary Control cover you. If any agent holds an External REST, MCP or partner tool that can buy, pay or commit money, add a per-agent budget, counterparty rule and approval threshold.

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

Google AP2

Google AP2

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.

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