Why AI Agents Need a Payment Platform, Not Just Card Issuing

TL;DR

Card issuing is the most visible primitive in agent payments — it's the part that produces a card number — but it's only one piece of the stack. Building a real agent product on issuing alone leaves you owning delegation logic, policy enforcement, fraud detection, ledger reconciliation, and MCP integration as separate problems.

What's the difference between an issuer and a platform?

An issuer gives you the ability to mint a card and authorize transactions on it. That's a primitive — necessary but not sufficient.

A platform owns the issuer's job AND:

The platform makes those pieces interoperate. The issuer leaves them as your problem.

What breaks when you only have issuing?

Pattern matching from teams that started issuing-only:

What does the platform provide that's hard to build?

Three things that look simple on a slide and aren't:

1. Sub-100ms policy evaluation in the auth path. Network auth timeouts are unforgiving. Building a policy engine that runs 15+ rule types in <100ms p99 — and stays there at 1,000 TPS — is a serious engineering investment.

2. Per-agent ledger with publisher-level reconciliation. Multi-tenant ledgers that handle thousands of agents per publisher, with full audit trail and per-merchant reconciliation, are the kind of thing teams underestimate by 6-12 months.

3. Agent-aware fraud. Modeling behavior characteristic of agents (bursty, machine-fast, repeat-buy, programmatic patterns) requires data scale most issuing-only stacks don't have.

When DOES issuing-only make sense?

Three cases:

Outside those cases, "I'll just stitch it together" usually means 6-12 months of unplanned work and a fragile production system.

What does a platform actually look like in practice?

Concretely:

That's the platform delta. See Why You Shouldn't DIY Agent Payments for the integration cost analysis.

FAQ

Is Stripe Issuing a platform or a primitive?

Primitive. It's a clean issuing API with developer ergonomics, but it doesn't own delegation, policy, fraud-for-agents, ledger across multiple agents, or MCP. See Stripe Issuing vs Shatale.

What about Lithic and Marqeta?

Same family — issuing-first. Lithic is API-first and lighter touch; Marqeta is enterprise-scale card platform. Both leave the rest of the agent stack to you. See Lithic vs Shatale and Marqeta vs Shatale.

What's the cost difference between platform and stitched stack?

Platform fees are usually 1.5-2× the bare issuing cost. The break-even with stitching is around 6 months of one engineer's time + the operational overhead of managing 4 vendors. Most teams hit that within a quarter.

Can a platform lock you in?

Mitigate by: (1) confirming your data is exportable in standard formats, (2) ensuring card portability across BINs (slower but possible), (3) keeping your delegation logic abstracted at the application layer.

Where's the line between "platform" and "kitchen sink"?

A platform owns the auth-path-critical primitives. A kitchen sink wraps everything including features that should stay on the customer side (e.g. end-user UX, business logic). A good agent payment platform stays on the auth-path side.

Related reading

External references


By Sergey S.. Last updated 2026-04-29.