Skip to main content

Get Execution List (2 years)

Query users' execution list, sort by execTime in descending order

tip

You may have multiple executions in a single order.

HTTP Request

GET /contract/v3/private/copytrading/execution/list

Request Parameters

ParameterRequiredTypeComments
symboltruestringSymbol name
orderIdfalsestringOrder ID. Return all records if not passed
orderLinkIdfalsestringUser customised order ID
startTimefalseintegerThe start timestamp (ms)
endTimefalseintegerThe end timestamp (ms)
execTypefalsestringExecution type
limitfalseintegerLimit for data size per page. [1, 100]. Default: 50
cursorfalsestringCursor. Use the nextPageCursor token from the response to retrieve the next page of the result set

Response Parameters

ParameterTypeComments
nextPageCursorstringCursor. Used to pagination
listarrayObject
> symbolstringSymbol name
> sidestringBuy,Sell
> orderIdstringOrder id
> orderLinkIdstringUser customised order id
> orderPricestringOrder price
> orderQtystringOrder qty
> orderTypestringMarket,Limit
> execIdstringTrade Id
> execPricestringExecution price
> execQtystringExecution qty
> execFeestringExecution fee
> execTypestringExecution type
> execValuestringExecution position value
> feeRatestringTrading fee rate
> lastLiquidityIndstringAddedLiquidity, RemovedLiquidity, LiquidityIndNA
> isMakerbooleanIs maker
> leavesQtystringRemaining qty waiting for execution
> closedSizestringClose size
> markPricestringMark price
> execTimestringExecution timestamp (ms)

Request Example

GET /contract/v3/private/copytrading/execution/list?symbol=XRPUSDT&execType=Funding HTTP/1.1
Host: api-testnet.bybit.com
X-BAPI-SIGN: XXXXXX
X-BAPI-API-KEY: XXXXXX
X-BAPI-TIMESTAMP: 1678788154878
X-BAPI-RECV-WINDOW: 5000

Response Example

{
"retCode": 0,
"retMsg": "success",
"result": {
"nextPageCursor": "0o+MpbbRsIrLhRXdulAiDPRZFkidzCCKmEOQR4TzFIYyq1tofpJ/bOX92Vn8uwRBSEUuSxC/9jnLZs7oFLgcMQ==",
"list": [
{
"symbol": "XRPUSDT",
"side": "Buy",
"orderId": "1678780800-XRPUSDT-1019213-Buy",
"orderLinkId": "",
"orderPrice": "0.0000",
"orderQty": "0",
"orderType": "UNKNOWN",
"execFee": "0.003679",
"execId": "73729a92-caf5-4911-8e85-5194dd2ee1c5",
"execPrice": "0.3679",
"execQty": "100",
"execType": "Funding",
"execValue": "36.79",
"feeRate": "0.0001",
"lastLiquidityInd": "LiquidityIndNA",
"isMaker": false,
"leavesQty": "0",
"closedSize": "0",
"markPrice": "0.3679",
"execTime": "1678780800000"
}
]
},
"retExtInfo": {},
"time": 1678788155282
}