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"
import requests
import json
url = "https://production.deepvue.tech/v1/verification/rc-challan-details?rc_number=example_string"
headers = {
"Content-Type": "application/json",
"Authorization": "Bearer YOUR_API_TOKEN (JWT)",
"x-api-key": "YOUR_API_KEY"
}
response = requests.get(url, headers=headers)
print(response.json())
const response = await fetch("https://production.deepvue.tech/v1/verification/rc-challan-details?rc_number=example_string", {
method: "GET",
headers: {
"Content-Type": "application/json",
"Authorization": "Bearer YOUR_API_TOKEN (JWT)",
"x-api-key": "YOUR_API_KEY"
}
});
const data = await response.json();
console.log(data);
package main
import (
"fmt"
"net/http"
)
func main() {
req, err := http.NewRequest("GET", "https://production.deepvue.tech/v1/verification/rc-challan-details?rc_number=example_string", nil)
if err != nil {
panic(err)
}
req.Header.Set("Content-Type", "application/json")
req.Header.Set("Authorization", "Bearer YOUR_API_TOKEN (JWT)")
req.Header.Set("x-api-key", "YOUR_API_KEY")
client := &http.Client{}
resp, err := client.Do(req)
if err != nil {
panic(err)
}
defer resp.Body.Close()
fmt.Println("Response Status:", resp.Status)
}
require 'net/http'
require 'json'
uri = URI('https://production.deepvue.tech/v1/verification/rc-challan-details?rc_number=example_string')
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = true
request = Net::HTTP::Get.new(uri)
request['Content-Type'] = 'application/json'
request['Authorization'] = 'Bearer YOUR_API_TOKEN (JWT)'
request['x-api-key'] = 'YOUR_API_KEY'
response = http.request(request)
puts response.body
{
"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": []
}
}
}
{
"code": 200,
"timestamp": 1738007864045,
"transaction_id": "0bc9e66cb57f492390e9312172a05ea7",
"sub_code": "NO_CHALLAN_FOUND",
"message": "No challan found"
}
{
"detail": "Not authenticated"
}
{
"detail": "Invalid client_id, access Denied"
}
{
"detail": "Incorrect client_id or client_secret"
}
{
"detail": "Not a valid token"
}
{
"detail": "Access forbidden"
}
{
"code": 422,
"timestamp": 1738027653699,
"transaction_id": "ef33233d12e94f3f919a5cc1be4ec28f",
"sub_code": "INVALID_INPUT",
"message": "Invalid RC Pattern."
}
{
"detail": "Internal Server Error"
}
{
"code": 500,
"timestamp": 1729764451763,
"transaction_id": "string",
"sub_code": "SOURCE_FAILURE",
"message": "Source failure. Unable to validate."
}
/v1/verification/rc-challan-details
ACCESS_TOKEN generated from the authorize endpoint. Should be included in the header as Bearer .
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
Bearer token (JWT). ACCESS_TOKEN generated from the authorize endpoint. Should be included in the header as Bearer .
API Key for authentication. The CLIENT_SECRET provided to you. This header parameter is required for authentication purposes.
Query Parameters
Responses
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.
Last updated 4 weeks ago
Built with Documentation.AI