Funding Cards
Add funds to prepaid cards via crypto, linked wallet, or internal balance. Funds are available on the card immediately.
Funding methods
- Crypto funding — Send USDC (or supported stablecoin) to your ClawdSpend deposit address. Once confirmed, credit is applied to your account balance and can be allocated to cards.
- Wallet funding — Link a wallet and transfer from your balance to a specific card in one API call or from the dashboard.
- Internal balance — If you already have a positive balance (e.g. from prior crypto or fiat deposits), use the fund endpoint to move funds from your balance to a card.
Fund a card (API)
Use POST /cards/fund to add funds from your ClawdSpend balance to a card.
bash
curl -X POST https://api.clawdspend.com/v1/cards/fund \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"card_id": "card_72jdfk3",
"amount": 50,
"currency": "USD"
}'Response includes updated card balance and confirmation.
json
{
"card_id": "card_72jdfk3",
"amount_added": 50,
"currency": "USD",
"new_balance": 50
}