Payroll calculations, WHT certificates, and VAT compliance - all through simple APIs. Built for Nigerian tax law.
Everything you need to automate tax compliance. Integrate via API or use our web interface.
Bulk PAYE calculations, payslip generation, and statutory remittance schedules
RESTful APIs that work with any language or platform
const response = await fetch('/api/b2b/payroll', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({
employees: [
{ id: 'emp1', annualSalary: 5000000 },
{ id: 'emp2', annualSalary: 8000000 },
]
})
});
const { data } = await response.json();
console.log(data.totals.totalAnnualPAYE);const response = await fetch('/api/b2b/wht', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({
action: 'process',
payer: {
name: 'Acme Corp',
tin: '12345678-0001',
address: 'Lagos, Nigeria'
},
payments: [{
id: 'pay1',
paymentDate: '2025-01-15',
vendor: { name: 'Consultant Ltd', tin: '87654321-0001' },
invoice: { description: 'Consulting services' },
category: 'professional_fees',
grossAmount: 500000,
isNonResident: false
}]
})
});Join hundreds of Nigerian businesses using TaxHQ to stay compliant.