KYCRC Challan

Vehicle Challan Details — Traffic Violation Lookup

Look up pending traffic challans for any vehicle registration number. Get violation type, fine amount, and challan status.

curl -X GET "https://production.deepvue.tech/v1/verification/rc-challan-details?rc_number=example_string" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_TOKEN (JWT)" \
  -H "x-api-key: YOUR_API_KEY"
{
  "code": 200,
  "timestamp": 1738007665809,
  "transaction_id": "9a893cf1287a434285793d8c5f0a5cf4",
  "sub_code": "SUCCESS",
  "message": "Challan details fetched successfully",
  "data": {
    "challan_details": {
      "challans": [
        {
          "number": 1,
          "challan_number": "25738882",
          "offense_details": "NO PARKING",
          "offense_details_list": [],
          "challan_place": "DIGITAB VIOLATION",
          "challan_date": "2018-07-04",
          "challan_date_time": "2018-07-04T16:07:00",
          "state": "KA",
          "rto": null,
          "upstream_code": "KA",
          "accused_name": "MOHAMMAD NIHAR",
          "amount": 100,
          "challan_status": "Not Paid",
          "court_challan": null,
          "court_name": ""
        },
        {
          "number": 2,
          "challan_number": "29999394",
          "offense_details": "PILLION RIDER - NOT WEARING HELMET",
          "offense_details_list": [],
          "challan_place": "DIGITAB VIOLATION",
          "challan_date": "2019-07-10",
          "challan_date_time": "2019-07-10T17:26:00",
          "state": "KA",
          "rto": null,
          "upstream_code": "KA",
          "accused_name": "MOHAMMAD NIHAR",
          "amount": 100,
          "challan_status": "Not Paid",
          "court_challan": null,
          "court_name": ""
        }
      ],
      "blacklist": [],
      "successful_backends": [
        "ECHALLAN",
        "KA"
      ],
      "failed_backends": []
    }
  }
}
GET
/v1/verification/rc-challan-details
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

The RC Challan API helps you retrieve traffic violation (challan) records for a vehicle by providing the Vehicle RC Number.

Successful queries return challan records containing:

  • Violation offense descriptions
  • Fine amounts and payment statuses
  • Violation dates and locations
  • Accused driver names
  • Court-related information where applicable

The API indicates which data sources were successfully queried through successful_backends and failed_backends fields in responses.