Tax Filing API

Create, manage, and file tax returns programmatically

POST/v1/returns

Create a new tax return

GET/v1/returns/:id

Retrieve a tax return

PUT/v1/returns/:id

Update a tax return

POST/v1/returns/:id/file

File 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
}
})