Mobile Number IntelligenceMobile To Vehicle RC

Mobile Number to Vehicle RC Lookup

Find vehicles registered to a mobile number. Get RC details including owner name, vehicle class, and registration status.

curl -X GET "https://production.deepvue.tech/v1/mobile-intelligence/mobile-to-vehicle-rc?mobile_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": 1751614096035,
  "transaction_id": "a7fed53ba22740cd9bcebd04f5ee6dce",
  "sub_code": "SUCCESS",
  "message": "Vehicle RC Numbers fetched successfully.",
  "data": {
    "rc_number": [
      "MH02XXXXXX",
      "MH02XXXXXX",
      "MH02XXXXXX"
    ]
  }
}
GET
/v1/mobile-intelligence/mobile-to-vehicle-rc
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

Use this API to find vehicle registration details linked to a given mobile number. The API accepts a mobile number as input and returns associated vehicle registration certificate (RC) numbers as an array when matches exist, or confirmation of no matching records.

Each response includes a transaction ID and timestamp for audit purposes.