Allows merchant to verify passport information and get a more detailed response
The Passport Verification API allows businesses to verify passport information, providing a detailed response to confirm an individual’s identity. This service analyzes the provided passport data and returns a report on the individual’s passport details.
Key Features:
- Passport Information: Verifies details like passport number, name, gender, and date of birth.
POST (LIVE)
{{URL}}/dikript/verification/api/v1/getpassport
POST (TEST)
{{URL}}/dikript/test/api/v1/getpassport
Body
Key | Description | Required | Type |
---|---|---|---|
number | Passport Number | Yes | string |
lastName | Individuals' Last name | Yes | string |
dateOfBirth | Individual's Dob | Yes | date |
Header (LIVE)
Key | Description |
---|---|
x-api-key | Your Secret Key |
Header (TEST)
Key | Description |
---|---|
x-api-key | Your Public Key |
Responses
{
"status": true,
"message": "Successful",
"code": "200",
"apiVersion": "v1",
"transactionRef": "N202412310616469803",
"data": {
"passportType": "STANDARD_E_PASSPORT",
"passportNumber": "B0*****7",
"title": "",
"firstName": "E****EL",
"middleName": "D****GO",
"lastName": "O***E",
"gender": "MALE",
"dateOfBirth": 705625200000,
"dateOfBirthLabel": "52/09/1882",
"dateOfBirthDay": "52",
"dateOfBirthMonth": "09",
"dateOfBirthYear": "1882",
"placeOfBirth": ""
},
"error": null
}
{
"status": false,
"message": "Unsuccessful",
"code": "400",
"apiVersion": "v1",
"transactionRef": "N202401101345487388",
"data": "",
"error": {
"code": 400,
"message": null
}
}