StampMitraStampMitra Developers

PAN

● Live

Verify a PAN in real time.

POST/v1/verify/pan
● Live

Verify PAN

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

Required scope: verification.pan.read

Parameters

NameTypeRequiredDescription
AuthorizationheaderYesBearer <api-key> (e.g. sk_test_... in sandbox, sk_live_... in production). The x-api-key header is also accepted.
panstringYesPAN, format ABCDE1234F.
namestringNoName to match against records (max 256 chars).

Example request

{
  "pan": "ABCDE1234F",
  "name": "Ravi Kumar"
}

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.