---
title: "Get stablecoin tokens supported for account."
method: GET
path: "/ledger/assets/{assetCode}/network-tokens"
tags: ["ledger-accounts"]
---

# Get stablecoin tokens supported for account.

`GET /ledger/assets/{assetCode}/network-tokens`

Get list of stablecoin tokens supported for account by asset code.
The asset code is the currency code of the main account e.g USD

## Path parameters

- `assetCode` string, required

## Response `200`

List of supported stablecoin tokens for the asset code

- AssetBlockchainTokens
  - `asset` string, required
  - `tokens` TokenDetails[], required — A list of funding tokens with details of their supported networks.
    - `symbol` string, required — Token symbol
    - `name` string, required — Token name.
    - `logoUrl` string, required — URL for token's logo.
    - `supportedNetworks` TokenNetwork[], required — A list of networks on which the token is supported
      - `code` string, required — human-readable identifier for the token on this network. Usually a combination of network code and asset symbol
      - `decimals` integer, required — The number of decimals used by this token on this network.
      - `contractAddress` string, required — Contract address of the token on the given network.
      - `minimumDeposit` number, required — Minimum amount allowed for deposits.
      - `depositAvailable` boolean — Indicates if deposits are currently available. Address request will fail if this is false.
      - `withdrawalAvailable` boolean — Indicates if withdrawals are currently available. Withdrawal request will fail if this is false.
      - `withdrawalFee` number — Transaction value. Must be positive.
      - `platformFeePercentage` number — Additional platform fee charged on withdrawal, as a fraction of the withdrawal amount (e.g. 0.001 = 0.1%), on top of withdrawalFee. Null when no platform fee applies.
      - `networkInfo` LedgerSvcBlockchainNetwork, required — Details of blockchain network
        - `id` string, required — Simple identifier to identify the network
        - `name` string, required — Descriptive name for network
        - `blockTime` integer, required — Average time to generate new blocks in seconds.
        - `confirmations` number, required — Minimum number of confirmations needed for a transaction to be confirmed. Total wait time for an asset can be computed as blockTime * confirmations.
        - `coinName` string, required — name of the network's native coin
        - `coinSymbol` string, required — symbol of the network's native coin
        - `supportsMemo` boolean — Indicates if the network has memo support.
        - `alias` string — The network alias
        - `addressExplorerUrl` string, url — Base URL path of an address on the blockchain explorer. Full URL can be obtained by appending the address to this.
        - `txExplorerUrl` string, url — Base URL Path of a transaction on the blockchain explorer. Full URL can be obtained by appending the TX hash to this URL.

## Other responses

- `400` — Request could not be validated
- `401` — Client is not authorized to make request
- `403` — Expected permission is not available.
- `default` — Internal Server Error

---

[API](https://skmtc.net/nestechops/apis/onboard-external-api-gateway.md) · [All operations](https://skmtc.net/nestechops/apis/onboard-external-api-gateway/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/nestechops/onboard-external-api-gateway/revisions/29661adc1ffc/schema)
