Skip to main content
Version: Next

Price Steps

Get price step configuration for futures trading pairs.

API Information

  • Method: GET
  • Path: /api/v1/futures/open-api/price-steps/{symbol}

Request Parameters

ParameterLocationTypeRequiredDescription
symbolpathstringYesFutures trading pair

Request Example

GET /api/v1/futures/open-api/price-steps/BTCUSDT

Response Fields

FieldTypeDescription
codeintStatus code, 200 indicates success
msgstringResponse message
data.symbolstringFutures trading pair
data.stepsarrayPrice steps array

Response Example

{
"code": 200,
"msg": "success",
"data": {
"symbol": "BTCUSDT",
"steps": [
"0.01",
"0.1",
"1",
"10",
"100"
]
}
}