Skip to main content

Get Isolated Current Orders

Rate limit: 10 req/sec/UID

Description

HTTP Request

  • GET /api/v2/margin/isolated/open-orders
Request Example
curl "https://api.bitget.com/api/v2/margin/isolated/open-orders?symbol=ETHUSDT&startTime=1695336324000"  -H "ACCESS-KEY:*******" \
-H "ACCESS-SIGN:*******" \
-H "ACCESS-PASSPHRASE:*****" \
-H "ACCESS-TIMESTAMP:1659076670000" \
-H "locale:en-US" \
-H "Content-Type: application/json"

Request Parameters

ParameterTypeRequiredDescription
symbolStringYesTrading pairs, BTCUSDT
orderIdStringNoOrder ID
clientOidStringNoClient customized ID
startTimeStringNoStart time, Unix millisecond timestamps
endTimeStringNoEnd time, Unix millisecond timestamps
limitStringNoNumber of queries
The default value is 100 entries and the maximum value is 500 entries.
Response Example
{
"code": "00000",
"msg": "success",
"requestTime": 1695623147774,
"data": {
"orderList": [
{
"symbol": "ETHUSDT",
"orderType": "limit",
"enterPointSource": "API",
"orderId": "121211212122",
"clientOid": "121211212122",
"loanType": "normal",
"price": "1410.5",
"side": "buy",
"status": "live",
"baseSize": "0.1",
"quoteSize": "141.05",
"priceAvg": "0",
"size": "0",
"amount": "0",
"force": "gtc",
"cTime": "1695623143333",
"uTime": "1695623143333"
}
],
"maxId": "121211212122",
"minId": "121211212122"
}
}

Response Parameters

ParameterTypeDescription
orderListListOrder list
> symbolStringTrading pair
> orderIdStringOrder no.
> clientOidStringClient customized ID
> sizeStringFilled quantity
> priceAvgStringFilled price
> amountStringFilled quantity
> forceStringOrder strategy
gtc: normal limit order, good till canceled
post_only: Post only
fok: Fill or kill
ioc: Immediate or cancel
> priceStringOrder price
> enterPointSourceStringOrder source
WEB: WEB client
IOS: IOS client
ANDROID: Andriod client
API: API Client
SYS: system, usually because burst
> statusStringOrder status
live: New order
partial_fill: Partially filled
filled: Fully filled
cancelled: The order is cancelled
reject: Rejected
> sideStringDirection
sell: Sell
buy: Buy
> baseSizeStringNumber in base coins
> quoteSizeStringNumber in quote currency
> orderTypeStringOrder type
limit
market
> cTimeStringCreation time
> uTimeStringUpdated time
> loanTypeStringMargin order model
normal: Normal order
autoLoan: auto-borrow order
autoRepay: auto-repay order
autoLoanAndRepay: auto-borrow and auto-repay order
maxIdStringMax ID of current search result
minIdStringMin ID of current search result, use: idLessThan=minId in the next query

How was your Reading Experience with us?