ledger-accounts
Get stablecoin tokens supported for account.
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
get/ledger/assets/{assetCode}/network-tokens
Path parameters
assetCodestring required
The assets code of a crypto
Response
List of supported stablecoin tokens for the asset code
Example response
{
"asset": "USD",
"tokens": [
{
"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"
}
}
]
}
]
}Changes
Changed in 1 of the 6 revisions of this API.3
- ○
the endpoint scheme security
HMACAuthwas added to the APIapi-security-added
- ○
the endpoint scheme security
authTokenwas removed from the APIapi-security-removed
- ○
added the optional property
tokens/items/supportedNetworks/items/platformFeePercentageto the response with the200statusresponse-optional-property-added
This revision also has 2 changes that name no endpoint, such as unreferenced schemas being removed. See the revision's changelog
- ○