Verify Indian Passport
Use this Sync API to easily verify the authenticity of any Indian passport in real-time.
Pass the Passport ID (File No) and Date of Birth, and get accurate, government-validated details including the person's first name, last name, passport number, and date of issue.
Perfect for KYC, onboarding, and identity verification workflows.
API URL: https://api.bulkpe.in/client/verifyPassport
Method: POST
Auth: Please refer to the Authorization page.
Body
{
"reference": "test017", //unique reference id
"fileNumber": "MA51CXXXXXXXXXX",
"dob": "01/01/1991" //DD/MM/YYYY
}
Response
{
"status": true,
"statusCode": 200,
"data": {
"fileNumber": "MA51CXXXXXXXXXX",
"dob": "01/01/1991",
"passportNumber": "S9XXXXXX",
"firstName": "Abhishek",
"lastName": "Sharma",
"applicationType": "Normal",
"applicationDate": "01/12/2011",
"dateOfDispatch": "01/12/2011",
"reference": "test017",
"txnId": "DVL09194072"
},
"message": "Fetched!"
}