Bridge virtual accounts are permanent, reusable fiat deposit addresses that convert incoming fiat into crypto and deliver it to your specified destination (e.g. a wallet address).They support multiple currencies and provide customers with local deposit details like account numbers and routing codes. For example, a USD virtual account gives your customer a U.S. account and routing number for ACH or wire transfers.Supported Payment Rails
USD Virtual Accounts - U.S. bank account and routing numbers issued in your customer’s name.
SEPA Virtual IBAN - Euro-denominated IBANs for accepting SEPA payments.
Developers use virtual accounts to simplify global payments, custody stablecoins (e.g. USDB), and enable programmable flows. A common pattern: create a virtual account for a customer, route funds into a Bridge wallet, and earn yield.
Customers must be onboarded and KYC/KYB-approved before creating virtual accounts.
Use the Virtual Accounts API to provision permanent fiat deposit addresses for your customers. You define the source currency for the account and configure the destination to specify where Bridge should deliver the converted funds.Bridge handles the fiat-to-crypto conversion and sends the funds on-chain automatically.
Request
Copy
Ask AI
curl --location --request POST 'https://api.bridge.xyz/v0/customers/<customer_id>/virtual_accounts' \--header 'Content-Type: application/json' \--header 'Api-Key: <Api-Key>' \--header 'Idempotency-Key: <Unique Idempotency Key>' \--data-raw '{ # The source object specifies a USD virtual account. "source": { "currency": "usd", }, # The destination object instructs Bridge where to send the USD deposits to. # Bridge will automatically handle converting and sending USD to the crypto destination. "destination": { "payment_rail": "ethereum", "currency": "usdc", "address": "0x3f5CE5FBFe3E9af3971dD833D26BA9b5C936f0bE" }, # You can specifcy an optional developer fee to monetize on transactions. "developer_fee_percent": "1.0" // 1%.}'
Once a Virtual Account is created, use the source_deposit_instructions object in the response to share the fiat deposit details with your customer. Funds sent to those details will be automatically converted and delivered to the crypto destination you specified.
Once a Virtual Account is created, your customer can start receiving fiat payments using the provided deposit instructions.Bridge automatically tracks the full lifecycle of each deposit—from the moment funds are received to the point they are delivered on-chain. Each event in this lifecycle is represented by a VirtualAccountEvent.
Below are the different types of virtual account events you may receive. You can identify the type of each event by checking the type field in the virtual account event object.
Type
Description
funds_received
Bridge received funds via ACH or wire.
payment_submitted
Bridge submitted the crypto payment.
payment_processed
Payment confirmed on-chain. Final state.
funds_scheduled
(ACH only) Incoming funds are in transit with estimated arrival date.
in_review
Transaction is under manual review.
refunded
Funds could not be delivered and were refunded to the sender.
account_update
Virtual Account was updated (e.g. new destination address).
deactivation
Virtual Account was deactivated.
reactivation
Virtual Account was reactivated.
microdeposit
Microdeposit verification detected. Funds are never onramped.
All transaction-triggered events include a deposit_id field. This id is unique for each transaction that Bridge receives through this Virtual Account and can be used to link separate events to the same source transaction.
{ "count": 10, // Total number of events returned "data": [ { "id": "3686be0e-468c-e3ad-1dcd-b4a41b8b7632", // Unique ID of the event "type": "payment_processed", // Event type: payment_processed means funds were delivered on chain "currency": "usd", // Event source currency "created_at": "2025-07-01T12:00:00Z", // Timestamp when the payment was processed. "customer_id": "84325ad9-1c8f-5794-3738-373b980d466f", "virtual_account_id": "4707fbec-f5a0-39d1-55d5-83fa18e1e49f", "amount": "1500.0", // Deposited amount "developer_fee_amount": "0.0", // Amount held for developer fees "exchange_fee_amount": "0.0", // Exchange fees "subtotal_amount": "1500.0", // Source amount after subtracting dev and exchange fees "gas_fee": "0.0", // On-chain gas fee charged when sending crypto "deposit_id": "ce898006-6347-f8b5-4e52-45185ba66e65", // ID of the deposit associated with this event "source": { "payment_rail": "ach_push", // Rail the funds arrived on (e.g., ach_push, wire) "description": "Mock ACH Description 00", // Free-text description from the bank "sender_name": "Sender 00", // Name of the sender provided by their bank "sender_bank_routing_number": "00000000", // Sender's bank routing number "trace_number": "000000000000000" // ACH trace number }, "destination_tx_hash": "0xabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcd0", // Blockchain tx hash // we include a receipt object to share transaction details with your customer "receipt": { "initial_amount": "1500.0", // Amount received before fees "developer_fee": "0.0", "exchange_fee": "0.0", "subtotal_amount": "1500.0", "url": "https://dashboard.bridge.xyz/transaction/mock_tx_0/receipt/mock_receipt_0", "gas_fee": "0.0", "final_amount": "1500.0", // final amount after subtracting any gas fees "destination_tx_hash": "0xabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcdabcd0" } }, { "id": "e8d43469-efcc-90e2-c64d-6c50c8e8912f", "type": "funds_received", // Event indicating fiat funds have arrived "currency": "usdc", "created_at": "2025-07-02T12:00:00Z", "customer_id": "5b6575f9-d3e4-79d1-ed7d-62c02ab14af3", "virtual_account_id": "9c132b3f-476e-5eaf-4e17-fed4b06dd93e", "amount": "1500.0", "developer_fee_amount": "0.0", "exchange_fee_amount": "0.0", "subtotal_amount": "1500.0", "gas_fee": "0.0", "deposit_id": "3f8dc835-c994-67f1-3221-77b1060ed2f7", "source": { "payment_rail": "ach_push", "description": "Mock ACH Description 01", "sender_name": "Sender 01", "sender_bank_routing_number": "00000001", "trace_number": "000000000000001" } } // ... additional records omitted for brevity ... ]}