Get Product Info
Get Product Info
Get information list of all tradable products
Rate limit: IP
Request frequency limit: 5/1s
Request URL
GET /deepcoin/market/instruments
Request Parameters
| Field Name | Required | Type | Description |
|---|---|---|---|
| instType | true | string | Product type Spot: SPOTContract: SWAP |
| uly | false | string | Index symbol, only applicable to perpetual |
| instId | false | string | Product ID |
Response Parameters
| Field Name | Type | Description |
|---|---|---|
| instType | string | Product type |
| instId | string | Product ID |
| uly | string | Index symbol, only applicable to perpetual |
| baseCcy | string | Base currency, only applicable to spot |
| quoteCcy | string | Quote currency, only applicable to spot |
| ctVal | string | Contract value, only applicable to perpetual |
| ctValCcy | string | Contract value currency, only applicable to perpetual |
| listTime | string | Listing time, Unix timestamp in milliseconds |
| lever | string | Maximum leverage supported by the instId, not applicable to spot/options |
| tickSz | string | Order price precision |
| lotSz | string | Order size precision |
| minSz | string | Minimum order size |
| ctType | string | Contract type linear: Linear contract inverse: Inverse contract Only for perpetual |
| alias | string | Contract alias this_week: Current week next_week: Next week quarter: Quarter next_quarter: Next quarter Only for delivery |
| state | string | Product status live: Trading suspend: Suspended preopen: Pre-launch settlement: Funding fee settlement |
| maxLmtSz | string | Maximum order size for limit orders |
| maxMktSz | string | Maximum order size for market orders |
Response Example
{
"code": "0",
"msg": "",
"data": [
{
"instType": "SWAP",
"instId": "BTC-USDT-SWAP",
"uly": "",
"baseCcy": "BTC",
"quoteCcy": "USDT",
"ctVal": "0.001",
"ctValCcy": "",
"listTime": "0",
"lever": "125",
"tickSz": "0.1",
"lotSz": "1",
"minSz": "1",
"ctType": "",
"alias": "",
"state": "live",
"maxLmtSz": "200000",
"maxMktSz": "200000"
}
]
}