StampMitraStampMitra Developers

Passport

● Live

Verify a Passport in real time.

POST/v1/verify/passport
● Live

Verify Passport

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

Required scope: verification.passport.read

Parameters

NameTypeRequiredDescription
AuthorizationheaderYesBearer <api-key> (e.g. sk_test_... in sandbox, sk_live_... in production). The x-api-key header is also accepted.
fileNumberstringYesPassport application file number.
dobstringYesDate of birth (YYYY-MM-DD).
namestringNoName to match against records.

Example request

{
  "fileNumber": "AB1234567890123",
  "dob": "1990-01-01",
  "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.