Skip to main content

Passport Verification

A Passport is an essential travel document for those who are traveling abroad for education, tourism, pilgrimage, medical attendance, business purposes and family visits. Passport verification is OCR based.

Passport Structure​

API Integration​

Passport verification can be performed by uploading image of passport using the Verify Passport API

Request​

Upload the image of the passport (file in binary format)

Response​

If the passport is valid

{
"code": 0,
"message": "Success",
"data": {
"documentCode": "PM",
"issuingState": "South Korea",
"lastName": "LEE",
"firstName": "SUYEON",
"documentNumber": "M70689098",
"nationality": "South Korean",
"birthDate": "2/8/1985",
"sex": "female",
"expiryDate": "15/5/2024",
"personalNumber": "2154710V176278",
"photo": "Base 64 image for passport user"
}
}

If the passport is not valid

{
"message": "Invalid passport"
}