RC Verification Plus

Enhance RC (Registration Certificate) verification with Instantpay's RC Verification Plus API solution. This tool not only authenticates vehicle registration details but also enriches your database with extra data points.

Seamless integration provides enhanced verification results, ensuring regulatory compliance. Streamline due diligence, improve customer profile depth, and maintain a secure platform with Instantpay's RC Verification Plus API.

Header Parameters

NameTypeDescriptionMandatory (M) , Optional (O)Provided by INSTANTPAY (Y/N)
X-Ipay-Auth-CodeStringAuth Code is "1" (Fixed)MY
X-Ipay-Client-IdStringUnique Client Id Provided by InstantpayMY
X-Ipay-Client-SecretStringUnique Client Secret Provided by InstantpayMY
X-Ipay-Endpoint-IpStringEnd customer IP AddressMY

Request Parameters

Parameter Name

Type

Requirement

Description

vehicleRegistrationNumber

String

Mandatory

Vehicle Registration Number

latitude

String

Mandatory

End Customer Latitude.

longitude

String

Mandatory

End Customer Longitude

externalRef

String

Mandatory

Your Unique Transaction id

consent

String

Mandatory

Consent should be
accepted by
customer

Sample Request

curl --location 'https://api.instantpay.in/identity/verifyRcPlus' \
--header 'X-Ipay-Auth-Code: {{authCode}}' \
--header 'X-Ipay-Client-Id: {{clientId}}' \
--header 'X-Ipay-Client-Secret: {{clientSecret}}' \
--header 'X-Ipay-Endpoint-Ip: {{endPointIP}}' \
--header 'Content-Type: application/json' \
--data '{
    "vehicleRegistrationNumber":"UP81AB1234",
    "consent":"Y",
    "latitude":0.99,
    "longitude":38,
    "externalRef":"jdnjdi89"
}'
POST /identity/verifyRcPlus HTTP/1.1
Host: api.instantpay.in
X-Ipay-Auth-Code: 1
X-Ipay-Client-Id: YWY3OTAzYzNlM2ExZTJlOfh549Gzt+5IEcETrD5Yx+Q=
X-Ipay-Client-Secret: 679db35f926b8d0240a8c0d28729528ee8e6d5effa5fa0b20c04454004d2d825
X-Ipay-Endpoint-Ip: 14.142.186.142
Content-Type: application/json
Content-Length: 138

{
    "vehicleRegistrationNumber":"UP81AB1234",
    "consent":"Y",
    "latitude":0.99,
    "longitude":38,
    "externalRef":"jdnjdi89"
}

Response Parameters

Parameter NameTypeDescription
statuscodeStringInstantpay Status Code
actcodeStringAction Code
statusArrayStatus message
dataStringResponse Data(if Present)
timestampStringResponse time (YYYY-MM-DD HH:II:SS)
ipay_uuidStringRequest reference number
orderidStringTransaction Id(if transaction otherwise it is null)
environmentStringLive/Sandbox
internalCodeStringIt will be null

Sample Response

{
    "statuscode": "TXN",
    "actcode": null,
    "status": "Transaction Successful",
    "data": {
        "vehicalData": {
            "rcBlacklistStatus": "NA",
            "bodyTypeDescription": "2WHEELER",
            "rcChassisNumber": "MD626B******C40204",
            "fatherName": "Sample Name",
            "financer": "NA",
            "insurance": {
                "company": "Acko General Insurance Limited",
                "expiryDate": "26/05/2024",
                "policyNumber": "DBCR00******044/00"
            },
            "nationalPermitExpiryDate": "NA",
            "nationalPermitIssuedBy": "NA",
            "nationalPermitNumber": "NA",
            "normsDescription": "BHARAT STAGE III",
            "vehicleOwnerNumber": "2",
            "userPermanentAddress": "Address",
            "rcEngineNumber": "BG4*****675",
            "rcExpiryDate": "03/06/2031",
            "rcFitUpto": "03/06/2031",
            "rcNocDetails": "NA",
            "rcPermitExpiryDate": "NA",
            "rcPermitIssuedDate": "NA",
            "rcPermitNumber": "NA",
            "rcPermitStartDate": "NA",
            "rcPermitType": "NA",
            "rcPuccExpiryDate": "17/03/2024",
            "rcPuccNo": "UP01*****100",
            "rcRegistrationDate": "26/05/2016",
            "rcRegistrationLocation": "SOUTH DELHI, Delhi",
            "rcRegistrationNumber": "DL3SDE8521",
            "rcStateCode": "DL",
            "rcStatus": "ACTIVE",
            "rcStatusAsOn": "05/10/2023",
            "rcTaxUpto": "LTT",
            "rcSource": "P",
            "userName": "SAJID HASAN",
            "userPresentAddress": " Address",
            "vehicleCategory": "2WN",
            "vehicleClassDescription": "M-Cycle/Scooter(2WN)",
            "vehicleColor": "TITANIUM GREY",
            "vehicleCubicCapacity": "109.7",
            "vehicleFuelDescription": "PETROL",
            "vehicleGrossWeight": "238",
            "vehicleMakeModel": "TVS JUPITER",
            "vehicleMakerDescription": "TVS MOTOR COMPANY LTD",
            "vehicleManufacturedDate": "03/2016",
            "vehicleNumberOfCylinders": "1",
            "vehicleSeatingCapacity": "2",
            "vehicleSleeperCapacity": "NA",
            "vehicleStandCapacity": "NA",
            "vehicleUnladenWeight": "108",
            "vehicleWheelbase": "1275",
            "vehicleType": "2W",
            "rcCommercialStatus": "NO",
            "rcRtoCode": "DL-3",
            "vehicleFinanced": "NA",
            "monthYearRemainingForInsuranceExp": "NA",
            "insuranceExpired": "N",
            "vehicleFitnessExpired": "N",
            "vehicleAge": "7 years 4 months",
            "city": "South Delhi",
            "state": "DELHI",
            "invoiceInfo": {
                "purchaseDate": "NA",
                "purchaseAmount": "NA",
                "dealerName": "NA",
                "dealerAddress": "NA"
            }
        },
        "timestamp": "2022-02-16 15:56:47",
        "ipay_uuid": "h006959ccf00-ce00-43e6-9583-ebc118a77f82",
        "orderid": "1220**********JSKY",
        "environment": "LIVE",
        "internalCode": null
    }
Language
Click Try It! to start a request and see the response here!