Tax Filing API
Create, manage, and file tax returns programmatically
POST
/v1/returnsCreate a new tax return
GET
/v1/returns/:idRetrieve a tax return
PUT
/v1/returns/:idUpdate a tax return
POST
/v1/returns/:id/fileFile a tax return with the IRS
Example: Create Tax Return
// Node.js Example
const response = await taxu.returns.create({
year: 2024,
filingStatus: 'single',
taxpayer: {
name: 'John Doe',
ssn: '123-45-6789',
address: '123 Main St'
},
income: {
wages: 75000
}
})