KYCPassport

Indian Passport Verification API

Verify an Indian passport number and retrieve holder details including name, date of birth, and passport validity status.

curl -X GET "https://production.deepvue.tech/v1/verification/passport?file_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"
{
  "code": 200,
  "timestamp": null,
  "transaction_id": "string",
  "sub_code": "SUCCESS",
  "message": "Passport verification successful",
  "data": {
    "file_number": "string",
    "name": "string",
    "dob": "string",
    "application_type": "string",
    "application_received_date": "string",
    "status": "string"
  }
}
GET
/v1/verification/passport
GET
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

codeinteger
timestampinteger
transaction_idstring
sub_codestring
messagestring
dataobject

Overview

Use this API to verify passport information and ensure the identity of your customer. Provide the passport file number and date of birth (YYYY-MM-DD format) in the request and the service verifies the details instantly.

Upon successful verification, the system returns verified passport details including file number, full name, date of birth, application type, application received date, and current status.