Automations allow businesses to set up automatic onramps, offramps, or stablecoin swaps that are triggered upon receiving funds—without requiring a manual transfer request.
Common Automation Flows
- Fiat to Stablecoin (Onramp) - Automatically mints stablecoins when a fiat deposit is received.
- Stablecoin to Fiat (Offramp) - Automatically converts stablecoins to fiat and withdraws to a bank account. (Coming Q1 2026)
- Stablecoin to Stablecoin (Swap) - Automatically swaps one stablecoin for another. (Coming Q1 2026)
Onramp Automation with Virtual Accounts
Automations provide a unique account number and routing number for wire transfers and ACH deposits. When funds are received, stablecoins are automatically minted to a pre-defined wallet address. Businesses can use automations to direct unique pre-funding coordinates to their customers, which mint stablecoins in a customer’s wallet. Here’s what happens end-to-end when you use an onramp automation:- Create the automation
You definesource.value_typeasUSDand set adestinationwallet and stablecoin (e.g.,SBConsolana) via the API or Dashboard. - Virtual account is provisioned
Brale provisions a virtual account and populatessource.funding_instructionswith bank details (routing number, account number, bank name, beneficiary). - Customer sends funds
You share those bank details with your customer. They send a wire or ACH to the virtual account - no additional API call is required. - Stablecoins are minted automatically
When funds arrive, Brale automatically creates aTransfer(USD → stablecoin), mints the stablecoin, and sends it to thedestination.address_idconfigured on the automation. - Track activity via Transfers
You can reconcile and monitor all onramp activity by querying Transfers for the account:
GET /accounts/{account_id}/transfers.
Creating an Automation
Create an automation to receive USD and automatically mint SBC to a Solana wallet. POSThttps://api.brale.xyz/accounts/{account_id}/automations
Request
Response
source.funding_instructions object is populated with the virtual account’s bank details (routing number, account number, beneficiary name, etc.). These are the coordinates you share with your customer to fund the automation.
Branded Automations
Branded Automations let you control the beneficiary name shown on funding instructions for a virtual account. With Branded Automations, you can control which business name appears on funding instructions by adding abrand object to the create request:
| Field | Where | Type | Description |
|---|---|---|---|
brand | Body | object | { "account_id": "<ACCOUNT_ID>" } — your own account or a managed account whose business name and address will appear as the beneficiary on wire and ACH funding instructions. |
Request
beneficiary_name in source.funding_instructions will reflect that account’s business name.
Listing Automations for a Customer
Retrieve all automations associated with a customer Account. GEThttps://api.brale.xyz/accounts/{account_id}/automations
Response
Retrieve an Automation
Retrieve a specific Automation. GEThttps://api.brale.xyz/accounts/{account_id}/automations/{automation_id}
Response