Skip to main content

🇨🇦 魁北克 — 驾驶证

本 API 使用证件号码核验在加拿大魁北克省签发的驾驶证与官方记录。返回字段可包括类别、状态、签发相关信息及确认编号。适用于 KYC出行入驻合规场景。

必须提供 Authorization 请求头。

API 参考

Endpoint

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

使用驾驶证上的证件号码核验魁北克驾驶证。

请求头(Headers)

名称取值
Content-Typeapplication/json
AuthorizationBearer <token>

参数(Parameters)

名称类型必填描述示例
documentNumberstring待查询的驾驶证号码,须与证件原文一致。L12345678901

请求(Request)

import axios from "axios";

const { data } = await axios.get("https://api.verifik.co/v2/ca/quebec/driver-license", {
params: { documentNumber: "L12345678901" },
headers: { Accept: "application/json", Authorization: `Bearer ${process.env.VERIFIK_TOKEN}` },
});
console.log(data);

响应(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"
}

备注

  • 本接口仅需查询参数 documentNumber