1.3 KiB
1.3 KiB
Tax identifier Generator and Validator (tin-validator.eu)
This project provides a TIN validation and generation tool hosted at https://tin-validator.eu.
Screenshots
Features
- Tax identifier generation for most European countries
- Tax identifier validation for most European countries
API Reference
Validate TIN identifier
POST /validate
Parameter | Type | Description |
---|---|---|
country |
string |
Required. The ISO country code |
value |
string |
Required. The identifier |
Generate TIN identifier
POST /generate
Parameter | Type | Description |
---|---|---|
country |
string |
Required. The ISO country code |
dateOfBirth |
string |
Required. Date of birth formatted as yyyy-mm-dd |
gender |
string |
Required. The gender (m/f) |
Run Locally
Clone the project
git clone https://code.devsoap.com/john/tin-validator
Go to the project directory
cd tin-validator
Start the server
./gradlew run
The server will be running on http://localhost:8080