AsyncCreate Vehicle RC - Basic

Vehicle RC Basic Verification API

Verify a vehicle registration number and get owner name, registration date, and vehicle class. Lightweight RC check with async delivery.

curl -X POST "https://production.deepvue.tech/v1/verification/post-vehicle-rc?rc_number=example_string" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_TOKEN (JWT)" \
  -H "x-api-key: YOUR_API_KEY"
{
  "request_id": "26525fd1-e48e-4016-952d-387b78086ece"
}
POST
/v1/verification/post-vehicle-rc
POST
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

Overview

The Vehicle Registration Verification API establishes a connection between vehicles and their owners to reduce fraud risk. It enables confident onboarding of both vehicles and individuals by confirming genuine vehicle registration through the RTO (Regional Transport Office) and linking ownership details.

This asynchronous API accepts a vehicle registration number as input and returns a request_id for tracking. Results are delivered via webhook to your servers, or you can retrieve them using the corresponding result endpoint.

Upon successful submission, you receive a request_id that you can use with the Get Vehicle RC Result endpoint to retrieve the verification outcome.