Skip to content

Get Futures Position

Description

Get the positions of given futures name

HTTP Request

  • GET /fapi/v1/position/positions

Request Parameters

ParameterTypeRequiredDescription
futuresNameStringYesFutures name, e.g. "E-BTC-USDT"

Request Example

http
curl 'https://futuresopenapi.100ex.com/fapi/v1/position/positions?futuresName=E-BTC-USDT' \
	-H "X-CH-TS:1736156253259" \
	-H "X-CH-SIGN:*" \
	-H "X-CH-APIKEY:********" \
	-H "Content-Type: application/json"

Response Parameters

ParameterTypeDescription
> symbolStringTrading pair, e.g. "BTC-USDT"
> futuresNameStringFutures name, e.g. "E-BTC-USDT"
> leverageStringLeverage
> positionTypeStringPosition type, 1: Cross, 2: Isolated
> avgPriceStringAverage open price
> positionSideStringPosition direction, BUY: long position, SELL: short position
> realizedAmountStringRealized profit and loss
> positionVolumeStringTotal amount of all positions
> holdAmountStringIsolated margin, crossed mode is 0
> openPriceStringOpen price
> canCloseVolumeStringCancellable quantity
> ctimeStringCreation timestamp, ms
> mtimeStringLast updated timestamp, ms

Response Example

json
{
    "code": "0",
    "msg": "成功",
    "data": [
        {
            "symbol": "BTC-USDT",
            "futuresName": "E-BTC-USDT",
            "leverage": "20",
            "positionType": "1",
            "positionSide": "BUY",
            "positionVolume": "26",
            "realizedAmount": "0",
            "holdAmount": "0",
            "avgPrice": "93173",
            "openPrice": "93173",
            "canCloseVolume": "26",
            "ctime": "1734682364000",
            "mtime": "1734682364000"
        }
    ],
    "succ": true
}