IFSC Code Validation Api - Indian Financial System Code (IFSC) is a unique code assigned to each bank branch and used for online money transfers. This API is a reverse lookup to search bank and branch details for a given IFSC code. IFSC verification API is used to search bank and branch details of the given IFSC code. Hence, bank IFSC code verification is very essential for every. Format. The IFSC is an 11-character code with the first four alphabetic characters representing the bank name, and the last six characters (usually numeric, but can be alphabetic) representing the branch. The fifth character is 0 (zero) and reserved for future use. - docs.dhboss.com
What is needed to use this API and how it will work is described below -
Your Api Key : Get API In Profile & eKYC
Name | Type | Description | Mandatory |
---|---|---|---|
ifsc_code | String | {Enter Value} | Yes |
apikeyfill | String | {Enter Value} | Yes |
Name | Type | Description |
---|---|---|
code | integer | 200 |
status | string | success |
response.DISTRICT | string | MUMBAI |
response.ADDRESS | string | Ground Floor, Lodha Supremus, Senapati Bapat Marg, Lower Parel, Mumbai 400013 |
response.STATE | string | MAHARASHTRA |
response.IMPS | boolean | 1 |
response.SWIFT | NULL | |
response.BRANCH | string | Lower Parel |
response.NEFT | boolean | 1 |
response.ISO3166 | string | IN-MH |
response.CENTRE | string | MUMBAI |
response.RTGS | boolean | 1 |
response.CONTACT | string | +912233477831 |
response.UPI | boolean | 1 |
response.MICR | string | 400532047 |
response.CITY | string | GREATER BOMBAY |
response.BANK | string | Yes Bank |
response.BANKCODE | string | YESB |
response.IFSC | string | YESB0000419 |
https://api.dhboss.com/apicall/ifsc_validation/
ifsc_code=value&apikeyfill=value
<?php $curl = curl_init(); curl_setopt_array($curl, array( CURLOPT_URL => 'https://api.dhboss.com/apicall/ifsc_validation/', 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 => 'ifsc_code=YESB0DNB022&apikeyfill=code', )); $response = curl_exec($curl); curl_close($curl); echo $response; ?>
{ "code": 200, "status": "success", "response": { "DISTRICT": "MUMBAI", "ADDRESS": "Ground Floor, Lodha Supremus, Senapati Bapat Marg, Lower Parel, Mumbai 400013", "STATE": "MAHARASHTRA", "IMPS": true, "SWIFT": null, "BRANCH": "Lower Parel", "NEFT": true, "ISO3166": "IN-MH", "CENTRE": "MUMBAI", "RTGS": true, "CONTACT": "+912233477831", "UPI": true, "MICR": "400532047", "CITY": "GREATER BOMBAY", "BANK": "Yes Bank", "BANKCODE": "YESB", "IFSC": "YESB0000419" } }