v2
OpenAPI 3.0.02026-07-311824171.4 MBMarket Data
Public
Retrieves summary information such as open interest, 24-hour volume, best bid/ask prices, last trade price, mark price, and other market statistics for a specific instrument.
This method provides a quick overview of current market activity and liquidity for a single instrument.
get/public/get_book_summary_by_instrument
Query parameters
instrument_namestring required
Unique instrument identifier
Example:BTC-PERPETUAL
Instrument name
Response
Success response
Example response
{
"result": [
{
"instrument_name": "BTC-PERPETUAL",
"high": 7022.89,
"low": 7022.89,
"base_currency": "ETH",
"quote_currency": "USD",
"volume": 223,
"bid_price": 7022.89,
"ask_price": 7022.89,
"mid_price": 7022.89,
"mark_price": 7022.89,
"last": 7022.89,
"open_interest": 0.5,
"creation_timestamp": 1536569522277,
"estimated_delivery_price": 11628.81,
"current_funding": 0.12344,
"underlying_index": "index_price",
"underlying_price": 6745.34,
"price_change": 10.23
}
]
}