Get Market Tickers
Get Market Tickers
Get market tickers information
Rate limit: IP
Request frequency limit: 5/1s
Request URL
GET /deepcoin/market/tickers
Request Parameters
| Field Name | Required | Type | Description |
|---|---|---|---|
| instType | true | string | Product type Spot: SPOTContract: SWAP |
| uly | false | string | Index symbol, only applicable to perpetual |
Response Parameters
| Field Name | Type | Description |
|---|---|---|
| instType | string | Product type |
| instId | string | Product ID |
| last | string | Last traded price |
| lastSz | string | Last traded size |
| askPx | string | Best ask price |
| askSz | string | Best ask size |
| bidPx | string | Best bid price |
| bidSz | string | Best bid size |
| open24h | string | 24-hour opening price |
| high24h | string | 24-hour highest price |
| low24h | string | 24-hour lowest price |
| volCcy24h | string | 24-hour volume in quote currency |
| vol24h | string | 24-hour volume in base currency |
| sodUtc0 | string | Opening price at UTC 0 |
| sodUtc8 | string | Opening price at UTC+8 |
| ts | string | Ticker data generation time, Unix timestamp in milliseconds |
Response Example
{
"code": "0",
"msg": "",
"data": [
{
"instType": "SWAP",
"instId": "BTC-USD-SWAP",
"last": "96127.5",
"lastSz": "",
"askPx": "96127.8",
"askSz": "179208",
"bidPx": "96127.3",
"bidSz": "2951",
"open24h": "95596.6",
"high24h": "96531.5",
"low24h": "95247",
"volCcy24h": "55.814169",
"vol24h": "5350671",
"sodUtc0": "",
"sodUtc8": "",
"ts": "1739242026000"
}
]
}