Ticker
Get Trading Pair Ticker Information
Get Ticker information for a specified trading pair, including latest price, mark price, 24-hour statistics, etc.
HTTP Request
GET
/api/perp-market-api/ticker
Request Frequency Restriction:
- Recommended: no more than 3 times per second
Request Parameters
| Name | Type | Required | Description |
|---|---|---|---|
| symbol | string | Yes | Trading pair symbol, e.g., ETH-PERP |
Response Fields Description
| Name | Type | Description |
|---|---|---|
| symbol | string | Trading pair symbol |
| lastPrice | string | Latest price |
| markPrice | string | Mark price |
| bestAskPrice | string | Best ask price |
| bestBidPrice | string | Best bid price |
| high24h | string | 24-hour highest price |
| low24h | string | 24-hour lowest price |
| open24h | string | 24-hour opening price |
| amount24h | string | 24-hour trading volume |
| volume24h | string | 24-hour trading amount |
| bestAskAmount | string | Best ask amount |
| bestBidAmount | string | Best bid amount |
| timestamp | long | Timestamp (milliseconds) |
| change24h | string | 24-hour price change |
| rate24h | string | 24-hour price change rate |
| openPrice | string | Opening price |
| oraclePrice | string | Oracle price |
| fundingRate | string | Funding rate |
| openInterest | string | Open interest |
Response Example
{
"code": 200,
"message": "success",
"data": {
"symbol": "ETH-PERP",
"lastPrice": "2500.5",
"markPrice": "2500.3",
"bestAskPrice": "2500.6",
"bestBidPrice": "2500.4",
"high24h": "2550.0",
"low24h": "2450.0",
"open24h": "2480.0",
"amount24h": "1000000",
"volume24h": "2500000000",
"bestAskAmount": "10.5",
"bestBidAmount": "12.3",
"timestamp": 1700000000000,
"change24h": "20.5",
"rate24h": "0.0083",
"openPrice": "2480.0",
"oraclePrice": "2500.2",
"fundingRate": "0.0001",
"openInterest": "5000000"
}
}