Skip to main content

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 NameRequiredTypeDescription
instTypetruestringProduct type
Spot: SPOT
Contract: SWAP
ulyfalsestringIndex symbol, only applicable to perpetual
instIdfalsestringProduct ID

Response Parameters

Field NameTypeDescription
instTypestringProduct type
instIdstringProduct ID
ulystringIndex symbol, only applicable to perpetual
baseCcystringBase currency, only applicable to spot
quoteCcystringQuote currency, only applicable to spot
ctValstringContract value, only applicable to perpetual
ctValCcystringContract value currency, only applicable to perpetual
listTimestringListing time, Unix timestamp in milliseconds
leverstringMaximum leverage supported by the instId, not applicable to spot/options
tickSzstringOrder price precision
lotSzstringOrder size precision
minSzstringMinimum order size
ctTypestringContract type
linear: Linear contract
inverse: Inverse contract
Only for perpetual
aliasstringContract alias
this_week: Current week
next_week: Next week
quarter: Quarter
next_quarter: Next quarter
Only for delivery
statestringProduct status
live: Trading
suspend: Suspended
preopen: Pre-launch
settlement: Funding fee settlement
maxLmtSzstringMaximum order size for limit orders
maxMktSzstringMaximum 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"
}
]
}