https://github.com/riz4d/ifsc-api
Flask Api to retrieve information about a specific bank branch using its IFSC code.
https://github.com/riz4d/ifsc-api
datasets flask-application ifsc-api pandas-library
Last synced: 2 months ago
JSON representation
Flask Api to retrieve information about a specific bank branch using its IFSC code.
- Host: GitHub
- URL: https://github.com/riz4d/ifsc-api
- Owner: riz4d
- License: mit
- Created: 2023-08-15T13:09:44.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-08-15T13:55:31.000Z (almost 2 years ago)
- Last Synced: 2025-02-08T07:13:59.178Z (4 months ago)
- Topics: datasets, flask-application, ifsc-api, pandas-library
- Language: CSS
- Homepage: https://ifsc.rizad.me/
- Size: 7.24 MB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# IFSC Api
Flask Api to retrieve information about a specific bank branch using its IFSC code. This information may include details such as the bank's name, branch name, address, contact information, and more
### Api Homepage
[API Homepage](https://ifsc.rizad.me/)
### Return Data's
- Bank Name.
- Branch Name.
- City.
- District
- State
- Contact Number.
- Address.
- MICR.
- etc..## API Endpoint
#### Request
- Method: GET
- URL: `http://ifsc.rizad.me/?ifsc=`Replace `` with the desired IFSC code.
#### Response
Example Response:
```json
{
"MICR":"123456678",
"BRANCH":"Example Branch",
"ADDRESS":"123 Main Street, City",
"STATE":"Example State",
"CONTACT":"+1234567890",
"UPI":true,
"RTGS":true,
"CITY":"Example City",
"CENTRE":"Example Centre",
"DISTRICT":"Example District",
"NEFT":true,
"IMPS":true,
"SWIFT":null,
"ISO3166":"IN-KL",
"BANK":"Example Bank",
"BANKCODE":"ABC",
"IFSC":"ABCD0123456"
}
```
### Installation1. Clone the repository:
```bash
git clone https://github.com/riz4d/IFSC-Api
cd IFSC-Api
```
2. Install the required packages:```bash
pip install -r requirements.txt
```3. Run the Flask application:
```bash
python3 app.py
```5. Access the api in your browser at `http://127.0.0.1/?ifsc=`.
### License
This project is licensed under the [MIT License](LICENSE).