{
"symbol": "BTC-USDT",
"orderList": [
{
"clientOid": "3d07008668054da6b3cb12e432c2b13a",
"side": "buy",
"type": "limit",
"price": "50000",
"size": "0.0001"
},
{
"clientOid": "37245dbe6e134b5c97732bfb36cd4a9d",
"side": "buy",
"type": "limit",
"price": "49999",
"size": "0.0001"
}
]
}curl --location --request POST 'https://api.kucoin.com/api/v1/orders/multi' \
--header 'Content-Type: application/json' \
--data-raw '{
"symbol": "BTC-USDT",
"orderList": [
{
"clientOid": "3d07008668054da6b3cb12e432c2b13a",
"side": "buy",
"type": "limit",
"price": "50000",
"size": "0.0001"
},
{
"clientOid": "37245dbe6e134b5c97732bfb36cd4a9d",
"side": "buy",
"type": "limit",
"price": "49999",
"size": "0.0001"
}
]
}'{
"code": "200000",
"data": {
"data": [
{
"symbol": "BTC-USDT",
"type": "limit",
"side": "buy",
"price": "50000",
"size": "0.0001",
"funds": null,
"stp": "",
"stop": "",
"stopPrice": null,
"timeInForce": "GTC",
"cancelAfter": 0,
"postOnly": false,
"hidden": false,
"iceberge": false,
"iceberg": false,
"visibleSize": null,
"channel": "API",
"id": "674a97dfef434f0007efc431",
"status": "success",
"failMsg": null,
"clientOid": "3d07008668054da6b3cb12e432c2b13a"
},
{
"symbol": "BTC-USDT",
"type": "limit",
"side": "buy",
"price": "49999",
"size": "0.0001",
"funds": null,
"stp": "",
"stop": "",
"stopPrice": null,
"timeInForce": "GTC",
"cancelAfter": 0,
"postOnly": false,
"hidden": false,
"iceberge": false,
"iceberg": false,
"visibleSize": null,
"channel": "API",
"id": "674a97dffb378b00077b9c20",
"status": "fail",
"failMsg": "Balance insufficient!",
"clientOid": "37245dbe6e134b5c97732bfb36cd4a9d"
}
]
}
}