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 | JWT Bearer token for authentication. Format: Bearer <your_token> |
Content-Type | Yes | Must be set to application/json |
Parameter | Type | Description |
---|---|---|
data | Object | Container for the response data |
data.provider_name | Array | List of available FASTag service provider names |
status_code | Integer | HTTP status code of the response |
message_code | String | Short code indicating the status of the request |
message | String | Human-readable message describing the result |
success | Boolean | Indicates whether the request was successful |
{
"data": {
"provider_name": [
"au_bank",
"axis_bank",
"canara_bank",
"union_bank_of_india",
"uco_bank",
"federal_bank_-",
"airtel_payments_bank_netc",
"indian_bank_recharge",
"idfc_first_bank",
"equitas_recharge",
"iob",
"karnataka_bank",
"hdfc_bank",
"yes_bank",
"bajaj_pay",
"bank_of_baroda",
"jammu_and_kashmir_bank",
"indusind_bank",
"idbi_bank",
"indian_highways_management_company_ltd",
"livquik_technology_india_private_limited",
"state_bank_of_india_netc",
"icici_bank",
"south_indian_bank",
"bandhan_bank",
"bank_of_maharashtra",
"kotak_mahindra_bank"
]
},
"status_code": 200,
"message_code": "success",
"message": "Success",
"success": true
}
{
"status_code": 401,
"message_code": "unauthorized",
"message": "Invalid or expired token",
"success": false
}
curl --location --request GET 'https://kyc-api.surepass.app/api/v1/fastag/get-provider-list' \
--header 'Content-Type: application/json'
{
"data": {
"provider_name": [
"au_bank",
"axis_bank",
"canara_bank",
"union_bank_of_india",
"uco_bank",
"federal_bank_-",
"airtel_payments_bank_netc",
"indian_bank_recharge",
"idfc_first_bank",
"equitas_recharge",
"iob",
"karnataka_bank",
"hdfc_bank",
"yes_bank",
"bajaj_pay",
"bank_of_baroda",
"jammu_and_kashmir_bank",
"indusind_bank",
"idbi_bank",
"indian_highways_management_company_ltd",
"livquik_technology_india_private_limited",
"state_bank_of_india_netc",
"icici_bank",
"south_indian_bank",
"bandhan_bank",
"bank_of_maharashtra",
"kotak_mahindra_bank"
]
},
"status_code": 200,
"message_code": "success",
"message": "Success",
"success": true
}