Skip to main content
GET
/
v1
/
businesses
/
{businessId}
/
tax-estimates
/
checklist
Get tax checklist
curl --request GET \
  --url https://sandbox.layerfi.com/v1/businesses/{businessId}/tax-estimates/checklist \
  --header 'Authorization: Bearer <token>'
{
  "type": "Tax_Checklist",
  "year": 2025,
  "items": [
    {
      "type": "UNCATEGORIZED_DEDUCTIONS",
      "description": "<string>",
      "amount": 123,
      "count": 123,
      "action_url": "<string>"
    }
  ]
}

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

The tax year (e.g., 2025)

Response

Tax checklist for the specified year

Actionable items that need user attention for tax preparation.

type
string

Resource type.

Example:

"Tax_Checklist"

year
integer<int32>

The tax year for this checklist.

Example:

2025

items
object[]

List of actionable items requiring attention.