Instrument Info
Get the spec of trading symbols
tip
This is public endpoint, so it does not need authentication
HTTP Request
GET /cloud/contract/v3/public/copytrading/symbol/list
Request Parameters
None
Response Parameters
| Parameter | Type | Comments |
|---|---|---|
| list | array | Object |
| > symbol | string | symbol |
| > baseCurrency | string | Base currency |
| > quoteCurrency | string | Quote currency |
| > priceScale | string | Price scale (the number of decimal places to which a price can be submitted, although the final price may be rounded to conform to the tick_size) |
| > takerFee | string | Taker fee |
| > makerFee | string | Maker fee |
| > fundingInterval | string | Funding fee interval |
| > leverageFilter | Object | Leverage attributes |
| >> maxLeverage | string | Max leverage (indicates the max leverage, assuming the lowest risk limit setting) |
| >> minLeverage | string | Min leverage |
| > priceFilter | Object | Price attributes |
| >> minPrice | string | Min price |
| >> maxPrice | string | Max price |
| >> tickSize | string | Tick size |
| > lotSizeFilter | Object | Order attributes |
| >> qtyStep | string | Qty step |
| >> maxOrderQty | string | Max trading quantity |
| >> minOrderQty | string | Min trading quantity |
Request Example
curl https://openapi-testnet.zoomex.com/cloud/contract/v3/public/copytrading/symbol/list
Response Example
{
"retCode": 0,
"retMsg": "success",
"result": {
"list": [
{
"symbol": "BTCUSDT",
"baseCurrency": "BTC",
"quoteCurrency": "USDT",
"priceScale": "1",
"takerFee": "0.00060",
"makerFee": "0.00020",
"fundingInterval": "480",
"leverageFilter": {
"maxLeverage": "100",
"minLeverage": "1"
},
"priceFilter": {
"minPrice": "0.5",
"maxPrice": "999999.0",
"tickSize": "0.5"
},
"lotSizeFilter": {
"qtyStep": "0.001",
"maxOrderQty": "100.000",
"minOrderQty": "0.001"
}
}
]
}
}