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

KeyDescriptionRequiredType
numberPassport NumberYesstring
lastNameIndividuals' Last nameYesstring
dateOfBirthIndividual's DobYesdate

Header (LIVE)

KeyDescription
x-api-keyYour Secret Key

Header (TEST)

KeyDescription
x-api-keyYour 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
    }
}