> For the complete documentation index, see [llms.txt](https://docs.tutelar.io/tutelar-api-document/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.tutelar.io/tutelar-api-document/kyc-verification/assets-verification/india/e-challan-details.md).

# E-Challan Details

The E-Challan Details API is a comprehensive tool designed to provide access to electronic traffic violation records and related information. This API is used to retrieve detailed information about e-challans issued for traffic violations, including fine amounts, violation types, vehicle details, and payment status.&#x20;

## ind\_rc\_challan

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

### 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>rc_number </td><td>String </td><td>Yes </td><td>Registration Certificate Number</td></tr><tr><td>chassis_number</td><td>String </td><td>Yes </td><td>Chassis Number</td></tr></tbody></table>

#### Sample Post Parameters

```json
{
 "rc_number": "TN03AE5103",
 "chassis_number": "MD2A11CX7MCC28661"
}
```

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

```json
{
    "success": true,
    "code": 200,
    "message": "Document verification completed successfully.",
    "status": "completed",
    "reference_id": "927bcce6-4eff-42b4-8a1c-6058b301db25",
    "result": {
        "document_status": "SUCCESS",
        "challans": [
            {
                "number": 1,
                "challan_number": "TN14188230901110721",
                "offense_details": "Driving a motor cycle without a protective headgear (helmet)/ Driving a motor cycle or causing or allowing a motor cycle to be driven in contravention of the provisions of section 129 of the Motor vehicles Act,1988",
                "challan_place": null,
                "challan_date": "2023-09-01",
                "state": "TN",
                "rto": null,
                "upstream_code": "CENTRAL_2",
                "accused_name": "GOWTHAM R",
                "amount": 1000,
                "challan_status": "Disposed",
                "court_challan": false
            },
            {
                "number": 2,
                "challan_number": "TN14245230415181059",
                "offense_details": "Stop line violation",
                "challan_place": null,
                "challan_date": "2023-04-15",
                "state": "TN",
                "rto": null,
                "upstream_code": "CENTRAL_2",
                "accused_name": "GOWTHAM R",
                "amount": 500,
                "challan_status": "Disposed",
                "court_challan": false
            },
            {
                "number": 3,
                "challan_number": "TN16225230121133717",
                "offense_details": "No entry / Wrong side driving",
                "challan_place": null,
                "challan_date": "2023-01-21",
                "state": "TN",
                "rto": null,
                "upstream_code": "CENTRAL_2",
                "accused_name": "GOWTHAM R",
                "amount": 500,
                "challan_status": "Disposed",
                "court_challan": false
            }
        ]
    },
    "requested_at": "2023-11-14T08:53:04.074Z",
    "completed_at": "2023-11-24T11:40:22.495Z"
}
```

{% 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 rc number",
        "field": "rc_number",
        "code": "BAD_REQUEST"
    }
}
```

{% endtab %}
{% endtabs %}
