Table of contents

Verify Fastag and Get Balance

Verify and get real-time balance of the Fastag account using vehicle number.

Periodically call the below listFastagProvider API to get the list of Fastag providers and store it in your database. (Advisable - 15 days once)

Request

API URL: https://api.bulkpe.in/client/listFastagProvider

Method: GET

Response

Below is only a sample data set.

{ "status": true, "statusCode": 200, "data": [ { "operator_code": "AXIS00000NAT31", "operator_name": "Axis Bank Fastag" }, { "operator_code": "AIRT00000NATVI", "operator_name": "Airtel Payments Bank NETC FASTag" }, { "operator_code": "INDI00000NATA0", "operator_name": "Indian Bank Fastag Recharge" }, { "operator_code": "IDFC00000NATXM", "operator_name": "IDFC FIRST Bank FASTag" } ], "message": "Provider details fetched!" }

Request

API URL: https://api.bulkpe.in/client/verifyFastag

Method: POST

Body:

{ "vrn": "TN01BJ0001", //vehicle registered number "provider": "IDFC00000NATXM", //provider ID - get the same from listFastagProvider API "reference": "test0001" //unique reference number }

Response

{ "status": true, "statusCode": 200, "data": { "reference": "test0001", "txnId": "DVL0013530", //Bulkpe reference ID "customerName": "Fastag Holder Name will Appear here", "availableRechargeLimit": "9697", "availableBalance": "303", "tagStatus": "Activated", "vehicleClass": "4", "vehicleClassDesc": "Car / Jeep / Van" }, "message": "Fastag details fetched!" }