Headers
-
API token (can be retrieved from account settings)
-
ID of organization, for which the operation must be performed
Query parameters
-
Page Number
Default value is
1. -
Field to sort by
-
Sorting direction
Values are
ASCorDESC. Default value isASC. -
Size per page
Default value is
60. -
Last Year start date
-
Last Year end date
-
Include information for last year
-
Start date
-
End date
-
Chart of accounts ID filter.
Multi-value supported. Example: value1;value2 -
Account number filter.
Multi-value supported. Example: value1;value2 -
Account type filter
Values are
BALANCE_SHEET,PL, orSYSTEM. -
Account name filter
-
Debit amount filterSupports comparison operators:
- Range (
..) - Greater than (
>) - Greater than or equal (
>=) - Less than (
<) - Less than or equal (
<=) - Not equal (
<>)
Examples:
- <=100.00
- >=100.00
- <>100.00
- 100.00..200.00
Use
<>0to return only records where the selected amount is not equal to zero. - Range (
-
Credit amount filterSupports comparison operators:
- Range (
..) - Greater than (
>) - Greater than or equal (
>=) - Less than (
<) - Less than or equal (
<=) - Not equal (
<>)
Examples:
- <=100.00
- >=100.00
- <>100.00
- 100.00..200.00
Use
<>0to return only records where the selected amount is not equal to zero. - Range (
-
Ending balance filterSupports comparison operators:
- Range (
..) - Greater than (
>) - Greater than or equal (
>=) - Less than (
<) - Less than or equal (
<=) - Not equal (
<>)
Examples:
- <=100.00
- >=100.00
- <>100.00
- 100.00..200.00
Use
<>0to return only records where the selected amount is not equal to zero. - Range (
-
Prior year debit amount filterSupports comparison operators:
- Range (
..) - Greater than (
>) - Greater than or equal (
>=) - Less than (
<) - Less than or equal (
<=) - Not equal (
<>)
Examples:
- <=100.00
- >=100.00
- <>100.00
- 100.00..200.00
Use
<>0to return only records where the selected amount is not equal to zero. - Range (
-
Prior year credit amount filterSupports comparison operators:
- Range (
..) - Greater than (
>) - Greater than or equal (
>=) - Less than (
<) - Less than or equal (
<=) - Not equal (
<>)
Examples:
- <=100.00
- >=100.00
- <>100.00
- 100.00..200.00
Use
<>0to return only records where the selected amount is not equal to zero. - Range (
-
Prior year ending balance filterSupports comparison operators:
- Range (
..) - Greater than (
>) - Greater than or equal (
>=) - Less than (
<) - Less than or equal (
<=) - Not equal (
<>)
Examples:
- <=100.00
- >=100.00
- <>100.00
- 100.00..200.00
Use
<>0to return only records where the selected amount is not equal to zero. - Range (
curl \
--request GET 'https://wyzio.app/api-v1/balance?startDate=2026-01-01T00%3A00%3A00.000Z&endDate=2026-12-31T00%3A00%3A00.000Z'
[
{
"id": 42,
"organizationId": 42,
"accountNumber": 42,
"accountType": "BALANCE_SHEET",
"account": {
"en": "string",
"fr": "string",
"de": "string",
"it": "string"
},
"debit": 42.0,
"credit": 42.0,
"endingBalance": 42.0,
"lastYearDebit": 42.0,
"lastYearCredit": 42.0,
"lastYearEndingBalance": 42.0,
"warnings": "string",
"accountId": 42,
"tenantId": 42
}
]