> ## Documentation Index
> Fetch the complete documentation index at: https://sure-917046f5-docs-cloudflare-tunnel-self-hosting.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Get balance sheet

> Returns the family's net worth, total assets, and total liabilities in the family's primary currency.



## OpenAPI

````yaml /openapi.yaml get /api/v1/balance_sheet
openapi: 3.0.3
info:
  title: Sure API
  version: v1
  description: OpenAPI documentation for the Sure API.
servers:
  - url: https://app.sure.am
    description: Production
  - url: http://localhost:3000
    description: Local development
security: []
paths:
  /api/v1/balance_sheet:
    get:
      tags:
        - Balance Sheet
      summary: Get balance sheet
      description: >-
        Returns the family's net worth, total assets, and total liabilities in
        the family's primary currency.
      responses:
        '200':
          description: balance sheet data
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BalanceSheetResponse'
      security:
        - apiKeyAuth: []
components:
  schemas:
    BalanceSheetResponse:
      type: object
      required:
        - currency
        - net_worth
        - assets
        - liabilities
      properties:
        currency:
          type: string
          description: The family's primary currency code
        net_worth:
          type: object
          description: Net worth as a Money object
        assets:
          type: object
          description: Total assets as a Money object
        liabilities:
          type: object
          description: Total liabilities as a Money object
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      name: X-Api-Key
      in: header
      description: API key for authentication. Generate one from your account settings.

````