Insurance Balance
Insurance fund balance for a symbol. Passthrough of Binance USDⓈ-M Futures /fapi/v1/insuranceBalance.
Endpoint
GET /fapi/v1/insuranceBalance
Authentication: Public.
Query parameters
| Name | Type | Required | Notes |
|---|---|---|---|
symbol | string | Yes | Uppercase futures symbol. (FastAPI declares it required; the upstream call does not actually pass symbol through, but the query parameter is still validated as required by the gateway.) |
Response — 200 OK
Binance pass-through. Typical shape:
{
"symbols": [
{ "symbol": "BTCUSDT", "balance": "12345678.90" }
]
}
Errors
| HTTP | Cause |
|---|---|
422 | Missing symbol. |
502 | Upstream Binance request failed. |
Example
curl -s "https://api.pipai.org/fapi/v1/insuranceBalance?symbol=BTCUSDT"