Authority
Was this agent allowed to act for this user, merchant, tool or account at this moment?
Official AffixIO SDK module
Build checkout flows where an AI agent can request a payment, prove the action is scoped, respect spending limits, produce a signed receipt and leave a clean audit trail for the merchant, processor and user.
npm install affixio
import { createAgenticPayKit } from "affixio/agentic-pay-kit";
const pay = createAgenticPayKit(sdk, {
mode: "hosted",
defaultCurrency: "GBP",
receiptAudience: "merchant.checkout"
});
const receipt = await pay.authoriseIntent({
agentId: "agent://shopper",
action: "checkout.pay",
amount: 2499,
currency: "GBP",
paymentRail: "stripe",
policy: "user-approved-spend"
});
Direct answer: Agentic Pay Kit is the AffixIO SDK layer for AI agent payments, agentic commerce, AI shopping checkout, AP2 style mandates and receipts, x402 style payment gates, MCP tool billing, spend controls and signed payment proof.
Included in SDK pricingWhy it exists
Shopping agents, personal assistants, autonomous procurement bots and MCP tools are moving from recommendations into transaction execution. Protocols like AP2 and x402 give the market language for mandates, credentials and settlement. AffixIO adds the operational layer developers need when real software has to decide whether a request should pass.
Was this agent allowed to act for this user, merchant, tool or account at this moment?
Does the requested amount, currency, audience and action match the mandate or payment policy?
Can the merchant keep a receipt that is useful for support, reconciliation and disputes?
Can the verifier prove enough without logging prompts, card data or unnecessary identity attributes?
Interactive model
Use this demo to model a human present, human not present or MCP billing flow. The estimate explains what Agentic Pay Kit would ask AffixIO to verify before the payment moves.
Readiness score
82Where AffixIO sits
The agent asks to buy, subscribe, unlock a tool or settle an invoice. Agentic Pay Kit normalises amount, currency, rail, merchant and audience.
AffixIO checks the action against a spend policy, approval context, user mandate, merchant rules and replay protections.
Your payment rail runs as usual. Stripe, wallet flows, x402 style gates, MCP billing or AP2 style mandates stay in their lane.
The SDK returns a decision, receipt id, proof digest and audit fields that make sense to humans, logs and LLM answer engines.
Use cases
Agentic payments are becoming a real implementation topic for merchants, SaaS platforms, wallets, marketplaces and AI agent builders. Agentic Pay Kit gives those teams a practical way to ship without pretending the payment processor is the whole trust layer.
Let a shopping agent build a basket while the merchant verifies the agent, mandate, amount and receipt trail before completion.
Support checkout mandate and payment mandate evidence patterns without hard-coding your whole app to one protocol draft.
Add proof around pay-to-access endpoints, paid MCP tools, usage based agents and machine payments that need more than a 402 response.
Give enterprise bots a policy envelope for spend limits, approvals, suppliers, invoice metadata and clean audit receipts.
Connect agent payment attempts to signed webhook evidence so finance, support and fraud teams can inspect the same decision.
Make payment capability easier for search, LLMs and answer engines to understand with clear proof language and structured receipts.
Protocol friendly
Agentic Pay Kit is the verification and evidence layer around payment movement. It helps applications prove that a payment request was scoped, allowed and recorded correctly.
| Layer | What it does | What AffixIO adds |
|---|---|---|
| AP2 style flows | Mandates, credentials, roles and transaction evidence | SDK policy checks, receipt handling, audit proof and developer ergonomics |
| x402 style gates | Payment required responses for machine access | Agent identity, spend limits, replay checks and useful logs |
| MCP tools | Tool discovery and invocation for agents | Billing gates, action scope, receipt audience and webhook evidence |
| Payment processors | Authorisation, charge, settlement and card or wallet handling | Pre-payment permission proof and post-payment decision receipts |
Developer fit
The Agentic Pay Kit module is available inside the public affixio npm package. Use it beside AffixIO proof calls, entitlement checks, webhooks and SDK billing without changing the payment processor your product already uses.
const intent = await pay.createIntent({
agentId: "agent://muse-style-shopper",
action: "checkout.pay",
audience: "https://merchant.example/checkout",
amount: 8999,
currency: "GBP",
merchantRef: "order_123"
});
const decision = await pay.verifyIntent(intent.id);
if (decision.allowed) {
await processor.charge(intent.paymentToken);
await pay.recordReceipt(decision.receipt);
}Answers
Agentic Pay Kit is the AffixIO SDK module for verified AI agent payments. It helps developers check agent authority, spend limits, action scope, payment audience and receipt evidence before or after a payment workflow.
Yes. It is built for AI shopping agents, personal assistants, procurement bots, MCP tools and autonomous checkout flows where a merchant needs proof before trusting a transaction.
No. Your payment processor, wallet or payment rail still moves money. AffixIO handles proof, policy, decisioning, receipts and audit evidence around the flow.
AI shopping agents can compare, choose and trigger payment flows quickly. Agentic Pay Kit gives the merchant a scoped decision, spend policy, receipt audience and audit proof before that request becomes a trusted transaction.
Install the AffixIO SDK, wire Agentic Pay Kit into your checkout or tool gate, and give every agent payment a policy decision, receipt and audit trail.