v3

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

Get address for offramp account

Get address for offramp account, response should include the list of TokenAssetNetwork supported for the address.

get/ledger/offramp-accounts/{id}/funding-address

Path parameters

idstring required

Query parameters

networkstring

Response

Offramp account funding address

addressstring required

The deposit address for the offramp account.

memostring

Memo for networks that support memo.

Example response

{
  "address": "0x43e4715ae093a4c86b5ecddb52216c4f879e9672",
  "network": {
    "id": "ETH",
    "name": "Ethereum",
    "blockTime": 15,
    "confirmations": 8,
    "coinName": "Ether",
    "coinSymbol": "ETH",
    "alias": "BEP20",
    "addressExplorerUrl": "https://etherscan.io/address",
    "txExplorerUrl": "https://etherscan.io/tx"
  },
  "supportedTokens": [
    {
      "symbol": "USDC",
      "name": "USD Coin",
      "logoUrl": "https://etherscan.io/token/images/centre-usdc_28.png",
      "supportedNetworks": [
        {
          "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"
          }
        }
      ]
    }
  ]
}