Skip to main content
Version: Next

Price Precision

Get the price step configuration for a specified trading pair.

Interface Information

  • Method: GET
  • Path: /api/v1/stock/open-api/priceSteps

Request Parameters

ParameterTypeRequiredDescription
symbolstringYesTrading pair

Request Example

GET /api/v1/stock/open-api/priceSteps?symbol=XSM

Response Fields

FieldTypeDescription
codeintStatus code
msgstringStatus message
data.symbolstringTrading pair
data.stepsarrayPrice step array

Response Example

{
"code": 0,
"msg": "success",
"data": {
"symbol": "XSM",
"steps": [
"0.0001",
"0.001",
"0.01",
"0.1",
"1"
]
}
}