Vehicle RC Lite

The Vehicle RC Lite API is a simplified tool designed to provide essential information from vehicle registration certificates (RC) in a lightweight format.This API provides essential vehicle information extracted from registration certificates, including vehicle owner name, registration number, vehicle make and model, fit upto year, and fuel type.

rc_number

POST https://secctrl.tutelar.io/api/v1/kyc/utility/ind_rc_lite

Post parameters description is given below,

Post Parameter TypeIs MandatoryDescription

rc_number

String

Yes

Registration Certificate Number

Sample Post Parameters

{
    "rc_number": "TN03AE5103"
}
{
    "success": true,
    "code": 200,
    "message": "Document verification completed successfully.",
    "status": "completed",
    "reference_id": "00377f82-8ba0-4e05-ba56-750ea2853f8d",
    "result": {
        "document_status": "SUCCESS",
        "registration_number": "TN03AE5103",
        "registration_date": "2021-07-30",
        "owner_name": "GOWTHAM R",
        "maker": "",
        "maker_model": "PULSAR 150 DTS-I",
        "fuel_type": "PETROL",
        "fit_upto": "2036-07-29",
        "registered_at": "RANIPET RTO, Tamil Nadu",
        "class": "M-Cycle/Scooter",
        "vehicle_category": "2WN",
        "insurance_company": "MAGMA HDI GENERAL INSURANCE CO. LTD",
        "insurance_policy_number": null,
        "insurance_validity": "2026-07-26",
        "tax_upto": "LTT",
        "permit_type": null,
        "permit_valid_upto": null,
        "permit_number": null,
        "status": "ACTIVE"
    },
    "requested_at": "2023-11-14T08:53:04.074Z",
    "completed_at": "2023-11-24T12:05:22.671Z"
}

Last updated