Taiwan tax residency GUIDANCE, not tax advice, from arrival/departure dates and income
Taiwan tax residency GUIDANCE, not tax advice, from arrival/departure dates and income. Determines resident (183+ days/year) vs non-resident using the official start-day-excluded, end-day-included counting rule; non-residents get the 6%/18% withholding threshold (1.5x basic wage); residents get an estimated tax owed using that year's brackets and deductions. DTA treaty rates and Alternative Minimum Tax are flagged, not computed. Only Taiwan's National Taxation Bureau determines final liability.
60000 (raw units)
price
1
calls / 30d
1
unique payers
2026-09-05
updated
Provider
tariffmonkee.com · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x0FAD15c9f4C38f439fd56C4d4e4Bc8fC71c42767",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "60000",
"maxTimeoutSeconds": 300
},
{
"scheme": "exact",
"network": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp",
"payTo": "EjwKsavtpL4MeboquZgFerQy6voUbKqJv5TyukEH8vPN",
"asset": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"amount": "60000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"body": {
"age": "45",
"calendar_year": "2026",
"dependents": "0",
"employer_location": "offshore",
"gross_income_twd": "1200000",
"has_offshore_income": "false",
"married": "false",
"monthly_salary_twd": "60000",
"stays": "[{\"arrival\":\"2026-03-01\",\"departure\":\"2026-09-01\"}]",
"tax_withheld_twd": "50000"
},
"bodySchema": {
"age": {
"description": "Filer's age, for the 70+ exemption tier.",
"required": false,
"type": "number"
},
"calendar_year": {
"description": "Calendar year to evaluate, e.g. 2026. Must have a verified row in the tax_year_params table.",
"required": true,
"type": "number"
},
"dependents": {
"description": "Count of dependents claimed at the general exemption rate.",
"required": false,
"type": "number"
},
"employer_location": {
"description": "'taiwan' or 'offshore'. Affects the 90-day anti-avoidance rule for non-residents.",
"required": false,
"type": "string"
},
"gross_income_twd": {
"description": "Total gross income for the year in TWD.",
"required": false,
"type": "number"
},
"has_offshore_income": {
"description": "Whether material income was earned outside Taiwan. Only used to flag AMT as possibly relevant -- not computed.",
"required": false,
"type": "boolean"
},
"married": {
"description": "Married filing status, affects the standard deduction.",
"required": false,
"type": "boolean"
},
"monthly_salary_twd": {
"description": "Full-month salary in TWD, for the non-resident 6%/18% withholding check.",
"required": false,
"type": "number"
},
"stays": {
"description": "Array of { arrival: 'YYYY-MM-DD', departure?: 'YYYY-MM-DD' }. Omit departure for a stay still ongoing.",
"required": true,
"type": "object"
},
"tax_withheld_twd": {
"description": "Tax already withheld during the year, for a shortfall/refund estimate.",
"required": false,
"type": "number"
}
},
"info": {
"input": {
"body": {},
"bodyType": "json",
"method": "POST",
"type": "http"
}
},
"outputSchema": {
"description": "JSON: { calendar_year, days_present, residency_status, status_reasoning, offshore_90_day_flag, withholding, resident_tax_estimate, filing_required, filing_note, out_of_scope, disclaimer, sources, verified_on }"
},
"routeTemplate": "/paid/tax-residency-check",
"schema": {
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"type": "object"
},
"bodyType": {
"enum": [
"json"
],
"type": "string"
},
"method": {
"enum": [
"POST"
],
"type": "string"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
}
}
}
},
"builder-code": {
"info": {
"s": [
"cdp_sdk_server"
]
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": false,
"properties": {
"a": {
"description": "App builder code",
"pattern": "^[a-z0-9_]{1,32}$",
"type": "string"
},
"s": {
"description": "Service builder codes",
"items": {
"pattern": "^[a-z0-9_]{1,32}$",
"type": "string"
},
"maxItems": 11,
"type": "array"
},
"w": {
"description": "Wallet builder code",
"pattern": "^[a-z0-9_]{1,32}$",
"type": "string"
}
},
"type": "object"
}
},
"eip2612GasSponsoring": {},
"erc20ApprovalGasSponsoring": {}
}Use it
curl
curl "https://tariffmonkee.com/paid/tax-residency-check" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://tariffmonkee.com/paid/tax-residency-check");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://tariffmonkee.com/paid/tax-residency-check")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/14187.json, and this resource appears in /discovery/resources and /discovery/search.