Feel free to reach techsupport@surepass.io for any technical support or guidance.
Authorization header as Bearer TOKEN.https://sandbox.surepass.iohttps://kyc-api.surepass.io| Header | Required | Description |
|---|---|---|
| Authorization | Yes | JWT Bearer token for authentication. Format: Bearer <your_token> |
| Content-Type | Yes | Must be set to application/json |
| Parameter | Type | Required | Description |
|---|---|---|---|
| rc_number | string | Yes | The vehicle registration number for which Fastag details are to be verified |
{
"rc_number": "GJ05CN4635"
}| Parameter | Type | Description |
|---|---|---|
| data | object | Container for the Fastag verification result |
| data.client_id | string | Unique identifier for the verification request |
| data.rc_number | string | Vehicle registration number that was verified |
| data.bank_name | string | Name of the bank that issued the Fastag |
| data.tag_id | string | Unique identifier of the Fastag |
| data.status | string | Current status of the Fastag (e.g., "Active") |
| status_code | integer | HTTP status code of the response |
| success | boolean | Indicates if the verification was successful |
| message | string | Human-readable description of the response |
| message_code | string | Machine-readable code for the response |
{
"data": {
"client_id": "fastag_verification_dRKBysWbCksWhLlUpdrx",
"rc_number": "GJ05CN0000",
"bank_name": "",
"tag_id": "0000FA00008EE81FCA123",
"status": "Active"
},
"status_code": 200,
"success": true,
"message": "Success",
"message_code": "success"
}{
"status_code": 422,
"success": false,
"message": "Verification Failed.",
"message_code": "verification_failed"
}curl --location --request POST 'https://kyc-api.surepass.app/api/v1/fastag/verification' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"rc_number": "GJ05CN4635"
}'{
"data": {
"client_id": "fastag_verification_dRKBysWbCksWhLlUpdrx",
"rc_number": "GJ05CN0000",
"bank_name": "",
"tag_id": "0000FA00008EE81FCA123",
"status": "Active"
},
"status_code": 200,
"success": true,
"message": "Success",
"message_code": "success"
}