v1

latestOpenAPI 3.0.12026-07-26222700728.0 KB
Reports

Schedule E

Generate a Schedule E tax form

post/v6/reports/scheduleE

Request body

yearinteger

Tax year for the form

Example request

{
  "year": 2025,
  "taxSetup": {
    "countryCode": "USA",
    "state": "DC",
    "filingStatus": {
      "federal": "SINGLE",
      "state": "SINGLE"
    },
    "annualW2Income": 1000000,
    "withholding": {
      "useWithholding": true,
      "federalWithholding": 100051,
      "stateWithholding": 100051
    },
    "numExemptions": 1,
    "tipIncome": 500000,
    "overtimeIncome": 300000,
    "homeOffice": {
      "useHomeOfficeDeduction": true,
      "homeOfficeArea": 250.5
    },
    "mileage": {
      "estimate": 1000,
      "vehicleBusinessPercent": "49.9"
    },
    "expenses": {
      "estimate": 55176
    },
    "income": {
      "estimate": 55176
    }
  }
}

Response

Success

result'SUCCESS' | 'FAILURE'

The result of the action performed.

Example response

{
  "data": {
    "meta": {
      "generatedBy": "John Doe",
      "footerLine": "Generated by Tight"
    }
  }
}