API Documentation DH-Boss


FASTag Details API - DHBOSS API

FASTag Developer API - You can either check your recent SMS for your FASTag transaction, which will show you your current FASTag balance. Alternatively, if you have the NHAI FASTag, FASTag has been developed by the National Payments Corporation of India (NPCI) as part of its National Electronic Toll Collection (NETC) program to offer a nationwide electronic toll solution. FASTag devices are live at 650+ toll plazas across the country and are expected to grow rapidly. - docs.dhboss.com


GET/POST : fastag_details

What is needed to use this API and how it will work is described below -
Your Api Key : Get API In Profile & eKYC

Input Parameters Detail
Name Type Description Mandatory
registration_no String {Enter Value} Yes
billerid String {Enter Value} Yes
apikeyfill String {Enter Value} Yes

Output Parameters Detail
Name Type Description
status integer 200
message string Success
response.biller string Kotak Mahindra Bank FASTag
response.customer_name string FARIDH
response.vehicle_registered_number string CG10NC****
response.bill_date string 2024-02-20
response.bill_number string GID2403B66D743625
response.maximum_permissible_recharge_amount string 9910.00
response.tag_status string Active
response.minimum_top-up_amount string 200
response.wallet_balance string 10.00







Other Input Parameters Detail
Name Type Description
bank billerid
AU Bank Fastag AUBA00000NATOF
Axis Bank Fastag AXIS00000NAT31
Bandhan Bank Fastag BAND00000NATEO
Bank of Maharashtra FASTag BANK00000NAT4Z
Bank of Baroda FASTag BANK00000NATDH
Canara Bank Fastag CANA00000NATM9
Equitas FASTag Recharge EQUI00000NATNF
HDFC Bank FASTag HDFC00000NAT5K
IDBI Bank FASTag IDBI00000NATK7
IDFC FIRST Bank FASTag IDFC00000NATXM
Indian Bank Fastag Recharge INDI00000NATA0
Indian Highways Management Company Ltd FASTag INDI00000NATTR
IndusInd Bank FASTag INDU00000NATR2
IOB FASTag IOBF00000NATV1
Jammu and Kashmir Bank FASTag JAMM00000NATWB
Karnataka Bank FASTag KARN00000NATWS
Kotak Mahindra Bank FASTag KOTA00000NATJZ
LivQuik Technology India Private Limited LIVQ00000MAHMZ
Paytm Payments Bank FASTag PAYT00000NATTQ
State Bank of India - NETC FASTag SBIB00000NAT25
South Indian Bank Fastag SOUT00000NAT99
Federal Bank - FASTag THEF00000NATZO
ICICI Bank FASTag TOLL00000NAT72
UCO Bank FASTag UCOB00000NATEH
Union Bank of India FASTag UNIO00000NATQA






Call API URL
https://api.dhboss.com/apicall/fastag_details/
API Call Request Parameters
registration_no=value&billerid=value&apikeyfill=value                                                   
API Call Example Request
<?php

$curl = curl_init();

curl_setopt_array($curl, array(
  CURLOPT_URL => 'https://api.dhboss.com/apicall/fastag_details/',
  CURLOPT_RETURNTRANSFER => true,
  CURLOPT_ENCODING => '',
  CURLOPT_MAXREDIRS => 10,
  CURLOPT_TIMEOUT => 0,
  CURLOPT_FOLLOWLOCATION => true,
  CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
  CURLOPT_CUSTOMREQUEST => 'POST',
  CURLOPT_POSTFIELDS => 'registration_no=value&billerid=value&apikeyfill=5********5
',
 
));

$response = curl_exec($curl);

curl_close($curl);
echo $response;
?>
API Hit Example Response
{
	"status": 200,
	"message": "Success",
	"response": {
		"biller": "Kotak Mahindra Bank FASTag",
		"customer_name": "FARIDH",
		"vehicle_registered_number": "CG10NC****",
		"bill_date": "2024-02-20",
		"bill_number": "GID2403B66D743625",
		"maximum_permissible_recharge_amount": "9910.00",
		"tag_status": "Active",
		"minimum_top-up_amount": "200",
		"wallet_balance": "10.00"
	}
}