| 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 |
|---|---|---|
vehicleNumber | String | Vehicle registration number linked with FASTag |
documentType | String | Specifies the verification type (Fast Tag Verification_S) |
| Field | Description |
|---|---|
ok | Indicates whether the verification was successful (true / false) |
message | Status message describing the verification result |
result.data.tagId | FASTag unique identifier(s) |
result.data.vehicleNumber | Vehicle registration number(s) linked to FASTag |
result.data.tagStatus | Status of FASTag (e.g., Active/Inactive) |
result.data.vehicleClass | Vehicle class as per FASTag classification |
result.data.issueDate | Date of FASTag issuance |
result.data.issuerBank | Bank that issued the FASTag |
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: \"Fast Tag Verification_S\"\r\n vehicleNumber: \"MH12LD7757\"\r\n }\r\n ) {\r\n ok\r\n message\r\n result {\r\n __typename\r\n ... on FastagVerificationResult {\r\n data {\r\n tagId\r\n vehicleNumber\r\n tagStatus\r\n vehicleClass\r\n issueDate\r\n issuerBank\r\n }\r\n }\r\n }\r\n }\r\n}\r\n",
"variables": {}
}'{
"data": {
"verify": {
"ok": true,
"message": "Verification completed successfully",
"result": {
"__typename": "FastagVerificationResult",
"data": {
"tagId": [
"3416XXXXXXXXXXXXXXXXXXXX",
"3416XXXXXXXXXXXXXXXXXXXX"
],
"vehicleNumber": [
"MH12XXXXXX",
"MH12XXXXXX"
],
"tagStatus": [
"Active",
"Inactive"
],
"vehicleClass": [
"VC4",
"VC4"
],
"issueDate": [
"2025-10-13",
"2025-10-13"
],
"issuerBank": [
"IDFC Bank",
"IDFC Bank"
]
}
}
}
}
}