Insurance funds

Retrieves all insurance funds

GEThttps://inj.nownodes.io/injective/insurance/v1beta1/insurance_funds
Response

A successful response.

Body
fundsarray of object
Request
const response = await fetch('https://inj.nownodes.io/injective/insurance/v1beta1/insurance_funds', {
    method: 'GET',
    headers: {},
});
const data = await response.json();
Response
{
  "funds": [
    {
      "deposit_denom": "text",
      "insurance_pool_token_denom": "text",
      "redemption_notice_period_duration": "text",
      "balance": "text",
      "total_share": "text",
      "market_id": "text",
      "market_ticker": "text",
      "oracle_base": "text",
      "oracle_quote": "text",
      "oracle_type": "Unspecified",
      "expiry": "text"
    }
  ]
}