AI agents settled more than $73 million across roughly 176 million on-chain transactions between May 2025 and April 2026, according to a Keyrock report co-published with Coinbase, Tempo, and Virtuals. Nearly all of that settled in USDC, at an average of $0.31 to $0.48 a payment. The volume is small next to traditional finance, but the pattern is clear: software now moves money on its own.
The part that gets missed is which step that pattern changes. Authorization, the permission to pay, is largely solved by mandates and protocols like Google AP2. Settlement, the step where money clears and the transfer becomes final, is where agent payments diverge most from human ones. Keyrock frames the stack the same way, with AP2 handling authorization while x402 and MPP handle settlement beneath it.
This guide explains what agentic settlement is, how instant and deferred settlement differ, which rails agents settle on, and how eight platforms compare on each.
Key Takeaways
- Settlement is a separate layer from authorization. A mandate grants permission to pay. Protocols like x402, MPP, and AEP2 are where the money actually settles.
- Agents settle almost entirely in stablecoins. USDC accounts for 98.6% of agent payments, which makes it both the default settlement asset and a single-issuer concentration risk.
- Most agent payments are too small for cards. Around 76% fall below the $0.30 card fee floor, so card rails lose money on them.
- Instant and deferred settlement solve different problems. Per-request settlement is simple. Batch settlement lowers on-chain overhead when one task triggers hundreds of payments.
- Stablecoin settlement is fast but irreversible. Once funds reach the payee they cannot be recalled, which moves the real work to before settlement and to reconciliation after.
- Multi-rail coverage matters. An agent that pays an API in USDC still needs card or fiat rails to reach merchants and human recipients.
What Is Agentic Settlement?
Agentic settlement is the final step of an AI agent payment, where funds move from payer to payee and the transfer becomes final, carried out autonomously at machine speed without a person approving each transfer.
It sits after authorization, the permission to pay, and after the payment is initiated. The distinction matters because each stage runs on different infrastructure, and settlement is the one where platforms still differ.
The three stages of an agent payment
- Quote. A service returns a price and terms.
- Authorize. The agent signs a payment mandate that grants permission within set limits.
- Settle. Funds move and the transfer becomes final, on a stablecoin, card, or fiat rail.
A travel agent booking a trip can run that loop a dozen times, settling small payments to data APIs, a flight service, and other agents, before the task is done.
How Is Agent Settlement Different From Human Payment Settlement?
Human payment settlement
- Clears in batch windows over hours or days
- Runs on card and bank networks built around a person at checkout
- Stays reversible through chargebacks
Agent settlement
- Clears in seconds, payment by payment
- Runs mostly on stablecoin rails, final once confirmed on-chain
- Carries no chargeback once funds reach the payee
That irreversibility is the trade for speed, and it moves the work to two places: validating intent and enforcing limits before settlement, then reconciling what cleared against what was metered after it. Both controls sit at distinct layers of the agent payment stack.
Instant vs Deferred (Batch) Settlement: Which Does an Agent Need?
Instant, per-request settlement
This is the model behind x402, the open HTTP-native payment standard. The agent requests a resource, receives a price, pays in USDC, and retries with proof of payment. Each payment settles on-chain as it happens. It is simple and final, but every settlement carries gas and coordination cost, which adds up when one task triggers hundreds of calls.
Deferred, batch settlement
This is the model behind FluxA's AEP2 protocol, which authorizes first and settles later. The agent authorizes a payment instantly with a signed mandate, the service is delivered, and settlement happens afterward. AEP2 batches many signed mandates into a single Groth16 proof and executes one on-chain transaction that pays multiple recipients at once. Proving once and paying many lowers the per-payment overhead.
The choice comes down to frequency:
- Instant settlement suits lower-frequency flows where simplicity matters most.
- Batch settlement suits very high frequency, where settling every fractional payment on its own would erode the margin.
What Rails Do AI Agents Settle On?
A rail is the network value moves and settles over. Agents use three.
Stablecoin rail
Worth separating from crypto settlement in general. Settling in a volatile asset like ETH means the dollar value can drift between authorization and settlement, while stablecoin settlement in USDC keeps a known dollar amount. That predictability is why 98.6% of agent payments settle in USDC rather than in other crypto.
Card rail
Many merchants still only accept cards. A single-use virtual card lets an agent settle on card rails for those merchants without exposing a real card number, with the card closing once the payment settles.
Fiat rail
This handles payouts to people and banks, plus issuer-level settlement. Visa now settles in stablecoins at a $7 billion annualized run rate and has partnered with Circle, while Bridge settles between fiat and stablecoins inside Stripe.
Multi-rail settlement
Multi-rail settlement is the layer that spans all three, so the payer and payee can each use the rail that fits while the layer reconciles across them. An agent working across agentic commerce often settles on more than one in a single task.
How Do the Top Agentic Settlement Platforms Compare?
The platforms below are ordered by where they sit in the settlement stack, from the foundational rail upward, not by preference. Keyrock describes the same market as a layered stack, with authorization and settlement handled by different players.
| Platform | Settlement rail | Settlement model | Custody |
|---|---|---|---|
| Circle | USDC, cross-chain | Native asset transfer (CCTP) | Non-custodial |
| Coinbase x402 | USDC | Per-request, batch in V2 | Non-custodial |
| Bridge by Stripe | Stablecoin and fiat | Fiat to stablecoin conversion | Custodial |
| FluxA | USDC and card | Authorize-first, ZK batch, credit | Non-custodial |
| Nevermined | USDC and credits | Metered, credits-based | Managed |
| Crossmint | 50+ chains | Full-stack orchestration | Configurable |
| Cobo | 80+ chains | MPC-signed, multi-chain | MPC self-custody |
| Skyfire | USDC | Identity-gated, prefunded | Managed |
1. Circle: The USDC Settlement Layer Most Platforms Sit On
Best for: Teams settling directly on the dominant stablecoin across chains. Settlement model: Native cross-chain stablecoin settlement.
Circle issues USDC, the asset most agent payments settle in. Its Cross-Chain Transfer Protocol moves USDC between chains natively, without wrapping or bridges, and its Gateway API exposes a single balance across chains. It is the foundation layer the platforms below usually settle on top of.
- CCTP for bridge-free cross-chain USDC settlement, no API key required
- Gateway API for one balance across EVM chains and Solana
- Sub-second transfers that other platforms build settlement workflows on
Circle gives you the rail, not the surrounding workflow. Spend controls, agent identity, and reconciliation sit with whatever layer you build on top.
2. Coinbase x402: The Open Settlement Standard
Best for: Developers settling per request on open, permissionless infrastructure. Settlement model: Per-request settlement, with batch redemption added in V2.
x402 is less a product than the standard much of the market settles on. The agent pays in USDC inside the HTTP request and the transfer settles on-chain in seconds. Governance now sits with the x402 Foundation under the Linux Foundation, alongside Circle, Google, Mastercard, Stripe, and Visa.
- HTTP 402 request-level settlement with no accounts or API keys
- Roughly 2-second finality on Layer 2s
- V2 adds wallet-based identity and EVM batch redemption
Because x402 is a protocol rather than a managed service, teams assemble wallets, identity, and settlement orchestration themselves or through a platform built on it.
3. Bridge by Stripe: Fiat to Stablecoin Settlement
Best for: Stripe-ecosystem teams settling between fiat and stablecoins. Settlement model: Stablecoin orchestration with fiat conversion.
Bridge, which Stripe acquired for $1.1 billion, settles between fiat and stablecoins and powers Stripe's stablecoin accounts. It custodies USDC and USDB and moves them across chains through a unified API.
- Fiat to stablecoin conversion at settlement
- Cross-chain stablecoin transfers via one API
- Stripe compliance inherited at the settlement layer
Bridge is custodial, which suits teams that want a managed bridge between card-era infrastructure and stablecoin rails rather than direct on-chain control.
4. FluxA: Authorize-First, Batched, Multi-Rail Settlement
Best for: High-frequency agents that settle in stablecoins and still need a card rail. Settlement model: Authorize-first deferred settlement, with ZK batch and credit options.
FluxA's AEP2 protocol settles in two phases. The agent authorizes a payment instantly with a signed mandate, and settlement happens later, often batched. A Groth16 proof verifies many mandates at once and pays multiple recipients in a single on-chain transaction. Its Settlement Processor also extends to credit-based and result-based settlement, and a single-use virtual card covers merchants that only accept cards.
- Authorize-to-pay then deferred settlement, no per-transaction confirmation
- ZK batch settlement that proves once and pays many
- Stablecoin and card rails under one mandate, settled non-custodially
As a newer entrant, FluxA's integration ecosystem is smaller than that of Circle or Stripe. Its strength is settling very high-frequency, multi-rail flows under one signed intent.
5. Nevermined: Metered, Credits-Based Settlement
Best for: AI service providers that settle from detailed usage metering. Settlement model: Credits-based settlement on signed metering.
Nevermined settles agent services from a metering core. Each usage record is cryptographically signed and written to an append-only log, and settlement runs off credits priced against that usage. It supports x402, AP2, MCP, and A2A, and charges a 1% transaction fee.
- Signed, append-only usage records for reconciliation
- Credits-based settlement with usage, outcome, and value pricing
- x402 facilitator coordinating across fiat, crypto, and credits
Nevermined is strongest on metered get-paid and audit. Teams whose main need is agent spend controls or a card rail will use less of what it offers.
6. Crossmint: Full-Stack Settlement With Compliance
Best for: Enterprises wanting wallets, compliance, and settlement from one vendor. Settlement model: Multi-chain orchestration across 50+ chains.
Crossmint bundles wallets, compliance, fiat ramps, and settlement orchestration across EVM, Solana, and Stellar. It is SOC 2 Type II certified and MiCA authorized, with customers including MoneyGram and Western Union.
- Settlement across 50+ chains from one API
- Built-in KYC, AML, and travel-rule compliance
- Agent wallets and card rails with x402 support
The trade-off for breadth is less low-level control than settling directly on a protocol or the Circle layer.
7. Cobo: MPC Self-Custody for High-Value Settlement
Best for: Institutions that need cryptographic-grade control over agent settlement. Settlement model: MPC-signed settlement across chains, usually via x402.
Cobo's Agentic Wallet settles through MPC signing rather than a single private key. Its Pact framework binds each agent task to an approved intent, plan, policy, and completion condition, enforced at the infrastructure level. It supports over 80 blockchains and 3,000 tokens, and settles on-chain through x402 or traditional rails.
- MPC self-custody, with an optional custodial mode for low-latency micro-payments
- Pact authorization enforced before any settlement
- Native x402 and AP2 support
Cobo is a custody and control layer more than a settlement protocol. Its strength is high-value security, which can be heavier than a pure high-frequency micropayment flow needs.
8. Skyfire: Identity-Gated Settlement
Best for: Agents settling for services where verified identity matters. Settlement model: Identity-gated USDC settlement from prefunded balances.
Skyfire is a payment network built around verified agent identity. Its KYAPay product and Know Your Agent framework give agents a credential a service checks before settling, and payment runs in USDC. Wallets are prefunded by the user, and the company is backed by Coinbase Ventures and a16z CSX.
- Verified agent identity tied to the KYA framework
- USDC settlement with developer-defined spend controls
- Prefunded balances that cap what an agent can settle
Skyfire's strength is identity and access. Teams that need batch settlement for very high frequency, or that monetize their own services, may need additional tooling.
How Is Agent Payment Settlement Reconciled and Audited?
Reconciliation matches what was charged against what actually settled, line by line. It matters more for agents than for human payments, because agents settle thousands of small transfers, and most settle on irreversible stablecoin rails where there is no chargeback to fall back on.
Tamper-proof metering
Reconciliation depends on a trustworthy record of usage. Tamper-proof metering signs each usage record when it is created and writes it to an append-only log, so a total cannot be edited after the fact without breaking the record. A developer, user, auditor, or another agent can then verify that usage matches what was billed and settled, without taking the platform's word for it.
Reconciling batched settlement
Batch settlement complicates reconciliation, because one on-chain transaction can pay many recipients at once. The settlement layer has to map each line in the batch back to the mandate and the metered usage that produced it. Platforms differ here: some lead with signed append-only logs, others enforce the match through a risk engine that checks each payment against the signed intent before it settles.
How Do You Choose a Settlement Approach?
The right settlement layer depends on the workload, not on a single best option.
- Settle on the base asset: Circle, for teams building directly on USDC across chains.
- Settle on the open standard: Coinbase x402, for per-request settlement on permissionless infrastructure.
- Bridge fiat and stablecoins: Bridge by Stripe, for the Stripe ecosystem.
- Settle high-frequency, multi-rail flows: FluxA, for authorize-first batch settlement across stablecoin and card under one intent.
- Settle from metering: Nevermined, for usage-metered monetization and audit.
- Settle with full compliance: Crossmint, for regulated, multi-chain coverage from one vendor.
- Settle high-value securely: Cobo, for MPC self-custody and institutional control.
- Settle behind verified identity: Skyfire, for agents paying services where identity gates access.
Most production stacks combine a few of these. An open standard like x402 and a settlement asset like USDC form the base, while a platform on top handles authorization, controls, and reconciliation.
Frequently Asked Questions
What is agentic settlement?
Agentic settlement is the final step of an AI agent payment, where funds move from payer to payee and the transfer becomes final. It is carried out autonomously at machine speed, often many times inside a single task, without a person approving each transfer.
How is settlement different from authorization in agent payments?
Authorization is the permission to pay, usually granted through a signed mandate that sets limits. Settlement is where the money actually moves and the transfer becomes final. A payment can be authorized instantly and settled later, which is the basis of deferred and batch settlement.
What is settlement finality for AI agents?
Finality is the point at which a settled payment can no longer be reversed. On stablecoin rails, a transfer is final once confirmed on-chain, with no chargeback. That speed shifts the burden to validating intent before settlement and reconciling after.
Do AI agents settle in stablecoins or in fiat?
Almost entirely in stablecoins today. USDC accounts for 98.6% of agent payments, because a stablecoin keeps a known dollar value at settlement. Fiat still matters for payouts to people and for card-only merchants, which is why multi-rail coverage is useful.
How is agent payment settlement reconciled?
By matching each metered usage event against the settlement that cleared it. Tamper-proof metering, where usage records are signed and append-only, lets any party verify that totals match per line item. Batched settlement needs each line mapped back to the mandate that authorized it.
Settling Agent Payments With FluxA
FluxA settles high-frequency agent payments under one signed intent, across stablecoin and card rails, with batch settlement for sub-cent volume. You can open a FluxA wallet to see how authorize-first settlement works in practice.