curl --request POST \
--url https://api.shuriken.trade/api/v2/perp/order \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"coin": "<string>",
"isBuy": true,
"walletId": "<string>",
"cloid": "<string>",
"grouping": "<string>",
"limitPx": "<string>",
"orderType": "<string>",
"reduceOnly": true,
"sizeUsd": "<string>",
"sl": {
"triggerPx": "<string>",
"isMarket": true,
"limitPx": "<string>"
},
"sz": "<string>",
"tp": {
"triggerPx": "<string>",
"isMarket": true,
"limitPx": "<string>"
}
}
'