> ## Documentation Index
> Fetch the complete documentation index at: https://orderly.network/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Get insurance fund info

> 
**Limit: 10 requests per 1 second per IP address**

`GET /v1/public/insurancefund`

Returns the current balance and risk metrics for the Orderly insurance fund.




## OpenAPI

````yaml orderly.openapi get /v1/public/insurancefund
openapi: 3.0.1
info:
  title: EVM
  description: ''
  version: 1.0.0
servers:
  - url: https://api.orderly.org
    description: Mainnet
  - url: https://testnet-api.orderly.org
    description: Testnet
security: []
tags:
  - name: public
  - name: private
paths:
  /v1/public/insurancefund:
    get:
      tags:
        - public
      summary: Get insurance fund info
      description: >

        **Limit: 10 requests per 1 second per IP address**


        `GET /v1/public/insurancefund`


        Returns the current balance and risk metrics for the Orderly insurance
        fund.
      parameters: []
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/InsuranceFundResponse'
      deprecated: false
components:
  schemas:
    InsuranceFundResponse:
      allOf:
        - $ref: '#/components/schemas/BasicResponse'
        - type: object
          required:
            - data
          properties:
            data:
              type: object
              required:
                - balance
                - free_collateral
                - margin_ratio
                - min_insurance_fund_initial_margin_ratio
                - min_insurance_fund_margin_ratio
                - rows
                - total_account_value
                - total_collateral_value
                - total_pnl_24_h
              properties:
                min_insurance_fund_initial_margin_ratio:
                  description: >-
                    Minimum initial margin ratio configured for the insurance
                    fund.
                  type: number
                  example: 0.3
                min_insurance_fund_margin_ratio:
                  description: >-
                    Minimum maintenance margin ratio configured for the
                    insurance fund.
                  type: number
                  example: 0.25
                margin_ratio:
                  description: Current margin ratio of the insurance fund.
                  type: integer
                  example: 10
                total_collateral_value:
                  description: Total collateral value held by the insurance fund.
                  type: number
                  example: 10008662.996861
                balance:
                  description: Current balance of the insurance fund.
                  type: number
                  example: 10001908.678983
                free_collateral:
                  description: Collateral currently available for use.
                  type: number
                  example: 10008662.996861
                total_account_value:
                  description: Total account value of the insurance fund.
                  type: number
                  example: 10008662.996861
                total_pnl_24_h:
                  description: Total profit and loss over the last 24 hours.
                  type: integer
                  example: 0
                rows:
                  description: Open position details currently held by the insurance fund.
                  type: array
                  items:
                    type: object
                    required:
                      - symbol
                      - timestamp
                      - position_qty
                      - cost_position
                      - last_sum_unitary_funding
                      - settle_price
                      - average_open_price
                      - pnl_24_h
                      - fee_24_h
                      - mark_price
                    properties:
                      symbol:
                        type: string
                        example: PERP_BTC_USDC
                      timestamp:
                        type: integer
                        example: 1685262631606
                      position_qty:
                        type: integer
                        example: 0
                      cost_position:
                        type: number
                        example: -617.672835
                      last_sum_unitary_funding:
                        type: number
                        example: 100.56
                      settle_price:
                        type: integer
                        example: 0
                      average_open_price:
                        type: integer
                        example: 0
                      pnl_24_h:
                        type: integer
                        example: 0
                      fee_24_h:
                        type: integer
                        example: 0
                      mark_price:
                        type: number
                        example: 27821.8
    BasicResponse:
      required:
        - success
      type: object
      properties:
        success:
          description: Indicates whether the request was successful.
          type: boolean
          example: true
        timestamp:
          description: Server timestamp in milliseconds.
          type: integer
          example: 1702989203989

````