Get Vehicle RC Result
Retrieve the result of an asynchronous vehicle RC basic verification request.
curl -X GET "https://production.deepvue.tech/v1/verification/get-vehicle-rc?request_id=req_a73af0b7accc4c3fbaa3dd2dc2cab550" \
-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/get-vehicle-rc?request_id=req_a73af0b7accc4c3fbaa3dd2dc2cab550"
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/get-vehicle-rc?request_id=req_a73af0b7accc4c3fbaa3dd2dc2cab550", {
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/get-vehicle-rc?request_id=req_a73af0b7accc4c3fbaa3dd2dc2cab550", 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/get-vehicle-rc?request_id=req_a73af0b7accc4c3fbaa3dd2dc2cab550')
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
{
"action": "verify_with_source",
"completed_at": "2025-01-28T13:26:23+05:30",
"created_at": "2025-01-28T13:26:23+05:30",
"group_id": "8e16424a-58fc-4ba4-ab20-5bc8e7c3c41e",
"request_id": "26525fd1-e48e-4016-952d-387b78086ece",
"result": {
"extraction_output": {
"avg_gross_vehicle_weight": "0",
"axle_configuration": null,
"chassis_number": "ME4JC735SDT039474",
"color": "I RED M",
"emission_norms": null,
"engine_number": "JC73ET1094671",
"fitness_upto": "2032-06-28",
"fuel_type": "PETROL",
"insurance_details": null,
"insurance_validity": "2024-07-13",
"maker_model": "CB125 SHINE SP CBF125MH BS4",
"manufacturer": "HONDA MOTORCYCLE AND SCOOTER INDIA (P) LTD",
"mv_tax_upto": "2032-06-28",
"owner_name": "RAHUL KUMAR SHARMA",
"owner_number": "",
"permit_issue_date": null,
"permit_number": "",
"permit_type": "",
"permit_validity": null,
"puc_number_upto": null,
"registration_date": "2017-06-29",
"registration_number": "KA01KT4652",
"rto_name": null,
"status": "id_found",
"unladen_weight": "118",
"vehicle_class": "2WN",
"vehicle_financier": ""
}
},
"status": "completed",
"task_id": "7aaf3a2-7b9d-42e7-a19b-18da15a04cc6",
"type": "ind_rc_basic"
}
{
"detail": "Inactive client_id"
}
{
"detail": "Not authenticated"
}
{
"detail": "Not a valid token"
}
{
"code": 422,
"timestamp": 1738007666043,
"transaction_id": "ad0f216d6bfe496f943cbbec47d07426",
"sub_code": "INVALID_REQUEST_ID",
"message": "Invalid Request ID"
}
{
"detail": "Internal Server Error"
}
{
"code": null,
"timestamp": null,
"transaction_id": "a73af0b7accc4c3fbaa3dd2dc2cab550",
"message": "Source Unavailable"
}
/v1/verification/get-vehicle-rc
Target server for requests. Edit to use your own host.
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
req_a73af0b7accc4c3fbaa3dd2dc2cab550Responses
Overview
This API retrieves the complete vehicle registration verification result for a given request. You submit the request_id received from the Create Vehicle RC Verification endpoint to fetch comprehensive results.
Upon successful verification, the response includes vehicle identification details (registration number, chassis and engine numbers), owner information (name, contact details), technical specifications (fuel type, vehicle class, color, weight), regulatory compliance data (fitness validity, MV tax expiration, insurance dates), and manufacturer and model information.
This endpoint streamlines access to crucial vehicle registration data for seamless integration into your applications, supporting various verification processes and KYC checks.