VUZDevelopers

Generate Balance Sheet

GET
/reports/balance-sheet

Generate Balance Sheet (מאזן) showing assets, liabilities, and equity at a specific point in time. Verifies that Assets = Liabilities + Equity. Includes financial ratios (current ratio, debt-to-equity).

X-Api-Key<token>

Business API key, e.g. vuz_ab12cdef... Created via Settings → Integrations → API Keys. Unlike partner keys, a public API key's STRING does not encode its environment — isolation instead comes from a completely separate sandbox database: a key minted on the Sandbox server (above) only ever reads/writes sandbox data and can never see or affect production, regardless of what the key looks like.

In: header

Query Parameters

startDate?string

Period start date (ISO 8601)

endDate?string

As-of date (ISO 8601)

fiscalYear?number

Fiscal year

hideZeroBalances?boolean

Hide accounts with zero balance and zero movements

variant?string

Trial Balance variant: combined (3-column), balances, or movements

Value in

  • "combined"
  • "balances"
  • "movements"
accountCategory?string

Filter by account category

Value in

  • "ASSET"
  • "LIABILITY"
  • "EQUITY"
  • "REVENUE"
  • "EXPENSE"
locale?string

Display locale for report line labels (Cash Flow section item names). Defaults to Hebrew.

Value in

  • "he"
  • "en"

Header Parameters

X-Business-Id*string

Response Body

application/json

curl -X GET "https://example.com/reports/balance-sheet" \  -H "X-Business-Id: string"
{  "businessId": "123e4567-e89b-12d3-a456-426614174000",  "asOfDate": "2025-12-31",  "assets": [    {      "sectionName": "Current Assets",      "items": [        {          "accountCode": "1000",          "accountName": "Cash",          "balance": 50000,          "percentage": 10        }      ],      "total": 150000    }  ],  "totalAssets": 500000,  "liabilities": [    {      "sectionName": "Current Assets",      "items": [        {          "accountCode": "1000",          "accountName": "Cash",          "balance": 50000,          "percentage": 10        }      ],      "total": 150000    }  ],  "totalLiabilities": 115000,  "equity": [    {      "sectionName": "Current Assets",      "items": [        {          "accountCode": "1000",          "accountName": "Cash",          "balance": 50000,          "percentage": 10        }      ],      "total": 150000    }  ],  "totalEquity": 385000,  "balanceCheck": 0,  "isBalanced": true,  "currentRatio": 1.3,  "debtToEquityRatio": 0.3,  "generatedAt": "2025-12-31T23:59:59.000Z"}