PAN Verification Request
Identity and SecurityHow to call PAN Verification — the endpoint, the headers it expects, and every request parameter with its type.
Endpoint
POST
https://app.way2api.com/api/v1/pan/verify
Headers
Authorization: Bearer your_api_key_here
Content-Type: application/json
Parameters (application/json)
| Parameter | Type | Required | Description |
|---|---|---|---|
| pan_number | string | Required | 10-character PAN — format: [A-Z]{5}[0-9]{4}[A-Z] (e.g. ABCDE1234F) |
Request Body
{
"pan_number": "ABCDE1234F"
}
cURL
curl -X POST https://app.way2api.com/api/v1/pan/verify \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"pan_number":"ABCDE1234F"}'
🚀 Send Request