Skip to main content

Quebec Driver License

Endpoint​

GET https://api.verifik.co/v2/ca/quebec/driver-license

Verifies a Quebec driver's license against provincial records using the license document number. Typical fields include license class, status, issue-related data, and a confirmation number when returned by the source. Use it for KYC, fleet and mobility onboarding, and compliance checks.

Headers​

NameValue
Content-Typeapplication/json
AuthorizationBearer <token>

Parameters​

NameTypeRequiredDescriptionExample
documentNumberStringYesDriver's license number to query; enter exactly as shown on the credential.L12345678901

Request​

import axios from 'axios';

const options = {
method: 'GET',
url: 'https://api.verifik.co/v2/ca/quebec/driver-license',
params: { documentNumber: 'L12345678901' },
headers: {
Accept: 'application/json',
Authorization: 'Bearer <your_token>',
},
};

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

Response​

{
"data": {
"documentNumber": "L12345678901",
"classLicense": "5",
"status": "Valid",
"dateOfIssue": "15/03/2020",
"confirmationNumber": "Q12345V",
"condition": ""
},
"signature": {
"dateTime": "April 20, 2026 10:00 AM",
"message": "Certified by Verifik.co"
},
"id": "QBC1X"
}

Notes​

  • Send only the query parameter documentNumber required by this endpoint.