International Passport (Image)
Allows customers to extract and verify international passport image
Our international passport image extraction and verification endpoint allows businesses to extract the information on a customer’s’ passport and verify its authenticity with just a few clicks.
The endpoint uses advanced algorithms and machine learning techniques to extract the information contained in the passport, such as the customer's name, date of birth, and passport number. The endpoint can also compare the details on the passport with government databases to ensure that the customer's identity is legitimate and accurate.
TEST DATA
image: /9j/4AAQSkZJRgABAQAAAQABAAD/==
POST
{{URL}}/identitypass/verification/national_passport_image
Request Header
Key | Description |
---|---|
app-id | Your App ID |
x-api-key | Your Secret Key |
Request Body
Key | Description |
---|---|
image | Passport image(png, jpg, base64) |
Sample Response
{
"status": true,
"detail": "Intl. Passport Verification Successful",
"response_code": "00",
"data": {
"first_name": "Adeboye",
"last_name": "Deboyewa",
"middle_name": "Test",
"dob": "1990-01-01",
"mobile": "08012345678",
"photo": "/9j/4AAQSkZJRgABAQAAAQABAAD/==",
"signature": "/9j/4AAQSkZJRgABAQAAAQABAAD/==",
"gender": "M",
"issued_at": "IKOYI, LAGOS",
"issued_date": "09/08/2022",
"expiry_date": "08/08/2027",
"reference_id": "600000",
"number": "A0900000"
},
"verification": {
"status": "VERIFIED",
"reference": "08c04c94-4b32-47c0-ae14-aa44c84768ac"
}
}
Response Description
Response | Description |
---|---|
status | Indicates that the request was successful. |
detail | This field indicates the detail of the response. |
response_code | Represents the response code. |
data | It is a string that contains some encrypted or encoded data related to the verification. |
first_name | The first name of the passport holder. |
last_name | The last name of the passport holder. |
middle_name | The middle name of the passport holder. |
dob | The date of birth of the passport holder. |
mobile | The mobile phone number of the passport holder. |
photo | The passport photo of the passport holder. |
signature | The signature of the passport holder. |
gender | The gender of the passport holder. |
issued_at | The place where the passport was issued. |
issued_date | The date on which the passport was issued. |
expiry_date | The date on which the passport expires. |
number | The passport number. |
reference_id | A unique identifier for the passport request. |
verification | It holds additional details about the verification process. |
status | Indicates the status of the verification. |
reference | It is a string representing a unique reference or identifier associated with the verification process. |
Updated 8 months ago