Feel free to reach techsupport@surepass.io for any technical support or guidance.
Authorization
header as Bearer TOKEN
.https://sandbox.surepass.io
https://kyc-api.surepass.io
Header | Required | Description |
---|---|---|
Authorization | Yes | Bearer token for authentication (JWT format) |
Content-Type | Yes | application/json |
Parameter | Type | Required | Description |
---|---|---|---|
rc_number | String | Yes | Vehicle registration number (e.g., "CG07BC1234") |
{
"rc_number": "CG07BC1234"
}
Parameter | Type | Description |
---|---|---|
data | Object | Contains the FASTag verification details |
data.client_id | String | Unique identifier for the client |
data.rc_number | String | Vehicle registration number provided in the request |
data.bank_name | String | Name of the bank that issued the FASTag |
data.tag_id | String | Unique identifier for the FASTag |
data.transactions | Array | List of toll transactions made using 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 request was successful |
message | String | Response message |
message_code | String | Code representing the response message |
Parameter | Type | Description |
---|---|---|
lane_direction | String | Direction of the toll lane (e.g., "S" for South) |
transaction_date_time | String | Date and time of the transaction in ISO 8601 format |
seq_no | String | Unique sequence number for the transaction |
toll_plaza_geocode | String | Geographic coordinates of the toll plaza |
toll_plaza_name | String | Name of the toll plaza where transaction occurred |
vehicle_type | String | Vehicle classification code (e.g., "VC13") |
{
"data": {
"client_id": "fastag_verification_v2_rztQxpTMfyoaKoybGskj",
"rc_number": "CG07BC1234",
"bank_name": "IDFC First Bank",
"tag_id": "34161FA812348EE1234BCFE0",
"transactions": [
{
"lane_direction": "S",
"transaction_date_time": "2024-07-16T19:00:16",
"seq_no": "0010012407161901268650",
"toll_plaza_geocode": "22.34462627,87.12665241",
"toll_plaza_name": "Balibhasa Toll Plaza",
"vehicle_type": "VC13"
},
{
"lane_direction": "S",
"transaction_date_time": "2024-07-16T21:07:11",
"seq_no": "0010032407162107431473",
"toll_plaza_geocode": "22.180518, 86.636253",
"toll_plaza_name": "Jharpokharia Toll Plaza",
"vehicle_type": "VC13"
},
{
"lane_direction": "S",
"transaction_date_time": "2024-07-17T06:46:41",
"seq_no": "172117923267624502481",
"toll_plaza_geocode": "21.705647,85.697266",
"toll_plaza_name": "Khireitangiri Toll Plaza",
"vehicle_type": "VC13"
},
{
"lane_direction": "S",
"transaction_date_time": "2024-07-17T23:21:31",
"seq_no": "172123887618924709963",
"toll_plaza_geocode": "21.705647,85.697266",
"toll_plaza_name": "Khireitangiri Toll Plaza",
"vehicle_type": "VC13"
}
],
"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/fastag-verification-v2' \
--header 'Content-Type: application/json' \
--data-raw '{
"rc_number": "CG07BC1234"
}'
{
"data": {
"client_id": "fastag_verification_v2_rztQxpTMfyoaKoybGskj",
"rc_number": "CG07BC1234",
"bank_name": "IDFC First Bank",
"tag_id": "34161FA812348EE1234BCFE0",
"transactions": [
{
"lane_direction": "S",
"transaction_date_time": "2024-07-16T19:00:16",
"seq_no": "0010012407161901268650",
"toll_plaza_geocode": "22.34462627,87.12665241",
"toll_plaza_name": "Balibhasa Toll Plaza",
"vehicle_type": "VC13"
},
{
"lane_direction": "S",
"transaction_date_time": "2024-07-16T21:07:11",
"seq_no": "0010032407162107431473",
"toll_plaza_geocode": "22.180518, 86.636253",
"toll_plaza_name": "Jharpokharia Toll Plaza",
"vehicle_type": "VC13"
},
{
"lane_direction": "S",
"transaction_date_time": "2024-07-17T06:46:41",
"seq_no": "172117923267624502481",
"toll_plaza_geocode": "21.705647,85.697266",
"toll_plaza_name": "Khireitangiri Toll Plaza",
"vehicle_type": "VC13"
},
{
"lane_direction": "S",
"transaction_date_time": "2024-07-17T23:21:31",
"seq_no": "172123887618924709963",
"toll_plaza_geocode": "21.705647,85.697266",
"toll_plaza_name": "Khireitangiri Toll Plaza",
"vehicle_type": "VC13"
}
],
"status": "Active"
},
"status_code": 200,
"success": true,
"message": "Success",
"message_code": "success"
}