Pan Card

Extracting information in real time from a PAN card image of a person or business.

Submit Document

ind_pan_ocr

POST https://secctrl.tutelar.io/api/v1/kyc/vision/ind_pan_ocr

Post parameters description is given below,

Post Parameter TypeIs MandatoryDescription

front_side

String

Yes

Image Url

back_side

String

No

Image Url

Sample Post Parameters

{
    "front_side": "Base64 or Url",
    "back_side": "Base64 or Url"
}
{
    "success": true,
    "code": 200,
    "message": "The request has been successfully completed.",
    "reference_id": "20ac0e3c-25cc-499d-8e6d-a63c81a52547",
    "status": "completed",
    "result": {
        "document_number": "BFAPL0062A",
        "name_on_document": "Selhuvo Lohe",
        "fathers_name": "Chineyi Lohe",
        "date_of_birth": "2001-09-10"
    },
    "requested_at": "2024-04-22T06:54:23.464Z",
    "completed_at": "2024-04-22T06:54:25.632Z"
}

Check Document Status

Get document details

GET https://secctrl.tutelar.io/api/v1/kyc/vision/ind_pan_ocr

Query parameters description is given below,

Query Parameter TypeIs MandatoryDescription

reference_id

String

Yes

Document reference id

{
    "success": true,
    "code": 200,
    "message": "The request has been successfully completed.",
    "reference_id": "20ac0e3c-25cc-499d-8e6d-a63c81a52547",
    "status": "completed",
    "result": {
        "document_number": "BFAPL0062A",
        "name_on_document": "Selhuvo Lohe",
        "fathers_name": "Chineyi Lohe",
        "date_of_birth": "2001-09-10"
    },
    "requested_at": "2024-04-22T06:54:23.464Z",
    "completed_at": "2024-04-22T06:54:25.632Z"
}

Last updated