DocumentationIncome Tax Calculator API

Income Tax Calculator API

Chinese individual income tax calculation

Overview

GET /v1/life/tax calculates Chinese individual income tax, supporting cumulative withholding for monthly salary and separate taxation for annual bonuses.

Request Parameters

ParameterTypeRequiredDefaultDescription
monthly_salaryfloatYes-Pre-tax monthly salary
bonusfloatNo0Annual bonus
insurancefloatNo0Social insurance deduction
special_deductionfloatNo0Special additional deductions
additional_deductionfloatNo0Other deductions

Request Examples

Basic Calculation

curl -H "X-API-Key: sk_gapi_xxxxx" \
  "https://api.groundapi.net/v1/life/tax?monthly_salary=20000"

Full Calculation

curl -H "X-API-Key: sk_gapi_xxxxx" \
  "https://api.groundapi.net/v1/life/tax?monthly_salary=20000&bonus=50000&insurance=2000&special_deduction=1500"

Response Fields

FieldDescription
monthly_salaryPre-tax monthly salary
monthly_taxMonthly tax
monthly_after_taxMonthly take-home pay
annual_taxAnnual tax
annual_after_taxAnnual take-home pay
bonus_taxBonus tax (when bonus is provided)
bonus_after_taxBonus take-home (when bonus is provided)
total_annual_taxTotal annual tax (when bonus is provided)
total_annual_after_taxTotal annual take-home (when bonus is provided)

Pricing

$0.01/call. First 500 calls/month are free.

Updated 6 days ago
Did this page help you?