unsubscribeFromChannel
Stop receiving real-time updates from a specific WebSocket channel on the Bitget crypto exchange. Specify the channel name, trading pair, and instrument type to unsubscribe.
Instructions
Unsubscribe from a WebSocket channel
Input Schema
Name | Required | Description | Default |
---|---|---|---|
channel | Yes | Channel name (ticker, books, etc.) | |
instType | No | Instrument type (default: SPOT) | |
symbol | Yes | Trading pair symbol |
Input Schema (JSON Schema)
{
"properties": {
"channel": {
"description": "Channel name (ticker, books, etc.)",
"type": "string"
},
"instType": {
"description": "Instrument type (default: SPOT)",
"enum": [
"SPOT",
"UMCBL"
],
"type": "string"
},
"symbol": {
"description": "Trading pair symbol",
"type": "string"
}
},
"required": [
"channel",
"symbol"
],
"type": "object"
}