- Introduction
- Authentication
- Enums Definitions
- Terms Definitions
- SDK
- Rate Limit
- Change Log
- User Service
- REST
- Account Info
- Account & Funding
- Get Account Summary Info
- Get Apikey Info
- Get Account Type - Spot
- Get Account List - Spot
- Get Account Detail - Spot
- Get Account - Cross Margin
- Get Account - Isolated Margin
- Get Account - Futures
- Get Account Ledgers - Spot/Margin
- Get Account Ledgers - Trade_hf
- Get Account Ledgers - Margin_hf
- Get Account Ledgers - Futures
- Sub Account
- Sub Account API
- Deposit
- Withdrawals
- Transfer
- Trade Fee
- Account & Funding
- Spot Trading
- Market Data
- Get Announcements
- Get Currency
- Get All Currencies
- Get Symbol
- Get All Symbols
- Get Ticker
- Get All Tickers
- Get Trade History
- Get Klines
- Get Part OrderBook
- Get Full OrderBook
- Get Call Auction Part OrderBook
- Get Call Auction Info
- Get Fiat Price
- Get 24hr Stats
- Get Market List
- Get Client IP Address
- Get Server Time
- Get Service Status
- Orders
- Add OrderPOST
- Add Order SyncPOST
- Add Order TestPOST
- Batch Add OrdersPOST
- Batch Add Orders SyncPOST
- Cancel Order By OrderIdDELETE
- Cancel Order By OrderId SyncDELETE
- Cancel Order By ClientOidDELETE
- Cancel Order By ClientOid SyncDELETE
- Cancel Partial OrderDELETE
- Cancel All Orders By SymbolDELETE
- Cancel All OrdersDELETE
- Modify OrderPOST
- Get Order By OrderIdGET
- Get Order By ClientOidGET
- Get Symbols With Open OrderGET
- Get Open OrdersGET
- Get Open Orders By PageGET
- Get Closed OrdersGET
- Get Trade HistoryGET
- Get DCPGET
- Set DCPPOST
- Add Stop OrderPOST
- Cancel Stop Order By ClientOidDELETE
- Cancel Stop Order By OrderIdDELETE
- Batch Cancel Stop OrdersDELETE
- Get Stop Orders ListGET
- Get Stop Order By OrderIdGET
- Get Stop Order By ClientOidGET
- Add OCO OrderPOST
- Cancel OCO Order By OrderIdDELETE
- Cancel OCO Order By ClientOidDELETE
- Batch Cancel OCO OrderDELETE
- Get OCO Order By OrderIdGET
- Get OCO Order By ClientOidGET
- Get OCO Order Detail By OrderIdGET
- Get OCO Order ListGET
- Margin Trading
- Futures Trading
- Market Data
- Orders
- Add Order
- Add Order Test
- Batch Add Orders
- Add Take Profit And Stop Loss Order
- Cancel Order By OrderId
- Cancel Order By ClientOid
- Batch Cancel Orders
- Cancel All Orders
- Cancel All Stop orders
- Get Order By OrderId
- Get Order By ClientOid
- Get Order List
- Get Recent Closed Orders
- Get Stop Order List
- Get Open Order Value
- Get Recent Trade History
- Get Trade History
- Positions
- Funding Fees
- Copy Trading
- Earn
- VIP Lending
- Affiliate
- Broker
- Websocket API
- Error Code
- Abandoned Endpoints
- Introduction
- Account & Funding
- Get sub-account List - Summary Info (V1)
- Get sub-account List - Spot Balance (V1)
- Get Deposit Addresses (V2)
- Get Deposit Addresses - V1
- Sub-account Transfer
- Get Deposit History - Old
- Internal Transfer
- Get Futures Account Transfer Out Ledger
- Get Withdrawal History - Old
- Futures Account Transfer Out
- Futures Account Transfer In
- Add Deposit Address - V1
- Withdraw - V1
- Spot Trading
- Margin Trading
- Futures Trading
- Developing
Get Stop Order By OrderId
GET
https://api.kucoin.com/api/v1/stop-order/{orderId}
domain:Spot
api-channel:Private
api-permission:General
api-rate-limit-pool:Spot
sdk-service:Spot
sdk-sub-service:Order
sdk-method-name:getStopOrderByOrderId
api-rate-limit-weight:3
Description
Request
Path Params
orderId
string
required
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.kucoin.com/api/v1/stop-order/'
Responses
🟢200OK
application/json
Body
code
string
required
data
object
required
id
string
optional
symbol
string
optional
userId
string
optional
status
string
optional
type
enum<string>
optional
Allowed values:
limitmarket
side
string
optional
price
string
optional
size
string
optional
funds
string
optional
stp
string
optional
timeInForce
string
optional
cancelAfter
integer <int64>
optional
postOnly
boolean
optional
hidden
boolean
optional
iceberg
boolean
optional
visibleSize
string
optional
channel
string
optional
clientOid
string
optional
remark
string
optional
tags
string
optional
domainId
string
optional
tradeSource
string
optional
tradeType
string
optional
feeCurrency
string
optional
takerFeeRate
string
optional
makerFeeRate
string
optional
createdAt
integer <int64>
optional
stop
string
optional
stopTriggerTime
integer <int64>
optional
stopPrice
string
optional
orderTime
integer <int64>
optional
Example
{
"code": "200000",
"data": {
"id": "vs8hoo8q2ceshiue003b67c0",
"symbol": "KCS-USDT",
"userId": "60fe4956c43cbc0006562c2c",
"status": "NEW",
"type": "limit",
"side": "buy",
"price": "0.01000000000000000000",
"size": "0.01000000000000000000",
"funds": null,
"stp": null,
"timeInForce": "GTC",
"cancelAfter": -1,
"postOnly": false,
"hidden": false,
"iceberg": false,
"visibleSize": null,
"channel": "API",
"clientOid": "40e0eb9efe6311eb8e58acde48001122",
"remark": null,
"tags": null,
"orderTime": 1629098781127530200,
"domainId": "kucoin",
"tradeSource": "USER",
"tradeType": "TRADE",
"feeCurrency": "USDT",
"takerFeeRate": "0.00200000000000000000",
"makerFeeRate": "0.00200000000000000000",
"createdAt": 1629098781128,
"stop": "loss",
"stopTriggerTime": null,
"stopPrice": "10.00000000000000000000"
}
}
Modified at 2025-03-20 08:01:47