v3

latestOpenAPI 3.0.3UNLICENSED2026-07-2796235396.3 KB
ledger-sub-accounts

Create Funding Address for a sub-account using token network.

This operation allows the client to create an address for the supported token and network for a sub-account.

post/ledger/subaccounts/{subAccountIdRef}/funding-address

Path parameters

subAccountIdRefstring required

The unique onboard sub-account ID or reference

Response

Address created Successfully

addressstring required

The deposit address

memostring

Optional, for networks that support memo.

Example response

{
  "address": "0x43e4715ae093a4c86b5ecddb52216c4f879e9672",
  "tokenInfo": {
    "code": "ETH_USDC",
    "decimals": 6,
    "contractAddress": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48",
    "minimumDeposit": 5.25,
    "platformFeePercentage": 0.001,
    "networkInfo": {
      "id": "ETH",
      "name": "Ethereum",
      "blockTime": 15,
      "confirmations": 8,
      "coinName": "Ether",
      "coinSymbol": "ETH",
      "alias": "BEP20",
      "addressExplorerUrl": "https://etherscan.io/address",
      "txExplorerUrl": "https://etherscan.io/tx"
    }
  }
}