v1
latestOpenAPI 3.0.22026-07-26123510445.2 KBConfiguration
List Supported Assets and Networks
Query list of supported currencies and networks in the system. Stablecoin Account API Publisher Disclaimer
get/v1/ramp/config/assets
Query parameters
asset_typestring
Filter by asset type: CRYPTO or FIAT
Headers
x-on-behalf-ofstring
Specifies the sub-account on whose behalf the request is made. This should be set to the account_id, which can be retrieved via the List Connected Accounts API. If omitted or empty, the request is executed using the master account. More information at Connected Accounts.
Response
Successfully retrieved supported assets
Example response
{
"code": 200,
"message": "Success",
"data": [
{
"asset": "USDT",
"asset_name": "Tether USD",
"asset_type": "CRYPTO",
"networks": [
{
"network": "ETH",
"network_name": "Ethereum (ERC20)",
"deposit_enabled": true,
"withdraw_enabled": true,
"min_deposit_amount": "10.00",
"min_withdraw_amount": "20.00",
"withdraw_precision": 2,
"estimated_arrival_time": 15
}
]
}
]
}