Taxu CLI
Command-line tool for fast integration, testing, and automation of Taxu API workflows.
Installation
npm install -g @taxu/cliQuick Start
1. Login with your API key
taxu login2. Test an endpoint
taxu refund:estimate --income 75000 --status single3. Create a tax return
taxu returns:create --user user_123 --year 2024Available Commands
taxu loginAuthenticate with your API keytaxu refund:estimateCalculate refund estimatetaxu returns:createCreate a new tax returntaxu returns:listList all tax returnstaxu returns:fileFile a tax returntaxu documents:uploadUpload and parse documentstaxu webhooks:testTest webhook endpointstaxu logsView API request logsExamples
Estimate Refund
$ taxu refund:estimate \
--income 75000 \
--status single \
--deductions standard
✓ Estimated refund: $3,250.00
Effective tax rate: 12.5%
Federal tax: $9,375.00Upload Document
$ taxu documents:upload \
--file ./w2.pdf \
--type W2 \
--return ret_abc123
✓ Document uploaded successfully
Document ID: doc_xyz789
Parsed data:
Employer: Acme Corp
Wages: $85,000.00Test Webhooks
$ taxu webhooks:test \
--event return.filed \
--url https://myapp.com/webhooks
✓ Webhook delivered successfully
Status: 200 OK
Response time: 145ms