Sandbox
Simulate account funding
Simulate inbound funding for a sandbox funding-method account (vba_ for virtual bank accounts, including USD balance accounts; vwa_ for virtual wallets; pba_ for stablecoin balance accounts) using a requested rail.
post/v1/sandbox/accounts/{id}/fund-in
Path parameters
idstring required
Funding-method account id (vba_ for virtual bank, vwa_ for virtual wallet, pba_ for stablecoin balance)
Headers
X-API-Keystring
API key
Request body
Example request
{
"rail": "WIRE",
"amount": "1000.00",
"currency": "USD",
"network": "BASE",
"reference": "fund_in_123"
}Response
Sandbox fund-in simulated successfully
Example response
{
"accountId": "vba_123",
"amount": {
"value": "1000.00",
"currency": "USD"
},
"rail": "WIRE",
"transactionHash": "0x1234"
}Changes
No recorded changes to this endpoint across all 19 revisions of this API.