# 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

<mark style="color:green;">`POST`</mark> `https://secctrl.tutelar.io/api/v1/kyc/identity/ind_pan_lite`

### Post parameters description is given below,

<table><thead><tr><th width="197">Post Parameter </th><th width="139">Type</th><th>Is  Mandatory</th><th>Description</th></tr></thead><tbody><tr><td>pan_number </td><td>String </td><td>Yes </td><td>Your Pan Number</td></tr></tbody></table>

#### Sample Post Parameters

```json
{
    "pan_number": "CNPPG0000D"
}
```

{% tabs %}
{% tab title="200: Success Response" %}

```json
{
"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"
}
```

{% endtab %}

{% tab title="400: Validation Error Response" %}

```json
{
    "success": false,
    "code": 400,
    "message": "Invalid input. Please check your request and try again.",
    "error": {
        "message": "Invalid Pan Number",
        "field": "pan_number",
        "code": "BAD_REQUEST"
    }
}
```

{% endtab %}

{% tab title="200: Failure Response" %}

```json
{
    "success": true,
    "code": 200,
    "message": "The request could not be completed due to an error.",
    "reference_id": "51c17936-3335-4c9a-8d31-a1bab55ee0ee",
    "status": "failed",
    "error": {
        "message": "Invalid PAN",
        "code": "ERROR"
    },
    "requested_at": "2024-04-18T09:54:42.825Z",
    "completed_at": "2024-04-18T09:54:47.275Z"
}
```

{% endtab %}
{% endtabs %}
