Now accepting early access

Your AI Agent's
Secure Wallet

Issue single-use virtual cards for your AI agents. Merchant-locked, auto-expiring, and fully auditable. Stop sharing your card number with bots.

~/ terminal
$

AI agents can do everything —
except pay.

Every time your agent needs to make a purchase, you're stuck in a dangerous gap.

🔓

Exposed Card Numbers

Sharing your real card with an AI agent means one compromised API call could drain your account.

🖱️

Manual Checkout

Agents hit a wall at payment. You're copy-pasting card details into forms — defeating the point of automation.

🚫

No Existing Solution

Traditional virtual card providers weren't built for programmatic, agent-driven commerce.


Three steps. Zero friction.

From funding to checkout in under a second.

01

Fund Your Wallet

Connect a funding source — bank, card, or crypto. Your balance is held securely by our payment partner.

# Add funds via API
clawcard wallet fund \
  --amount 50.00 \
  --source bank_default
02

Issue a Card

Create a single-use virtual card scoped to a merchant, amount, and expiration. Your agent gets the details.

# Issue a locked card
clawcard create \
  --amount 25.00 \
  --merchant "amazon.com" \
  --expires 1h
03

Agent Pays. Done.

Your agent uses the card to complete checkout. After use (or expiry), the card self-destructs. Unused funds return.

# Card auto-expires
status: completed
charged: $24.37
refunded: $0.63

Built for agentic commerce

Every feature designed around the reality of AI agents spending money.

💳

Single-Use Cards

Every card is unique and can only be charged once. No reuse, no risk of recurring unauthorized charges.

🔒

Merchant Lock

Cards are locked to a specific merchant domain. Even if intercepted, they can't be used anywhere else.

⏱️

Auto-Expire

Set cards to expire in minutes, hours, or days. Unused cards self-destruct and return funds automatically.

👤

User Confirmation

Optional approval step before large purchases. Get notified and confirm or deny in real-time via webhook.

⌨️

CLI & API

Full REST API plus a developer CLI. Integrate into any agent framework — LangChain, AutoGPT, custom agents.

📊

Real-time Dashboard

Watch spend in real-time. See every card, every transaction, every agent. Export logs for audit or accounting.


Your money stays yours

Enterprise-grade security infrastructure you can trust and verify.

Stripe-Powered

Built on Stripe Issuing. Your funds are held by a regulated financial institution, not a startup wallet.

PCI DSS Compliant

Full PCI Level 1 compliance. Card numbers are tokenized and never stored on our servers in plaintext.

Open Source

Core agent SDK and card issuance logic are open source. Audit the code yourself on GitHub.


Simple, transparent pricing

Start free. Scale when you're ready.

Free
$0 / month

For individuals experimenting with AI agent payments.

  • 5 cards per month
  • $100 monthly spend limit
  • CLI access
  • Community support
Get Started
Enterprise
Custom

For organizations with complex compliance and volume needs.

  • Unlimited everything
  • Custom spend limits
  • Dedicated account manager
  • SLA & uptime guarantee
  • SOC 2 audit reports
Contact Us

Integrate in minutes

Issue cards from any language. Our API is RESTful, well-documented, and designed for machine-to-machine workflows.

Get API Access
# Create a single-use card
curl -X POST https://api.openclawcard.com/v1/cards \
  -H "Authorization: Bearer $CLAW_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "amount": 25.00,
    "currency": "usd",
    "merchant": "amazon.com",
    "expires_in": "1h",
    "single_use": true
  }'
// npm install @openclawcard/sdk
import { ClawCard } from '@openclawcard/sdk';

const claw = new ClawCard(process.env.CLAW_API_KEY);

const card = await claw.cards.create({
  amount: 25.00,
  currency: 'usd',
  merchant: 'amazon.com',
  expires_in: '1h',
  single_use: true,
});

console.log(card.number, card.cvc);
# pip install openclawcard
from openclawcard import ClawCard

claw = ClawCard(api_key=os.environ["CLAW_API_KEY"])

card = claw.cards.create(
    amount=25.00,
    currency="usd",
    merchant="amazon.com",
    expires_in="1h",
    single_use=True,
)

print(card.number, card.cvc)

Get on the waitlist

Be among the first to give your AI agents a secure wallet. We're onboarding in batches.


Frequently asked questions

How does ClawCard differ from a regular virtual card?
Traditional virtual cards are designed for humans. ClawCard is purpose-built for AI agents — cards are created and consumed via API, scoped to a single merchant, and auto-expire after use. There's no UI to interact with; it's pure programmatic commerce.
What happens if my agent doesn't use the card?
Unused cards self-destruct at their expiration time. Any allocated funds are returned to your wallet balance immediately. You're never charged for cards that aren't used.
Is this compatible with my AI framework?
Yes. ClawCard provides a REST API and SDKs for Python, Node.js, and Go. It integrates with LangChain, AutoGPT, CrewAI, and any custom agent framework that can make HTTP requests.
Where are funds held?
Funds are held by Stripe, a regulated financial services provider. ClawCard never holds your money directly — we issue cards through Stripe Issuing and all funds remain in Stripe's regulated custody.
Can I set spending limits per agent?
Absolutely. You can set per-card limits, per-agent daily/monthly limits, and global account limits. The Pro plan includes a real-time dashboard to monitor all agent spending.
Is ClawCard open source?
The core agent SDK and card issuance client library are fully open source under the MIT license. The hosted platform (dashboard, webhooks, card management) is a managed service. You can self-host the SDK components if needed.