Fund a card
Cards
Fund Card
Move USD from your company wallet onto a card so the cardholder can spend it.
POST
Fund a card
Overview
POST /cards/{id}/fund moves USD from your company’s USD wallet onto the specified card. The card balance increases immediately on success, and the cardholder can use the funds for online payments.
When to use it
- Top up a card before the cardholder makes a purchase.
- Move savings/payroll/per-diem funds onto an active card.
POST /cards/{id}/withdraw.
Prerequisites
- Card status must be
ACTIVE(notPENDING,FROZEN,SUSPENDED,TERMINATED, orFAILED). - The card must belong to your company.
- The company USD wallet must have enough balance to cover
amountplus any funding fees configured on your account.
Request
Headers
Path parameters
Body
Idempotency: This endpoint does not currently accept an idempotency key. To avoid double-funding on network retries, store the resulting transaction_id after the first call returns and check before retrying.
Response
200 — Success
Error responses
Webhooks fired
card.fund— emitted on success.transaction.funding.completed— emitted once the underlying transaction settles.
Code examples
cURL
Node.js (axios)
Python (requests)
Related
POST /cards/{id}/withdraw— move funds back to the wallet.GET /cards/{id}— verify the new balance.GET /cards/{id}/transactions— see this funding in the card’s history.