This guide implements the deposit step: the user moves fiat from their linked bank into their ClearBox wallet, where it arrives as USDC. It corresponds to the funding sequence your team works from, using the bank connection established in Link a bank with Quiltt.Documentation Index
Fetch the complete documentation index at: https://docs.clear-box.io/llms.txt
Use this file to discover all available pages before exploring further.
Flow at a glance
User initiates a deposit
The user taps “Deposit $100 via bank transfer.” The frontend notifies the ClearBox backend.
Create a transfer authorization
ClearBox creates a bank-transfer authorization and receives a secure processor token.
Fund the wallet
ClearBox passes the processor token and the destination wallet address to the funding endpoint, triggering the ACH transaction.
1. Initiate the deposit
When the user starts a deposit, your backend begins the funding flow for the amount requested.2. Create a bank-transfer authorization
ClearBox creates a transfer authorization from the linked bank connection and receives a secure, single-use processor token. The token authorizes the debit without exposing raw bank account numbers to downstream systems.3. Fund the wallet
Pass the processor token together with the destination wallet address. This triggers the ACH transaction and credits the wallet once settled.4. Notify the user
Show the user a processing state. The deposit clears asynchronously; subscribe to thedeposit.settled webhook to update the balance when funds arrive.
ACH deposits settle on bank timelines, not instantly. The wallet’s spendable balance reflects settled funds. For instant spend at the point of sale, see how the mirror ledger authorizes against available balance.
Next: Issue a card
Derive a spendable virtual card from the funded wallet.
Reference
- Wallet balances — Balances
- Webhook events — Event types
The endpoints above are ClearBox program endpoints. Your program may use a named bank-transfer processor; replace field names and the base URL with your actual values.