Insurance

Get insurance fund account information

Get insurance fund account's information

GEThttps://api.prod.paradex.trade/v1/insurance
Response

OK

Body
accountstring

Starknet address of the Insurance fund

Example: 2.073967317963419e+75
account_valuestring

Total account value of insurance fund

Example: "136285.069"
settlement_assetstring

Settlement Asset for the account

Example: "USDC"
updated_atinteger

Account last updated time

Example: 1681471234972
Request
const response = await fetch('https://api.prod.paradex.trade/v1/insurance', {
    method: 'GET',
    headers: {},
});
const data = await response.json();
Response
{
  "account": 2.073967317963419e+75,
  "account_value": "136285.069",
  "settlement_asset": "USDC",
  "updated_at": 1681471234972
}

Last updated