This service allows developers to validate the status, restrictions, endorsements, and designations of Florida driver licenses. By providing a valid Florida driver license number, the service response with the license status, expiration date, restrictions, endorsements, and designations.
Parameters
Name |
Type |
¿Required? |
Description |
Example |
documentNumber |
String |
True |
Document number of the person to be queried. |
B123-456-78-910-0 |
Implementation
Request
import axios from 'axios';
const options = {
method: 'GET',
url: '<https://api.verifik.co/v2/usa/florida/driver-license>',
params: { documentNumber: 'B123-456-78-910-0'},
headers: {
Accept: 'application/json',
Authorization: 'jwt <tu_token>'
}
};
try {
notFou const { data } = await axios.request(options);
console.log(data);
} catch (error) {
console.error(error);
}
Response 200 - (Successful response)
{
"data": {
"designations": "None on Record",
"documentNumber": "B123-456-78-910-0",
"endorsements": "None on Record",
"restrictions": "None on Record",
"status": "As of February 26, 2024, at 12:11 AM, Florida driver license number B123-456-78-910-0 is Valid. This license is a Class E with an expiration date of 12/28/2026."
},
"signature": {
"dateTime": "March 12, 2024 8:15 PM",
"message": "Certified by Verifik.co"
},
"id": "XUXSL"
}
Other responses
|
Code |
Description |
Response Body |
404 |
Not Found |
Information not found. |
{ |
"code": "NotFound", |
|
|
|
"message": "Record not found.", |
|
|
|
"signature": { |
|
|
|
"dateTime": "August 31, 2022 3:24 PM", |
|
|
|
"message": "Certified by Verifik.co" |
|
|
|
} |
|
|
|
} |
|
|
|
409 |
Conflict |
Some parameters are missing. |
|
{ |
|
|
|
"code": "MissingParameter", |
|
|
|
"message": "missing documentType\n. missing documentNumber\n" |
|
|
|
} |
|
|
|
409 |
Conflict |
Invalid documentType for this query. |
|
{ |
|
|
|
"code": "MissingParameter", |
|
|
|
"message": "documentType must be one of: [DNIAR]" |
|
|
|
} |
|
|
|