Skip to content
/ IFSC-Api Public

Flask Api to retrieve information about a specific bank branch using its IFSC code.

License

Notifications You must be signed in to change notification settings

riz4d/IFSC-Api

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

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=<ifsc_code>

Replace <ifsc_code> with the desired IFSC code.

Response

Example Response:

{
"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"
}

Installation

  1. Clone the repository:

    git clone https://github.com/riz4d/IFSC-Api
    cd IFSC-Api
  2. Install the required packages:

    pip install -r requirements.txt
  3. Run the Flask application:

    python3 app.py
  4. Access the api in your browser at http://127.0.0.1/?ifsc=<ifsc-code>.

License

This project is licensed under the MIT License.

About

Flask Api to retrieve information about a specific bank branch using its IFSC code.

Topics

Resources

License

Stars

Watchers

Forks