SPOT and FUTURES.tradeType to validate order input before placing orders. The order price must follow the tickSize increment, and order size or funds must satisfy the corresponding minimum and maximum limits.(Only applicable to spot), and futures-only fields are marked with (Only applicable to futures). Always read the example for the requested tradeType before mapping response fields.curl --location --request GET 'https://api.kucoin.com/api/ua/v2/market/instrument?symbol=BTC-USDT&tradeType=SPOT'{
"code": "200000",
"data": {
"tradeType": "SPOT",
"list": [
{
"symbol": "BTC-USDT",
"name": "BTC-USDT",
"baseCurrency": "BTC",
"quoteCurrency": "USDT",
"market": "Liquidity_handling_test",
"minBaseOrderSize": "0.0001",
"minQuoteOrderSize": "0.1",
"maxBaseOrderSize": "100000000",
"maxQuoteOrderSize": "1000000000",
"baseOrderStep": "0.000001",
"quoteOrderStep": "0.01",
"tickSize": "0.01",
"feeCurrency": "USDT",
"tradingStatus": "TradingEnabled",
"priceLimitRatio": "0.1",
"feeCategory": "classA",
"makerFeeCoefficient": "2.00",
"takerFeeCoefficient": "2.00",
"st": false,
"minFunds": "0.01",
"callauctionIsEnabled": false,
"callauctionPriceFloor": null,
"callauctionPriceCeiling": null,
"callauctionFirstStageStartTime": null,
"callauctionSecondStageStartTime": null,
"callauctionThirdStageStartTime": null,
"tradingStartTime": 1780369800000
}
]
}
}