Get All Of The Trading Pair Information And Accuracy
Description
Get all of the trading pair Information and accuracy which system support
HTTP Request
GET /open/api/common/symbols
Request Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
Request Example
http
curl 'https://openapi.100ex.com/open/api/common/symbols'Response Parameters
| Parameter | Type | Description |
|---|---|---|
| >symbol | String | coin pair, example: btcusdt |
| >count_coin | String | quote coin |
| >amount_precision | Integer | amount precision |
| >base_coin | String | base coin |
| >limit_volume_min | String | the minimum volume of limit order |
| >price_precision | Integer | price precision |
Response Example
json
{
"code": "0",
"msg": "suc",
"data": [
{
"symbol": "btcusdt",
"count_coin": "USDT",
"amount_precision": 5,
"base_coin": "BTC",
"limit_volume_min": "0.00001",
"price_precision": 2
}
],
"message": null,
"traceId": null
}Status Code
| Code | Description |
|---|---|
| 0 | success |
| 1 | system error |
