TAN Verification
Tax Deduction and Collection Account Number (TAN) is a ten-digit alphanumeric identifier issued by the Income Tax Department of India. It is mandatory for individuals and businesses required to deduct or collect tax at source.
TAN Structure
| Key | Description | 
|---|---|
| TAN Number | It is a ten-character alpha-numeric identifier where each character represents unique information about the entity or individual. | 
| Name | Individual/Company Name of the Cardholder | 
API Integration
TAN verification can be performed directly using the Verify TAN API
Direct
Request
{
  "tan": "HYDDXXXX2E"
}
Response
If the TAN is valid
{
  "code": 0,
  "message": "Success",
  "data": {
    "name": "XXXXXX PRIVATE LIMITED"
  }
}
If the TAN is invalid
{
  "code": 0,
  "message": "Success",
  "data": {
    "status": "INVALID",
    "message": "Invalid TAN"
  }
}