Get Insurance Fund Balance
HTTP Request
- GET
/api/v1/contract/risk_reverse/{symbol}
Request Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| symbol | string | true | Contract symbol |
Response Parameters
| Parameter | Type | Description |
|---|---|---|
| symbol | string | Contract |
| currency | string | Settlement coin |
| available | decimal | Balance |
| timestamp | long | System timestamp |
Response
{
"success": true,
"code": 0,
"data": [
{
"symbol": "BTC_USDT",
"currency": "USDT",
"available": 97284530.448634083318792525314410007362,
"timestamp": 1761883124789
}
]
}