ifsc-nodejs
Version:
node module/API for getting full details about IFSC code.
33 lines (23 loc) • 776 B
Markdown
This is a nodejs API/module for getting IFSC details..(BANK NAME, BRANCH NAME, ADDRESS, CONTACT, CITY, DISTRICT, STATE).
See the [package source](https://github.com/elitesuman/ifsc-nodejs) for more details.
```js
npm install ifsc-nodejs --save
var ifsc = require('ifsc-nodejs');
```
```js
ifsc.getDetails(IFSC, function(error, data){ //In place of IFSC type your IFSC code..like "ABHY0065001"
if(error){
//you will get error message here if IFSC is wrong or something goes wrong
}
else{
//here you will get details as json object
console.log(data);
}
});
```
The code in this repository is licensed under the MIT License. License
text is available in the `LICENSE.txt` file.