| 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., MH19BC5632) |
documentType | String | Specifies the verification type (Vehicle Rc Verification Basic) |
| Field | Description |
|---|---|
ok | Indicates whether the verification was successful (true / false) |
message | Status message describing the verification result |
result.rcOwnerName | Name of the vehicle owner (masked for privacy) |
result.rcMakerModel | Vehicle manufacturer and model |
result.rcRegistrationDate | Date of vehicle registration |
result.rcInsuranceUpto | Insurance validity date |
result.rcFitnessUpto | Fitness certificate validity date |
error.status | Error status code (if applicable) |
error.message | Error message describing the issue |
error.decryptedError | Detailed decrypted error message (if available) |
curl --location --request POST 'https://api.staging.indiconnect.in/idverifygr/verification' \
--header 'myAppId: verification_v1' \
--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 registrationNumber: \"MH19BC5632\",\r\n documentType:\"Vehicle Rc Verification Basic\",\r\n }\r\n ) {\r\n ok\r\n message\r\n result {\r\n ... on VehicleRcResult {\r\n rcInsuranceUpto\r\n rcOwnerName\r\n rcMakerModel\r\n rcRegistrationDate\r\n rcFitnessUpto\r\n }\r\n }\r\n error {\r\n status\r\n message\r\n decryptedError\r\n }\r\n }\r\n}\r\n",
"variables": {}
}'{
"data": {
"verify": {
"ok": true,
"message": "Verification completed successfully",
"result": {
"rcInsuranceUpto": "24-01-2021",
"rcOwnerName": "S*P*N P*T*L",
"rcMakerModel": "PASSION PRO",
"rcRegistrationDate": "20-06-2011",
"rcFitnessUpto": "19-06-2026"
},
"error": null
}
}
}