Bitget APIBitget API
UTAClassic
Legacy Doc
  • Overview
  • API Documentation
  • WebSocket
  • Agent Hub
  • SDK
  • Changelog
Copied to clipboard
Websocket
Introduction
Futures
Spot
    Public
      Market ChannelCandlestick ChannelDepth ChannelAuction ChannelTrading Channel
    Private
Margin
Public

Auction Channel

Description

Get the product's Call Auction information. Frequency of data push: 100ms ~ 300ms

Code
{ "op": "subscribe", "args": [ { "instType": "SPOT", "channel": "auction", "instId": "BTCUSDT" } ] }

Request Parameters

ParameterTypeRequiredDescription
opStringYesOperation, subscribe unsubscribe
argsList<Object>YesList of channels to subscribe to
> instTypeStringYesProduct Line Type
> channelStringYesChannel name: auction
> instIdStringYesProduct id For example: ETHUSDT
Code
{ "event": "subscribe", "arg": { "instType": "SPOT", "channel": "auction", "instId": "BTCUSDT" } }

Response Parameters

ParameterTypeDescription
eventStringis an
event,
argObjectNo
Channel to subscribe to
> instTypeStringIs
product type
> channelStringis
channel name
> instIdStringis
product id. For example: BTCUSDT
codeStringError code, returned only on error
msgStringError message
Code
{ "action": "snapshot", "arg": { "instType": "SPOT", "channel": "auction", "instId": "BTCUSDT" }, "data": [ { "stage": "stage_1", "stageEndTime": "1728876900000", "estOpeningPrice": null, "matchedVolume": null, "auctionEndTime": "1728877500000" } ], "ts": 1695711090682 }

Push Parameters

ParameterTypeDescription
argObjectSuccessfully subscribed channel
> instTypeStringProduct Type
> channelStringChannel name
> instIdStringProduct id For example: ETHUSDT
actionStringPush data action, snapshot or update
dataList<Object>Subscribed data
> stageStringCall Auction
pre_market pre market
stage_1 Auction 1
stage_2 Auction 2
stage_3 Auction 3
success Auction success
failure Auction failed
> stageEndTimeStringCurrent phase end time , millseconds
> estOpeningPriceStringEstimated Opening Price
> matchedVolumeStringMatched Volume ,base coin
>auctionEndTimeStringCall Auction end time , millseconds
Depth ChannelTrading Channel
JSON
JSON
JSON