Trade
Position List
HTTP Request
GET /v1/trade/position-list
NOTE
Don't include trailing slash
/
at the end of the endpoint. Doing so can result in a “not found” error.Request Parameters
Parameter | Required | Type | Comments |
---|---|---|---|
page | optional | integer | page number of the position |
limit | optional | integer | limit of count of the getting position |
INFO
The ack of position list request indicates that the request is successfully accepted.
Response Parameters
Parameter | Type | Comments |
---|---|---|
statusCode | number | 200 |
result | array | Object |
list | array | contain the response details |
> id | integer | id number of the position |
> coin | string | Values:
|
> side | string | Values: long , short |
> size | string | size of the position |
> averageEnteryPrice | string | average entry price of the position |
> leverage | string | leverage of the position |
> margin | string | margin of the position |
> unrealizedPnL | string | unrealized pnl of the position |
> liquidationPrice | string | estimated liquidation price of the position |
> marginMode | string | Values: Cross , Isolated |
> createdTime | string | creation date of the position |
> tradeType | string | Values: Market , Limit |
> tpPrice | string | take profit price of the position |
> slPrice | string | stop loss price of the position |
message | string | OK |