Get Mark Price
Get Mark Price
Get mark price for perpetual contracts.
Rate limit: IP
Request frequency limit: 5/1s
Request URL
GET /deepcoin/market/mark-price
Request Parameters
| Field Name | Required | Type | Description |
|---|---|---|---|
| instType | true | string | Product type Perpetual contract: SWAP |
| uly | false | string | Underlying, only applicable to perpetual contracts |
| instId | false | string | Product ID. If both instId and uly are provided, instId takes priority |
Response Parameters
| Field Name | Type | Description |
|---|---|---|
| instType | string | Product type |
| instId | string | Product ID |
| markPx | string | Mark price |
| ts | string | Data generation time, Unix timestamp in milliseconds |
Response Example
{
"code": "0",
"msg": "",
"data": [
{
"instType": "SWAP",
"instId": "BTC-USDT-SWAP",
"markPx": "96127.5",
"ts": "1739242026000"
}
]
}