Last updated 2 months ago
Retrieve a list of available assets with minimum withdrawal sizes.
Successful response
"BTC"
"0.0001"
const response = await fetch('https://cams.aquanow.com/api/v1/instruments/assets', { method: 'GET', headers: {}, }); const data = await response.json();
[ { "asset": "BTC", "minWithdrawSize": "0.0001", "networks": [ "Native" ] } ]