Quick Start Guide

Get up and running with the Taxu API in minutes

1

Get Your API Key

Sign up for a free account and generate your API key from the developer portal.

Get API Key
2

Use the REST API

Make API requests using your favorite HTTP library. SDKs coming soon!

# Node.js (using fetch)
npm install node-fetch
# Python (using requests)
pip install requests
3

Make Your First Request

Create a tax return estimate with just a few lines of code.

const
response = await fetch('https://api.taxu.io/v1/refunds/estimate', {
method: 'POST',
headers: {
'Authorization': 'Bearer your_api_key',
'Content-Type': 'application/json'
},
body: JSON.stringify({
income: 75000,
filingStatus: 'single',
deductions: 12000
})
})

const estimate = await response.json()
console.log(estimate.refundAmount)