🇨🇦British Columbia license

British Columbia License Validation

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

The British Columbia Driver License Verification service offers a straightforward method to verify the authenticity and validity of a driver's license in the province of British Columbia, Canada. By utilizing this service, you can quickly validate a driver's license based on the provided document number and last name.

Headers

Name
Value

Content-Type

application/json

Authorization

Bearer <token>

Parameters

Name
Type
¿Required?
Description
Example

documentNumber

String

True

Driver's license to consult, all data must be entered exactly as found in this document.

1123456

lastName

String

True

Last name that appears in the Driver License.

HELLO

Request

import axios from 'axios';

const options = {
  method: 'GET',
  url: '<https://api.verifik.co/v2/ca/british-columbia/driver-license>',
  params: {documentNumber: '7793458', lastName: 'JIWA'},
  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": {
    "documentNumber": "1123456",
    "lastName": "HELLO",
    "valid": true
  },
  "signature": {
    "dateTime": "August 8, 2023 10:56 PM",
    "message": "Certified by Verifik.co"
  },
  "id": "1234567"
}

Last updated