GET
/
v1
/
businesses
/
{businessId}
/
reports
/
balance-sheet
Fetch balance sheet
curl --request GET \
  --url https://sandbox.layerfi.com/v1/businesses/{businessId}/reports/balance-sheet \
  --header 'Authorization: Bearer <token>'
{
  "effective_date": "2023-11-07T05:31:56Z",
  "reporting_basis": "ACCRUAL",
  "assets": [
    {
      "account_name": "<string>",
      "balance": 123,
      "account_type": "<string>"
    }
  ],
  "liabilities": [
    {
      "account_name": "<string>",
      "balance": 123,
      "account_type": "<string>"
    }
  ],
  "equity": [
    {
      "account_name": "<string>",
      "balance": 123,
      "account_type": "<string>"
    }
  ],
  "total_assets": 123,
  "total_liabilities": 123,
  "total_equity": 123
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Headers

Content-Type
string

Content-Type must be set to application/json

Path Parameters

businessId
string
required

The UUID of the business to fetch the balance sheet for

Query Parameters

effective_date
string<date-time>
required

Effective date for the balance sheet (ISO 8601 format)

reporting_basis
enum<string>

Accounting basis for the report

Available options:
ACCRUAL,
CASH
tag_filter
string

Filter results by tags

Response

Balance sheet report data

effective_date
string<date-time>

Effective date of the balance sheet

reporting_basis
enum<string>

Accounting basis used for the report

Available options:
ACCRUAL,
CASH
assets
object[]

Asset accounts

liabilities
object[]

Liability accounts

equity
object[]

Equity accounts

total_assets
integer

Total assets in cents

total_liabilities
integer

Total liabilities in cents

total_equity
integer

Total equity in cents