Verify Drivers license

With our driver's license endpoint, you can not only validate your customer's identification but also get more information about them.

Using our driver's license endpoint requires integration with our API, which allows you to connect to the endpoint and deliver information about the customer's license. In addition to confirming the license, the endpoint can give you with extra client data based on the license information.

📘

GET (LIVE)

{{URL}}/dikript/verification/api/v1/getfrsc

📘

GET (TEST)

{{URL}}/dikript/test/api/v1/getfrsc

Parameter

KeyDescription
frscfrsc Number

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": "N202401101333481940",
    "data": {
        "licenseNo": "eky74g65af6y",
        "firstname": "OLUWAFUNMI",
        "middlename": "",
        "lastname": "OLADELE",
        "birthdate": "11-11-1498",
        "gender": "Male",
        "photo": "/9j/4jIyMjIyMjIyMjIyMjlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uHi4//Z",
        "issuedDate": "22-02-2021",
        "expiryDate": "31-01-2026",
        "stateOfIssue": "LAGOS"
    },
    "error": null
}
{
  	"status": false,
    "message": "Unsuccessful",
    "code": "400",
    "apiVersion": "v1",
    "transactionRef": "N202401101345487388",
    "data": "",
    "error": {
        "code": 400,
        "message": null
    }
}