Skip to main content
GET
/
v1
/
businesses
/
{businessId}
/
tax-estimates
/
summary
Get tax summary
curl --request GET \
  --url https://sandbox.layerfi.com/v1/businesses/{businessId}/tax-estimates/summary \
  --header 'Authorization: Bearer <token>'
{
  "year": 2024,
  "projected_taxes_owed": 123,
  "taxes_due_at": "2024-04-15",
  "uncategorized_tax_payments": 123,
  "sections": [
    {
      "label": "Federal Income & Self-Employment Tax",
      "total": 123,
      "taxes_paid": 123,
      "taxes_owed": 123
    }
  ],
  "type": "Tax_Summary"
}

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<uuid>
required

The UUID of the business

Query Parameters

year
integer
required

Tax year to calculate summary for

Example:

2024

reporting_basis
enum<string>

Reporting basis for calculations (ACCRUAL or CASH). Defaults to the business's default reporting basis.

Available options:
ACCRUAL,
CASH
full_year_projection
boolean
default:false

Whether to project the full year based on year-to-date data. Only applicable for current year calculations.

Response

Tax summary with federal and state breakdown

Summary of projected taxes owed with breakdown by federal and state components.

year
integer
required

The tax year for this summary

Example:

2024

projected_taxes_owed
integer<int64>
required

Total projected taxes owed in cents (federal + state)

taxes_due_at
string<date>
required

Date when the next quarterly estimated tax payment is due

Example:

"2024-04-15"

uncategorized_tax_payments
integer<int64>
required

Amount of tax payments that have not been categorized as federal or state in cents

sections
object[]
required

Breakdown of taxes by component (federal income & self-employment tax, state income tax)

type
string

Resource type.

Example:

"Tax_Summary"