Skip to main content

Insurance Pool

Subscribe to get the update of insurance pool balance

Push frequency: 1s

Topic:
USDT contracts: insurance.USDT
USDC contracts: insurance.USDC (note: all USDC Perpetuals, USDC Futures have their own shared insurance pools)
Inverse contracts: insurance.inverse

info
  • Shared insurance pool data is not pushed, please refer to Rest API Get Insurance to understand which symbols belong to isolated or shared insurance pools.
  • No event will be published if the balances of all insurance pools remain unchanged.

Response Parameters

ParameterTypeComments
topicstringTopic name
typestringData type. snapshot, delta
tsnumberThe timestamp (ms) that the system generates the data
dataObject
> coinstringInsurance pool coin
> symbolsstringSymbol name
> balancestringBalance
> updateTimestringData updated timestamp (ms)

Subscribe Example

{
"op": "subscribe",
"args": [
"insurance.USDT",
"insurance.USDC"
]
}

Message Example

{
"topic": "insurance.USDT",
"type": "delta",
"ts": 1747722930000,
"data": [
{
"coin": "USDT",
"symbols": "GRIFFAINUSDT",
"balance": "25614.92972633",
"updateTime": "1747722930000"
},
{
"coin": "USDT",
"symbols": "CGPTUSDT",
"balance": "100000.27064825",
"updateTime": "1747722930000"
},
{
"coin": "USDT",
"symbols": "GOATUSDT",
"balance": "20352.32665441",
"updateTime": "1747722930000"
},
{
"coin": "USDT",
"symbols": "XTERUSDT",
"balance": "19998.81533291",
"updateTime": "1747722930000"
}
]
}