Last updated 2 months ago
Retrieve a list of supported trade pairs with precision details.
Successful response
"BTC-USD"
"BTC"
"USD"
"0.000016"
"1.00"
"6"
"2"
const response = await fetch('https://cams.aquanow.com/api/v1/instruments/pairs', { method: 'GET', headers: {}, }); const data = await response.json();
[ { "pair": "BTC-USD", "status": "ACTIVE", "baseSymbol": "BTC", "quoteSymbol": "USD", "minBaseOrderSize": "0.000016", "minQuoteOrderSize": "1.00", "baseQtyPrecision": "6", "quoteQtyPrecision": "2" } ]