Skip to main content
POST
Verify Driving Licence
This API retrieves the details of a Driving License (DL) associated with a person. It requires the following input parameters:
  • DL Number: The driving license number.
  • Date of Birth (DOB): The date of birth of the individual.

Optional Feature

  • Name Match Verification: Optionally, the API can perform a name match verification.

Response Details

The API provides comprehensive information about the Driving License, including:
  • Basic Info
  • Driving License Details
  • Validity
  • Vehicle Category Details
  • Address Details
  • Status Details
Use this API to fetch all available details related to a Driving License.

400 Response Messages

DL Number Errors

  • DL Number must be in the format AA00XXXXXXXXXXX.
  • DL Number cannot have all identical digits in the numeric part.
  • dl_number is required.
  • dl_number is invalid.
  • dl_number must be a string.

Date of Birth (DOB) Errors

  • Date of Birth must be in the format dd-mm-yyyy.
  • dob is required.
  • dob is invalid.
  • dob must be a string.

Name Errors

  • name must be a string.
  • name is invalid.
  • Name must not contain special characters or numbers.

Payload Errors

  • Payload is missing.

Authorizations

Authorization
string
header
required

API key issued by KonnectNXT. Pass as Authorization: Bearer <your_api_key>.

Body

application/json
dl_number
string
required

DL Number must be in the format AA00XXXXXXXXXXX and not contain all identical digits in the numeric part. (Max Length: 16)

Maximum string length: 16
Example:

"MH0920220028511"

dob
string
required

Date of Birth in DD-MM-YYYY format.

Pattern: ^\d{2}-\d{2}-\d{4}$
Example:

"05-05-2020"

name
string

Optional. Must not contain special characters or numbers.

Pattern: ^[a-zA-Z\s]*$
Example:

"John Doe"

Response

Successful response with Driving Licence details.

status
enum<string>
required

Overall status of the API

Available options:
success,
error
code
integer
required

HTTP status code

Example:

400

message
string
required

Description of the response or error

Example:

"Invalid request parameters"

data
object
required
credits_used
integer
required

Represents the total number of credits used in this request.

Example:

3

credits_left
integer
required

Represents the remaining credits available for use.

Example:

4040