Aadhaar PAN Link Check Request
VerificationHow to call Aadhaar PAN Link Check — the endpoint, the headers it expects, and every request parameter with its type.
Endpoint
POST
https://app.way2api.com/api/v1/aadhaar/aadhaar_pan_link_check
Headers
Authorization: Bearer your_api_key_here
Content-Type: application/json
Parameters (application/json)
| Parameter | Type | Required | Description |
|---|---|---|---|
| aadhaar_number | string | Required | 12-digit Aadhaar number. |
Request Body
{
"aadhaar_number": "123456789012"
}
cURL
curl -X POST https://app.way2api.com/api/v1/aadhaar/aadhaar_pan_link_check \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"aadhaar_number":"123456789012"}'
🚀 Send Request