For the complete documentation index, see llms.txt. This page is also available as Markdown.

Pan Card Lite

The Pan Card Lite API is a simplified tool designed to provide essential information from PAN (Permanent Account Number) cards. Allows users to retrieve key details about PAN cards, including the PAN number and the name of the cardholder.

ind_pan_lite

POST https://secctrl.tutelar.io/api/v2/kyc/identity/ind_pan_lite

Name
Value

Content-Type

application/json

Authorization

Bearer eyJhbGciOiJ.....

Post parameters description is given below,

Post Parameter
Type
Is Mandatory
Description

pan_number

String

Yes

Your Pan Number

Sample Post Parameters

{
    "pan_number": "CNPPG0000D"
}
{
"success": true,
    "code": 200,
    "message": "The request has been successfully completed.",
    "reference_id": "32d59046-865a-4818-8d15-4f23a2df2a8e",
    "status": "completed",
    "result": {
        "document_number": "CNPPG0000D",
        "name_on_document": "RAMESH GOWTHAM",
        "category": "person"
    },
    "requested_at": "2024-03-19T07:52:01.391Z",
    "completed_at": "2024-03-19T07:52:02.256Z"
}

Last updated