| Header | Description |
|---|---|
myAppId | Application identifier used for service authentication |
service-key | Unique service key provided for accessing the verification service |
Authorization | API authorization credentials for secure access |
Content-Type | Specifies the request payload format (application/json) |
| Parameter | Type | Description |
|---|---|---|
registrationNumber | String | Vehicle registration number (e.g., MH25AV4035) |
documentType | String | Specifies the verification type (RC Advanced Verification) |
| Field | Description |
|---|---|
ok | Indicates whether the verification was successful (true / false) |
message | Status message describing the verification result |
result.request_id | Unique request identifier for tracking |
result.status_code | Status code returned by the system |
result.data.registrationNumber | Vehicle registration number |
result.data.ownerName | Name of the vehicle owner |
result.data.fatherName | Ownerâs fatherâs name |
result.data.permanentAddress | Permanent address of the owner |
result.data.presentAddress | Current address of the owner |
result.data.makerDescription | Vehicle manufacturer |
result.data.makerModel | Vehicle model |
result.data.vehicleClassDescription | Vehicle class/type |
result.data.bodyTypeDescription | Body type of the vehicle |
result.data.vehicleCatgory | Vehicle category |
result.data.color | Vehicle color |
result.data.fuelDescription | Fuel type (Petrol/Diesel/CNG etc.) |
result.data.cubicCapacity | Engine capacity (cc) |
result.data.seatingCapacity | Seating capacity |
result.data.wheelbase | Wheelbase of the vehicle |
result.data.chassisNumber | Chassis number of the vehicle |
result.data.engineNumber | Engine number of the vehicle |
result.data.manufacturedMonthYear | Manufacturing month and year |
result.data.registrationDate | Date of registration |
result.data.registeredAt | RTO where the vehicle is registered |
result.data.rcStatus | Status of the RC |
result.data.blackListStatus | Blacklist status of the vehicle |
result.data.insuranceCompany | Insurance provider name |
result.data.insurancePolicyNumber | Insurance policy number |
result.data.insuranceUpto | Insurance validity date |
result.data.fitnessUpto | Fitness certificate validity date |
result.data.financier | Financier details (if applicable) |
result.data.grossVehicleWeight | Gross vehicle weight |
error | Contains error details if verification fails |
curl --location --request POST 'https://api.staging.indiconnect.in/idverifygr/verification' \
--header 'myAppId: verification_v4_app' \
--header 'service-key: sk_test_a9944179bc598f06' \
--header 'Authorization: x-api-access indc_test_a41eaf2a175f3b13:ac_test_bf7117f6da6c6285' \
--header 'Content-Type: application/json' \
--data-raw '{
"query": "mutation {\r\n verify(\r\n input: {\r\n documentType: \"RC Advanced Verification\"\r\n registrationNumber: \"MH25AV4035\"\r\n }\r\n ) {\r\n ok\r\n message\r\n result {\r\n __typename\r\n ... on RCAdvancedVerificationResult {\r\n request_id\r\n status_code\r\n\r\n data {\r\n blackListStatus\r\n bodyTypeDescription\r\n chassisNumber\r\n color\r\n cubicCapacity\r\n engineNumber\r\n fatherName\r\n financier\r\n fitnessUpto\r\n fuelDescription\r\n grossVehicleWeight\r\n insuranceCompany\r\n insurancePolicyNumber\r\n insuranceUpto\r\n makerDescription\r\n makerModel\r\n manufacturedMonthYear\r\n ownerName\r\n permanentAddress\r\n presentAddress\r\n rcStatus\r\n registeredAt\r\n registrationDate\r\n registrationNumber\r\n seatingCapacity\r\n vehicleCatgory\r\n vehicleClassDescription\r\n wheelbase\r\n }\r\n }\r\n }\r\n }\r\n}\r\n",
"variables": {}
}'{
"data": {
"verify": {
"ok": true,
"message": "Verification completed successfully",
"result": {
"__typename": "RCAdvancedVerificationResult",
"request_id": "92a356af-d58a-4deb-b5da-42da3fa9d606",
"status_code": 101,
"data": {
"blackListStatus": null,
"bodyTypeDescription": "FULL BODY",
"chassisNumber": "ME4JC83CMMG013520",
"color": "GRAY",
"cubicCapacity": "123.94",
"engineNumber": "JC83EG2216318",
"fatherName": "",
"financier": "",
"fitnessUpto": "23-12-2036",
"fuelDescription": "PETROL",
"grossVehicleWeight": "286",
"insuranceCompany": "ICICI Lombard General Insurance Co. Ltd.",
"insurancePolicyNumber": "3005/235157651/00/000",
"insuranceUpto": "23-12-2026",
"makerDescription": "HONDA MOTORCYCLE AND SCOOTER INDIA (P) LTD",
"makerModel": "SP 125 STD",
"manufacturedMonthYear": "12-2021",
"ownerName": "Tukaram Goroba Waghmare",
"permanentAddress": "Dharashiv, 413507",
"presentAddress": "Dharashiv, 413507",
"rcStatus": null,
"registeredAt": "DHARASHIV, Maharashtra",
"registrationDate": "24-12-2021",
"registrationNumber": "MH25AV4035",
"seatingCapacity": "2",
"vehicleCatgory": null,
"vehicleClassDescription": "M-Cycle/Scooter(2WN)",
"wheelbase": "1285"
}
}
}
}
}