Get Tickers
API Description
Retrieves 24-hour ticker statistics for a specific trading pair. This endpoint provides comprehensive market data including price changes, volume, mark price, spot price, open interest, funding rate, and other key metrics for the last 24 hours.
HTTP Request
GET /v4/public/mm/tickersRequest Parameters
chainId
uint64
Yes
Chain ID (e.g., 143 for Monad mainnet)
symbol
string
Yes
Trading pair symbol (e.g., BTCUSDC)
Response Parameters
instrumentAddress
string
Contract address of the instrument
symbol
string
Trading pair symbol (e.g., BTCUSDC)
expiry
uint32
Expiry timestamp (4294967295 for perpetual)
lastPrice
string
Last traded price
priceChange24H
string
Price change in 24 hours (absolute value)
priceChangePercent24h
string
Price change percentage in 24 hours
openPrice24h
float32
Opening price 24 hours ago
highPrice24h
float32
Highest price in 24 hours
lowPrice24h
float32
Lowest price in 24 hours
volume24h
string
Trading volume in 24 hours (base asset)
quoteVolume24h
string
Trading volume in 24 hours (quote asset)
openTime24h
uint64
Opening time timestamp (Unix timestamp in seconds)
closeTime24h
uint64
Closing time timestamp (Unix timestamp in seconds)
markPrice
string
Mark price for the instrument
spotPrice
string
Spot price of the underlying asset
openInterest
string
Open interest amount
fundingRate
string
Current funding rate (1-hour funding rate)
timestamp
uint64
Data timestamp (Unix timestamp in seconds)
Request Example
Python (requests)
Note: This endpoint requires API authentication. See Quick Start Guide for signature generation details.
Response Example
Success Response
Error Response
Notes
This endpoint requires API authentication (see Quick Start Guide)
Required parameters:
chainId,symbolResponse format: Returns a single ticker object (not an array)
Price fields:
lastPrice,markPrice,spotPrice: String format for precisionopenPrice24h,highPrice24h,lowPrice24h: Float32 formatpriceChange24H: Absolute price change (string)priceChangePercent24h: Percentage change (string, e.g., "-1.24128469400164" means -1.24%)
Expiry: 4294967295 indicates a perpetual contract
Time fields: All timestamps are Unix timestamps in seconds (not milliseconds)
Volume fields:
volume24h: Base asset volume (may be negative in some cases)quoteVolume24h: Quote asset volume
Funding rate: Represents the 1-hour funding rate
Open interest: Current open interest amount
24-hour statistics: Based on the most recent 24-hour period
Rate limit: 120 requests per minute
Success response has
code: 0(not 200)
Last updated