Light Mode
Get Call Auction Info
GET
/api/v1/market/callauctionData:::info[Description]
Get call auction data, This endpoint will return the following information for the specified symbol during the call auction phase: estimated transaction price, estimated transaction quantity, bid price range, and ask price range.
:::
Request
Query Params
symbol
string
required
symbol
Example:
BTC-USDT
Request samples
Responses
OK(200)
HTTP Code: 200
Content Type : JSONapplication/json
Data Schema
code
string
required
data
object
required
symbol
string
required
Symbol
Example:
BTC-USDT
estimatedPrice
string
required
Estimated price
estimatedSize
string
required
Estimated size
sellOrderRangeLowPrice
string
required
Sell order minimum price
sellOrderRangeHighPrice
string
required
Sell order maximum price
buyOrderRangeLowPrice
string
required
Buy order minimum price
buyOrderRangeHighPrice
string
required
Buy order maximum price
time
integer <int64>
required
Timestamp (ms)
Example
{
"code": "200000",
"data": {
"symbol": "BTC-USDT",
"estimatedPrice": "0.17",
"estimatedSize": "0.03715004",
"sellOrderRangeLowPrice": "1.788",
"sellOrderRangeHighPrice": "2.788",
"buyOrderRangeLowPrice": "1.788",
"buyOrderRangeHighPrice": "2.788",
"time": 1550653727731
}
}
Last modified: 12 days ago