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

# Show balance sheet

> Returns the family balance sheet including net worth, total assets, and total liabilities with amounts converted to 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 generated from executable request specs.
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: Show balance sheet
      description: >-
        Returns the family balance sheet including net worth, total assets, and
        total liabilities with amounts converted to the family's primary
        currency.
      responses:
        '200':
          description: balance sheet returned
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BalanceSheet'
        '401':
          description: unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
      security:
        - apiKeyAuth: []
components:
  schemas:
    BalanceSheet:
      type: object
      required:
        - currency
        - net_worth
        - assets
        - liabilities
      properties:
        currency:
          type: string
          description: Family primary currency
        net_worth:
          $ref: '#/components/schemas/Money'
        assets:
          $ref: '#/components/schemas/Money'
        liabilities:
          $ref: '#/components/schemas/Money'
    ErrorResponse:
      type: object
      required:
        - error
      properties:
        error:
          type: string
        message:
          type: string
          nullable: true
        details:
          oneOf:
            - type: array
              items:
                type: string
            - type: object
          nullable: true
        errors:
          type: array
          items:
            type: string
          nullable: true
          description: >-
            Validation error messages (alternative to details used by trades,
            valuations, etc.)
    Money:
      type: object
      required:
        - amount
        - currency
        - formatted
      properties:
        amount:
          type: string
          description: Numeric amount as string
        currency:
          type: string
          description: ISO 4217 currency code
        formatted:
          type: string
          description: Locale-formatted money string
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      name: X-Api-Key
      in: header
      description: API key for authentication. Generate one from your account settings.

````