AsyncCreate Driver License

Driving License Verification API

Verify a driving license number and retrieve holder details including name, validity, and vehicle classes. Results delivered asynchronously.

curl -X POST "https://production.deepvue.tech/v1/verification/post-driving-license?dl_number=example_string&dob=example_string" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_TOKEN (JWT)" \
  -H "x-api-key: YOUR_API_KEY"
{
  "request_id": "3d56781e-e17d-45f3-b470-c53ce8efb9bc"
}
POST
/v1/verification/post-driving-license
POST
Bearer Token (JWT)
Bearer Tokenstring
Required

ACCESS_TOKEN generated from the authorize endpoint. Should be included in the header as Bearer .

ACCESS_TOKEN generated from the authorize endpoint. Should be included in the header as Bearer .
API Key (header: x-api-key)
x-api-keystring
Required

The CLIENT_SECRET provided to you. This header parameter is required for authentication purposes.

The CLIENT_SECRET provided to you. This header parameter is required for authentication purposes.
Request Preview
Response

Response will appear here after sending the request

Authentication

header
Authorizationstring
Required

Bearer token (JWT). ACCESS_TOKEN generated from the authorize endpoint. Should be included in the header as Bearer .

header
x-api-keystring
Required

API Key for authentication. The CLIENT_SECRET provided to you. This header parameter is required for authentication purposes.

Query Parameters

Responses

request_idstring

Overview

The Driving License Verification API enables immediate validation of driving license details by cross-referencing government databases. It makes your onboarding process safer, faster, and smarter by confirming that individuals possess valid licenses and have submitted authentic identity documentation.

This endpoint functions as an asynchronous KYC API. You submit a driving license number and date of birth, and the system returns a request ID for tracking purposes. Actual verification results are delivered asynchronously through webhook callbacks to your configured servers, or you can retrieve them using the corresponding result endpoint.

Upon successful submission, you receive a request_id that you can use with the Get DL Verification Result endpoint to retrieve the verification outcome.