StampMitraStampMitra Developers

Driving Licence

● Live

Verify a Driving Licence in real time.

POST/v1/verify/driving-license
● Live

Verify Driving Licence

Validates and verifies a Driving Licence. Requires the `verification.dl.read` scope on the API key. Metered as `dl.verify` after a successful upstream response.

Required scope: verification.dl.read

Parameters

NameTypeRequiredDescription
AuthorizationheaderYesBearer <api-key> (e.g. sk_test_... in sandbox, sk_live_... in production). The x-api-key header is also accepted.
dlNumberstringYesDriving licence number.
dobstringYesDate of birth (YYYY-MM-DD).

Example request

{
  "dlNumber": "MH1420110012345",
  "dob": "1990-01-01"
}

Example response

{
  "status": "success",
  "verified": true,
  "data": {
    "...": "provider-specific verified fields"
  }
}

Input format is validated with class-validator before the request ever leaves stampmitra-b2b-platform.