Trade Config
Poloniex futures v1/v2 API will be officially offline on November 30, 2024. You can access the V3 API to provide you with a better trading experience.
Query Maximum Active Order Limit
You can query this endpoint to get the maximum active order and stop order quantity limit.
HTTP Request
GET https://futures-api.poloniex.com/api/v1/maxActiveOrders
Example
GET https://futures-api.poloniex.com/api/v1/maxActiveOrders
API Permission
This endpoint requires the General permission.
PARAMETERS
No
Example:
{
"code": "200000",
"data": {
"maxOrder": 300, //Maximum number of unsolved active orders
"maxStopOrder": 300 //Maximum number of profit stop and loss stop orders
}
}
Query Maximum Risk Limit
You can query this endpoint to get the maximum of risk limit.
HTTP Request
GET https://futures-api.poloniex.com/api/v1/maxRiskLimit
Example
GET https://futures-api.poloniex.com/api/v1/maxRiskLimit?symbol=BTCUSDTPERP
API Permission
This endpoint requires the General permission.
PARAMETERS
Param | Type | Description |
---|---|---|
symbol | String | [optional] Symbol of the contract |
Example:
{
"code": "200000",
"data": [
{ "maxLot":5000, //maximum risk limit
"symbol":"BTCUSDTPERP" //symbol of the contract
}]
}
Query User Fee Rate
You can query this endpoint to get the user fee rate.
HTTP Request
GET https://futures-api.poloniex.com/api/v1/userFeeRate
Example
GET https://futures-api.poloniex.com/api/v1/userFeeRate
API Permission
This endpoint requires the General permission.
PARAMETERS
No
Example:
{
"code": "200000",
"data": {
"makerFeeRate": 0.0001, // maker 0.01%
"takerFeeRate": 0.0004 // taker 0.04%
}
}