Home / Validate VAT / Japan
Validate Japan Tax ID Numbers via API
When building B2B applications that serve Japan (日本 (Nihon)), validating your customers' インボイス登録番号 (Invoice Registration Number / Qualified Invoice Issuer Number) is essential for B2B compliance and protecting your business from tax liability.
The TaxID API provides instant format validation and live lookup for Japan インボイス登録番号 numbers via NTA (National Tax Agency / 国税庁). Every request returns the validation status with sub-100ms response times for cached results.Japan applies a standard rate of 10% (インボイス登録番号).
QUICK START
curl -H "Authorization: Bearer YOUR_API_KEY" \ http://localhost:3000/api/v1/validate/JP/T1234567890123
Code examples
Choose your language. Every example validates a Japan VAT number and returns the registration status with company details.
const res = await fetch('http://localhost:3000/api/v1/validate/JP/T1234567890123', {
headers: { 'Authorization': 'Bearer YOUR_API_KEY' }
});
const data = await res.json();
// { valid: true, status: "active", company_name: "...", country_code: "JP", cached: false }
console.log(data);When to validate Japan tax ID numbers
B2B invoicing and accounts payable
When issuing or receiving invoices from Japan businesses, validating the インボイス登録番号 (Invoice Registration Number / Qualified Invoice Issuer Number) ensures the identifier is genuine before committing the transaction to your ERP. Invalid or fabricated tax IDs are a leading vector for invoice fraud and can result in rejected filings or audit penalties.
SaaS and e-commerce checkout
If your platform serves Japan business customers, collecting and validating their インボイス登録番号 (Invoice Registration Number / Qualified Invoice Issuer Number) at checkout is required for accurate tax treatment, correct invoicing, and downstream reporting. An invalid tax ID at the point of sale creates a correction burden across your finance stack.
Supplier and marketplace onboarding
For procurement platforms and regulated marketplaces onboarding Japan sellers or vendors, validating the インボイス登録番号 (Invoice Registration Number / Qualified Invoice Issuer Number) at registration prevents fraudulent or duplicate accounts from entering your ecosystem. Validate once at onboarding, then re-validate periodically to detect deregistrations or changes.
About Japan VAT format (インボイス登録番号)
Japan introduced a Qualified Invoice System (インボイス制度) in October 2023. Registered businesses receive a 13-digit invoice registration number prefixed with T. The 8% reduced rate applies to food and non-alcoholic beverages. Japan's consumption tax (消費税) replaced the simpler sales tax in 1989.
| Field | Value |
|---|---|
| Country code | JP |
| Local name | インボイス登録番号 (Invoice Registration Number / Qualified Invoice Issuer Number) |
| Format | T + 13-digit corporate number |
| Regex pattern | ^T[0-9]{13}$ |
| Example | T1234567890123 |
| VIES supported | No |
VAT rates in Japan
Japan applies a standard インボイス登録番号 rate of 10%. Reduced rates of 8% apply to essential goods and services.
| Rate type | Percentage | Currency |
|---|---|---|
| Standard rate | 10% | JPY |
| Reduced rate | 8% | JPY |
Frequently asked questions
What is the Japan tax ID number format?
Japan tax ID numbers (インボイス登録番号 (Invoice Registration Number / Qualified Invoice Issuer Number)) follow the format: T + 13-digit corporate number. A valid example is T1234567890123. The TaxID API validates the format locally and where possible checks against the NTA (National Tax Agency / 国税庁), ensuring you only accept properly registered businesses.
Should I validate インボイス登録番号 numbers when transacting with Japan businesses?
Validating インボイス登録番号 numbers reduces fraud risk, prevents invalid identifiers from entering your accounting system, and is required by many B2B contracts and procurement platforms. While mandatory rules vary by jurisdiction, validating at onboarding is widely considered best practice — especially for SaaS, marketplace, and fintech platforms with global customer bases.
What is the standard tax rate in Japan?
The standard tax rate in Japan is 10% (インボイス登録番号). Reduced rates of 8% apply to certain goods and services such as food, books, and medical supplies. The TaxID API's /rates endpoint returns all current rates for programmatic access.
How long does Japan tax ID validation take with TaxID?
For cached results (previously validated in the last 24 hours), the TaxID API responds in under 10ms. Format validation is instantaneous. For uncached requests requiring a live lookup against NTA (National Tax Agency / 国税庁), response time is typically 100–500ms. Valid numbers are cached for 24 hours; invalid numbers are cached for 1 hour.
How does the TaxID API validate Japan インボイス登録番号 numbers?
The TaxID API validates Japan インボイス登録番号 numbers in two steps: first it checks the format against the official pattern (T + 13-digit corporate number), then it queries NTA (National Tax Agency / 国税庁) where a live API is available. Japan introduced a Qualified Invoice System (インボイス制度) in October 2023. Registered businesses receive a 13-digit invoice registration number prefixed with T. The 8% reduced rate applies to food and non-alcoholic beverages. Japan's consumption tax (消費税) replaced the simpler sales tax in 1989.
Start validating Japan VAT numbers
Free plan includes 100 validations/month. No credit card required.
Get free API keyDeveloper resources:
Also validate VAT in:
Concepts explained: