✓ Claude can now call create_card, list_cards, get_card, freeze_card
Tool call — create_card
// Agent calls create_card to fund a new virtual Visacreate_card({
amount_usdc: 50, // fund with 50 USDC on Baselabel: "OpenAI API credits",
tier: "growth"// free | growth | enterprise
})
// Response (returned to your agent instantly)
{
card_id: "sc_card_7x9kQm",
pan: "4242 8888 1234 5678",
cvv: "•••",
exp: "03/27",
spend_limit: 50.00,
status: "active",
fee_breakdown: { issuance_fee: 0.00, rate: "0.25%" },
tx_hash: "0x8f2a...c41d"// verifiable on Basescan
}
✓ Card live — $50.00 USDC available · funded via Base L2 · 0.15% fee on growth tier
Tool call — agent makes a purchase
// Agent uses the card PAN to buy API credits at checkout// (standard browser fill — works on any Visa-accepting site)browser.fill({
card_number: "4242 8888 1234 5678",
expiry: "03/27",
cvv: "•••",
amount: "$18.00"
})
// Agent checks remaining balance via get_cardget_card({ card_id: "sc_card_7x9kQm" })
// → { balance: 32.00, status: "active", last_4: "5678" }// When done, unused balance auto-refunds to your walletfreeze_card({ card_id: "sc_card_7x9kQm" })
✓ Purchase complete · $18.00 spent · $32.00 remaining · auto-refund on close
The payment layer agents deserve
Agents are autonomous. Their money should be too. StableCard is building the crypto-native spending infrastructure for the agentic economy.