PAN-Aadhaar Link Status
PAN and Aadhaar must be linked as per the Income Tax Department directive.
Overview
Check PAN-Aadhaar link status simply by passing the pan
and aadhaar_number
.
Problem
- Government mandates the linking of the two documents to file Income Tax returns.
- Businesses have no way to verify if PAN & Aadhaar belong to the same individual.
Solution
- API to check the PAN-Aadhaar link status.
Endpoint
HTTP Method | Endpoint |
---|---|
GET | it-tools/pans/{pan}/pan-aadhaar-status?aadhaar_number={aadhaar_number} |
Request
Follow the below guidelines to pass PAN & Aadhaar Number
Path Parameter
Param | Type | Description | Example |
---|---|---|---|
pan | string | 10-character alphanumeric unique identifier for an income taxpayer | EGLXX1111X |
Query Parameter
Param | Type | Description | Example |
---|---|---|---|
aadhaar_number | string | 12-digit unique identifier issued by UIDAI | 5433123121239 |
Sample CURL request
curl --request GET \
--url 'https://api.sandbox.co.in/it-tools/pans/EGLXX1111X/pan-aadhaar-status?aadhaar_number=5433123121239' \
--header 'Authorization: xxxxxxxxxx' \
--header 'accept: application/json' \
--header 'x-api-key: xxxxx' \
--header 'x-api-version: 1.0'
Test Environment Not Available
Response
Param | Type | Description | Example |
---|---|---|---|
message | string | Indicates the link status | Your PAN is linked to Aadhaar number |
Response Caching
Response caching is not available for this API. Learn more about our response caching mechanism here
Wallet Charges
Since PAN-Aadhaar Link status is not a Paid API, no wallet charge will take place.
Versioning
This API is currently in major version 1.0. Refer to our versioning policies here
Updated about 1 month ago