Subaccounts
1.1 Create a subaccount
// ...
await restClient.getSubAccountService().createSubAccount({
alias: "subaccount1"
});1.2 Get subaccounts
const subAccounts = await restClient.getSubAccountService().getSubAccounts({
page: 1,
page_size: 10
});
console.log(subAccounts);
// [
// {
// "id": 1556,
// "alias": "subaccount1",
// "created_at": "2026-02-17T13:27:28"
// }
// ]1.3 Get list of supported banks
1.4 Get provinces
1.5 Add bank account
1.6 Get available networks
1.7 Get a USDT ERC20 wallet
1.8 Convert cryptocurrencies
1.8.1 Request quote
1.8.2 Check quote
1.8.3 Execute quote
1.9 Bank withdrawal notification
1.10 Move USDT balance to the main account
Last updated
Was this helpful?

