GET
/v1/assetsList supported assets
Returns every (asset, chain) pair that the platform currently supports, along with the metadata needed to integrate with each one (decimals, minimum confirmations, contract address, withdrawal minimums, whether deposits or withdrawals are currently enabled, etc.).
Use this endpoint as the source of truth for what your integration can accept. It reflects the platform's current configuration, not the static documentation.
Query parameters
When true, only returns pairs that currently accept deposits. When false, only returns pairs that do not.
Returns
A list of supported asset objects.
List supported assets
curl https://api.aeses.io/v1/assets \
-H "x-api-key: sk_live_..."Response
{
"object": "list",
"data": [
{
"object": "asset",
"asset": "USDT",
"asset_name": "Tether USD",
"asset_type": "stablecoin",
"chain": "ethereum",
"chain_name": "Ethereum",
"chain_kind": "evm",
"decimals": 6,
"contract_address": "0xdAC17F958D2ee523a2206206994597C13D831ec7",
"is_native_gas": false,
"min_confirmations": 12,
"explorer_url": "https://etherscan.io",
"deposit_enabled": true,
"withdrawal_enabled": true,
"min_withdrawal": "5.00000000"
}
],
"has_more": false,
"next_cursor": null
}