查询系统支持的所有交易对及精度
描述
查询系统支持的所有交易对及精度
HTTP请求
GET /open/api/common/symbols
请求参数
| 参数名 | 参数类型 | 是否必须 | 描述 |
|---|---|---|---|
请求范例
http
curl 'https://openapi.100ex.com/open/api/common/symbols'返回参数
| 返回字段 | 字段类型 | 字段说明 |
|---|---|---|
| >symbol | String | 币对,例如: btcusdt |
| >count_coin | String | 计价货币 |
| >amount_precision | Integer | 数量精度 |
| >base_coin | String | 基准货币 |
| >limit_volume_min | String | 限价最小数量 |
| >price_precision | Integer | 价格精度 |
返回范例
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
}状态码
| 状态码 | 说明 |
|---|---|
| 0 | 成功 |
| 1 | 系统错误 |
