| 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 |
|---|---|---|
engineNumber | String | Engine number of the vehicle |
chassisNumber | String | Chassis number of the vehicle |
documentType | String | Specifies the verification type (Vehicle Reverse RC_S) |
| Field | Description |
|---|---|
ok | Indicates whether the verification was successful (true / false) |
message | Status message describing the verification result |
result.status_code | Status code returned by the system |
result.data.regNo | Vehicle registration number |
result.data.class | Vehicle class/type |
result.data.model | Vehicle model |
result.data.vehicleCategory | Vehicle category |
result.data.isCommercial | Indicates whether the vehicle is commercial (true / false) |
result.data.engine | Engine number of the vehicle |
result.data.chassis | Chassis number of the vehicle |
result.data.status | Registration status of the vehicle |
result.data.regDate | Date of vehicle registration |
result.data.owner | Name of the vehicle owner |
result.data.splitPresentAddress | Structured present address details (city, state, pincode, country) |
result.data.splitPermanentAddress | Structured permanent address details (city, state, pincode, country) |
result.data.vehicleInsuranceCompanyName | Name of the insurance company |
result.data.vehicleInsuranceUpto | Insurance validity date |
result.data.rcExpiryDate | RC expiry date |
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: \"Vehicle Reverse RC_S\"\r\n engineNumber: \"KC31E80199262\"\r\n chassisNumber: \"ME4KC311AJ8199207\"\r\n }\r\n ) {\r\n ok\r\n message\r\n result {\r\n __typename\r\n ... on VehicleReverseSearchResult {\r\n status_code\r\n data {\r\n regNo\r\n class\r\n engine\r\n chassis\r\n model\r\n owner\r\n status\r\n regDate\r\n vehicleCategory\r\n isCommercial\r\n\r\n splitPresentAddress {\r\n city\r\n state\r\n pincode\r\n country\r\n addressLine\r\n }\r\n\r\n splitPermanentAddress {\r\n city\r\n state\r\n pincode\r\n country\r\n addressLine\r\n }\r\n\r\n vehicleInsuranceCompanyName\r\n vehicleInsuranceUpto\r\n rcExpiryDate\r\n }\r\n }\r\n }\r\n }\r\n}\r\n",
"variables": {}
}'{
"data": {
"verify": {
"ok": true,
"message": "Verification completed successfully",
"result": {
"__typename": "VehicleReverseSearchResult",
"status_code": 101,
"data": {
"regNo": "MH45AG8936",
"class": "M-Cycle/Scooter(2WN)",
"engine": "KC31E80199262",
"chassis": "ME4KC311AJ8199207",
"model": "CB UNICORN",
"owner": "BHUSANAR FULCHAND DARYABA",
"status": "ACTIVE",
"regDate": "05/03/2018",
"vehicleCategory": "2WN",
"isCommercial": false,
"splitPresentAddress": {
"city": [
"KONDARPATTA"
],
"state": [
[
"MAHARASHTRA",
"MH"
]
],
"pincode": "413112",
"country": [
"IN",
"IND",
"INDIA"
],
"addressLine": ""
},
"splitPermanentAddress": {
"city": [
"KONDARPATTA"
],
"state": [
[
"MAHARASHTRA",
"MH"
]
],
"pincode": "413112",
"country": [
"IN",
"IND",
"INDIA"
],
"addressLine": ""
},
"vehicleInsuranceCompanyName": "ORIENTAL INSURANCE COMPANY LTD.",
"vehicleInsuranceUpto": "14/02/2019",
"rcExpiryDate": "04/03/2033"
}
}
}
}
}