Generate 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).
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
Period start date (ISO 8601)
As-of date (ISO 8601)
Fiscal year
Hide accounts with zero balance and zero movements
Trial Balance variant: combined (3-column), balances, or movements
Value in
- "combined"
- "balances"
- "movements"
Filter by account category
Value in
- "ASSET"
- "LIABILITY"
- "EQUITY"
- "REVENUE"
- "EXPENSE"
Display locale for report line labels (Cash Flow section item names). Defaults to Hebrew.
Value in
- "he"
- "en"
Header Parameters
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"}
