BrandKwikID Documentation
API SuiteKRA & Compliance

Verify CVLKRA Solicit PAN Details

CVL KRA lookup with PAN and date of birth. Server-side POST with Bearer auth.

API reference

Try itLoading playground…
Loading…
AuthorizationBearer <token>

JWT Bearer token authentication. Obtain a token from the KwikID dashboard.

In: header

pancard?string

PAN number

Formatstring
dob?string

Date of Birth

Formatstring

Response Body

curl -X POST "https://__mock__/verification/v1/cvlkra/solictpandetails" \  -H "Content-Type: application/json" \  -d '{}'
{
  "message": "string"
}
{
  "detail": {
    "<location>": {
      "<field_name>": [
        "string"
      ]
    }
  },
  "message": "string"
}
{
  "detail": {},
  "message": "string"
}

Overview

Call POST /verification/v1/cvlkra/solictpandetails from your backend when you must send both PAN and DOB for the CVL KRA solicit style lookup. Send Authorization: Bearer <token> and JSON pancard and dob. Compare with Verify CVLKRA if you only need PAN-only lookup.

Key features

  • Stronger match input by including DOB with PAN.
  • Same auth model as other Verification APIs.

Implementation

Step 1: Call from your backend

POST /verification/v1/cvlkra/solictpandetails HTTP/1.1
Host: <verification-api-base-url>
Authorization: Bearer <token>
Content-Type: application/json

{
  "pancard": "ABCDE1234F",
  "dob": "1990-01-15"
}

Error handling

HTTP statusWhen
400Validation error.
401Invalid token.

Benefits

  • Supports DOB-scoped KRA checks when your risk policy requires it.

Next steps