RC Verification

Instantpay's RC (Registration Certificate) Verification API solution empowers businesses in the automotive and logistics sectors to authenticate vehicle registration details.

Integrate this tool to verify the accuracy of RC information and obtain up to 20 data points related to vehicle details, including masked engine and chassis numbers. , ensuring compliance with regulatory standards.

Automate the verification process to fortify your platform's security, minimising the risk of fraudulent activities linked to vehicle registration.

With Instantpay's RC Verification API solution, enhance the reliability of your database and streamline verification procedures.

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/verifyRc' \
--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/verifyRc 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",
            "rcChassisNo": "MBLHAR183HHDXXXX",
            "rcEngineNo": "HA10ACHHDXXXX",
            "financier": null,
            "rcExpiryDate": "24/04/2032",
            "rcFitUpto": "24-Apr-2032",
            "vehicleFuelDescription": "PETROL",
            "insuranceExpiryDate": "18/04/2018",
            "rcRegistrationLocation": "Address",
            "vehicleMakerDescription": "Vehicle Details",
            "rcTaxUpto": "22/04/2032",
            "userName": "Owner Name",
            "rcRegistrationDate": "25/04/2017",
            "rcRegistrationNumber": "UP82CQ8763",
            "rcStatus": "ACTIVE",
            "rcSource": "P",
            "vehicleClassDescription": "M-Cycle/Scooter(2WN)"
        },
        "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!