General Ledger
List Account Balances
Businesses
- Business
- Financial Accounts
- Documents
- Scoped Authentication
- Configuration
- Tasks & Notifications
Financial Activity
- Accounts Receivable
- Accounts Payable
- Bank Transactions
- General Ledger
Accounting Reports
- Profit and Loss
- Balance Sheet
- Cash Flow Statement
Platform Configuration
- Plaid
- SMS
Activity Metrics
- Platform wide activity
- Business Activity
General Ledger
List Account Balances
This endpoint retrieves all balances for accounts within a business’s general ledger.
GET
/
v1
/
businesses
/
{business_id}
/
ledger
/
balances
curl https://sandbox.layerfi.com/v1/businesses/863ed926-e30d-40f4-8e7e-b0d5387ce4fb/ledger/balances \
-H "Authorization: Bearer <access_token>"
{
"data": {
"type": "Ledger_Balances",
"accounts": [
{
"id": "6ac7e685-4859-43a0-9f26-61e57c31f4ea",
"name": "Expenses",
"stable_name": "EXPENSES",
"normality": "DEBIT",
"account_type": {
"value": "EXPENSE",
"display_name": "Expenses"
},
"account_subtype": null,
"balance": 11790985,
"entries": [],
"sub_accounts": [
{
"id": "ab16f453-6b0f-416d-bcc9-92edba3b6e0a",
"name": "Cost of Goods Sold",
"stable_name": "COGS",
"normality": "DEBIT",
"account_type": {
"value": "EXPENSE",
"display_name": "Expenses"
},
"account_subtype": {
"value": "COGS",
"display_name": "COGS"
},
"balance": 5156220,
"entries": [],
"sub_accounts": [
// Additional sub-accounts omitted for brevity
]
},
]
},
{
"id": "700a1b71-0b38-4d36-b46c-c0610f7849b5",
"name": "Revenue",
"stable_name": "REVENUE",
"normality": "CREDIT",
"account_type": {
"value": "REVENUE",
"display_name": "Revenue"
},
"account_subtype": null,
"balance": 25570000,
"entries": [],
"sub_accounts": []
},
// Additional accounts omitted for brevity
]
}
}
Path Parameters
Response
Returns an array of Ledger Account objects with their entries omitted.
curl https://sandbox.layerfi.com/v1/businesses/863ed926-e30d-40f4-8e7e-b0d5387ce4fb/ledger/balances \
-H "Authorization: Bearer <access_token>"
{
"data": {
"type": "Ledger_Balances",
"accounts": [
{
"id": "6ac7e685-4859-43a0-9f26-61e57c31f4ea",
"name": "Expenses",
"stable_name": "EXPENSES",
"normality": "DEBIT",
"account_type": {
"value": "EXPENSE",
"display_name": "Expenses"
},
"account_subtype": null,
"balance": 11790985,
"entries": [],
"sub_accounts": [
{
"id": "ab16f453-6b0f-416d-bcc9-92edba3b6e0a",
"name": "Cost of Goods Sold",
"stable_name": "COGS",
"normality": "DEBIT",
"account_type": {
"value": "EXPENSE",
"display_name": "Expenses"
},
"account_subtype": {
"value": "COGS",
"display_name": "COGS"
},
"balance": 5156220,
"entries": [],
"sub_accounts": [
// Additional sub-accounts omitted for brevity
]
},
]
},
{
"id": "700a1b71-0b38-4d36-b46c-c0610f7849b5",
"name": "Revenue",
"stable_name": "REVENUE",
"normality": "CREDIT",
"account_type": {
"value": "REVENUE",
"display_name": "Revenue"
},
"account_subtype": null,
"balance": 25570000,
"entries": [],
"sub_accounts": []
},
// Additional accounts omitted for brevity
]
}
}
curl https://sandbox.layerfi.com/v1/businesses/863ed926-e30d-40f4-8e7e-b0d5387ce4fb/ledger/balances \
-H "Authorization: Bearer <access_token>"
{
"data": {
"type": "Ledger_Balances",
"accounts": [
{
"id": "6ac7e685-4859-43a0-9f26-61e57c31f4ea",
"name": "Expenses",
"stable_name": "EXPENSES",
"normality": "DEBIT",
"account_type": {
"value": "EXPENSE",
"display_name": "Expenses"
},
"account_subtype": null,
"balance": 11790985,
"entries": [],
"sub_accounts": [
{
"id": "ab16f453-6b0f-416d-bcc9-92edba3b6e0a",
"name": "Cost of Goods Sold",
"stable_name": "COGS",
"normality": "DEBIT",
"account_type": {
"value": "EXPENSE",
"display_name": "Expenses"
},
"account_subtype": {
"value": "COGS",
"display_name": "COGS"
},
"balance": 5156220,
"entries": [],
"sub_accounts": [
// Additional sub-accounts omitted for brevity
]
},
]
},
{
"id": "700a1b71-0b38-4d36-b46c-c0610f7849b5",
"name": "Revenue",
"stable_name": "REVENUE",
"normality": "CREDIT",
"account_type": {
"value": "REVENUE",
"display_name": "Revenue"
},
"account_subtype": null,
"balance": 25570000,
"entries": [],
"sub_accounts": []
},
// Additional accounts omitted for brevity
]
}
}