Vehicle RC Verification — Full Owner & Vehicle Data
Get comprehensive vehicle RC details — owner name, insurance, fitness, chassis number, and more. Full registration certificate verification.
curl -X GET "https://production.deepvue.tech/v1/verification/rc-advanced?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-advanced?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-advanced?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-advanced?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-advanced?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": 1738007863555,
"transaction_id": "7c71390513b348eca6c5164a8a313844",
"sub_code": "SUCCESS",
"message": "RC Verified Successfully.",
"data": {
"rc_number": "MH02BY2727",
"registration_date": "2010-03-30",
"owner_name": "M/S ARBAAZ KHAN PRODUCTION P LTD",
"father_name": "NOT APPLICABLE",
"present_address": "1-2 CORAL REEF CHS LTD 55 CHIMBAI, RD BANDRA W, MUMBAI, , Maharashtra, 400050",
"permanent_address": "1-2 CORAL REEF CHS LTD 55 CHIMBAI, RD BANDRA W, MUMBAI, , Maharashtra, 400050",
"mobile_number": "",
"vehicle_category": "LMV",
"vehicle_chasi_number": "SALLMAM23AA314132",
"vehicle_engine_number": "0406774368DT",
"maker_description": "JAGUAR LAND ROVER INDIA LIMITED",
"maker_model": "RANGE ROVER SPORTS 3.6 TD V8",
"body_type": "SALOON",
"fuel_type": "DIESEL",
"color": "A WHITE",
"fit_up_to": "2025-03-29",
"financer": "HDFC BANK LTD",
"financed": true,
"insurance_company": "Tata AIG General Insurance Co. Ltd.",
"insurance_policy_number": "62035646240000",
"insurance_upto": "2025-10-10",
"manufacturing_date": "3/2009",
"manufacturing_date_formatted": "2009-03",
"registered_at": "MUMBAI (WEST)",
"latest_by": "2025-01-28",
"rc_status": "ACTIVE"
}
}
{
"code": 200,
"timestamp": 1738007863371,
"transaction_id": "37159057b0494fbd846b75837e84809f",
"sub_code": "INVALID_RC_NUMBER",
"message": "Invalid RC Number."
}
{
"detail": "Inactive client_id"
}
{
"detail": "Not authenticated"
}
{
"detail": "Not a valid token"
}
{
"code": 422,
"timestamp": 1738039208921,
"transaction_id": "f7a756205b5241ab9ad1b97e7ddd77cf",
"sub_code": "INVALID_INPUT",
"message": "Invalid RC Pattern."
}
{
"detail": "Internal Server Error"
}
{
"code": null,
"timestamp": null,
"transaction_id": "string",
"message": "Source Unavailable"
}
/v1/verification/rc-advanced
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 Vehicle RC-Advanced API establishes verification connections between vehicles and their owners to mitigate fraud risk. Beyond basic vehicle details, it supplies insurance information and additional ownership data.
This verification service delivers comprehensive vehicle registration information including:
- Owner and vehicle identification details
- Registration and manufacturing dates
- Complete address information
- Vehicle specifications (chassis, engine, model, fuel type, body type, color)
- Fitness certificate validity periods
- Financing institution details
- Insurance provider and policy information
- Registration location and status
Invalid RC numbers return a 200 status code with an INVALID_RC_NUMBER sub-code indicator rather than an error status. The API provides transaction IDs and timestamps with all responses for audit trails.
Last updated 4 weeks ago
Built with Documentation.AI