Skip to main content

Get Insurance

Query for Bybit insurance pool data (BTC/USDT/USDC etc). The data is updated every 24 hours.

HTTP Request

GET /v5/market/insurance

Request Parameters

ParameterRequiredTypeComments
coinfalsestringcoin. Default: return all insurance coins

Response Parameters

ParameterTypeComments
updatedTimestringData updated time (ms)
listarrayObject
> coinstringCoin
> balancestringBalance
> valuestringUSD value

Request Example

GET /v5/market/insurance?coin=ETH HTTP/1.1
Host: api-testnet.bybit.com

Response Example

{
"retCode": 0,
"retMsg": "OK",
"result": {
"updatedTime": "1672012800000",
"list": [
{
"coin": "ETH",
"balance": "0.00187332",
"value": "0"
}
]
},
"retExtInfo": {},
"time": 1672053931991
}