Skip to main content

Kansas Driver's License Verification

Endpoint​

https://api.verifik.co/v2/usa/kansas/driver-license

The Kansas Driver License Validation Service allows developers to programmatically validate the status, restrictions, endorsements, and designations of Kansas driver licenses. By providing a valid Kansas driver license number, users can obtain a response that includes details such as the license status, expiration date, any restrictions or endorsements, and designations associated with the license.

This service is essential for verifying driver credentials and ensuring compliance with state regulations.

Headers​

NameValue
Content-Typeapplication/json
AuthorizationBearer <token>

Parameters​

NameTypeRequiredDescriptionExample
documentNumberStringYesDocument number of the person to be queried.K12345678
dateOfBirthStringYesThe birthdate of the license holder (format: DD/MM/YYYY).29/1/1974
firstNameStringYesName of the license holder.MATEO
lastNameStringYesLast name of the license holder.VERIFIK

Request​

import axios from 'axios';

const options = {
method: 'GET',
url: 'https://api.verifik.co/v2/usa/kansas/driver-license',
params: {
documentNumber: 'K12345678',
dateOfBirth: '29/01/1974',
firstName: 'MATEO',
lastName: 'VERIFIK'
},
headers: {
Accept: 'application/json',
Authorization: 'jwt <tu_token>'
}
};

try {
const { data } = await axios.request(options);
console.log(data);
} catch (error) {
console.error(error);
}

Response​

{
"data": {
"cdlStatus": "",
"currentCredentialInformation": [
{
"credentialType": "Driver's License",
"issueDate": "03/04/2020",
"expirationDate": "01/29/2026"
}
],
"dateOfBirth": "29/1/1974",
"dlNumber": "K02884565",
"dlStatus": "Valid",
"documentNumber": "K12345678",
"firstName": "MATEO",
"lastName": "VERIFIK",
"systemGeneratedDl": "N"
},
"signature": {
"dateTime": "January 19, 2024 4:36 PM",
"message": "Certified by Verifik.co"
},
"id": "1Q8UH"
}

Features​

  • Comprehensive License Validation: Validate status, restrictions, endorsements, and designations
  • Multiple Required Parameters: Document number, date of birth, first name, and last name
  • Detailed License Information: Get issue date, expiration date, and credential type
  • Multiple Programming Languages: Support for JavaScript, Python, Swift, and PHP
  • State Compliance: Essential for verifying driver credentials and ensuring compliance