DEV Community

Cover image for Introducing the Ontario Driver License Validator — Verifik.co becomes canadian
Miguel Treviño for Verifik

Posted on

Introducing the Ontario Driver License Validator — Verifik.co becomes canadian

Verifik.co validates documents in Canada

Hello to our incredible community of tech aficionados and innovators! Riding the waves of our recent advancements, we're beyond thrilled to present to you another groundbreaking tool in the realm of identity verification. Say a grand hello to our brand-new API - the Ontario Driver License Validator!

Spotlight: Ontario Driver License Validator

As businesses expand and societies become ever more connected, the need for foolproof, quick, and reliable ID verification tools becomes paramount. Our Ontario Driver License Validator API is purpose-built to address these needs, providing an unparalleled solution to verify driver's licenses from Ontario, Canada.

Let's Get Technical: How to Use the API?

Simplicity, clarity, and efficacy are at the heart of our designs. Here's a step-by-step guide to using the new API:

  1. Endpoint: https://api.verifik.co/v2/ca/ontario/driver-license.
  2. Parameter: Our API is all about making things easy for you. Just provide:
  3. documentNumber: The Ontario driver's license number to be validated. (e.g., "S6291–27944–85721")

Here's a handy Node.js snippet using the axios library to showcase its implementation:

const axios = require('axios');

axios.get("https://api.verifik.co/v2/ca/ontario/driver-license", {
   params: {
     documentNumber: "S6291–27944–85721"
   },
   headers: {
    Authentication: `JWT {{verifikToken}}`
   }
})
.then(response => {
 console.log(response.data);
})
.catch(error => {
 console.error(error);
});
Enter fullscreen mode Exit fullscreen mode

Expecting a response? Here's how the API will typically respond:

{
   "data": {
   "documentNumber": "S62912794485721",
   "licenceStatus": "Valid",
   "verificationNumber": "826XY"
   },
   "signature": {
   "dateTime": "August 28, 2023 8:03 PM",
   "message": "Certified by Verifik.co"
   },
   "id": "9t9le"
}
Enter fullscreen mode Exit fullscreen mode

Why Choose the Ontario Driver License Validator API?

  • Precision: Tailored for Ontario driver licenses, ensuring specialized and precise results.
  • Instant Feedback: Get real-time data without the wait.
  • Top-Notch Security: Rest assured, data integrity and security are our prime commitments.
  • Scales with You: Be it a small-scale application or an enterprise-level solution, our API fits all sizes. The Ontario Driver License Validator is not just another tool in the shed; it's a revolution in ID verification, tailored for Ontario. Dive deep into our documentation for a comprehensive look, or better yet, embed it into your platform today!

Want free credits?

Step into a future where identity verification is seamless, precise, and efficient. Embrace the new standard with us! Cheers to innovation!

join now in https://verifik.co to claim it.

Top comments (0)