Skip to main content

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

NameTypeRequiredNotes
symbolstringYesUppercase 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

HTTPCause
422Missing symbol.
502Upstream Binance request failed.

Example

curl -s "https://api.pipai.org/fapi/v1/insuranceBalance?symbol=BTCUSDT"