Skip to content

You can fetch Bank Details by Using Ifsc code as well as city and bank name.These API's are JWT authenticated kindly use username and password for verification.

Notifications You must be signed in to change notification settings

imdad000/Fyle_Bank_API

Repository files navigation

Provding Bank Detail Using DjangoRest-Framework

REST API service that can provide:

  1. Give a bank branch IFSC code, get branch details
  2. Give a bank name and city, gets details of all branches of the bank in the city

Demo For IFSC code-

https://dudley-poutine-54936.herokuapp.com/api/getbank/ABHY0065002 

Demo For City and Bank -

https://dudley-poutine-54936.herokuapp.com/api/bankdetail/MUMBAI/ABHYUDAYA%20COOPERATIVE%20BANK%20LIMITED

Git Clone:

https://github.com/imdad000/Fyle_Bank_API

Database which is to be created and then make a table consists of:

CREATE TABLE banks (
    name character varying(49),
    id bigint NOT NULL
);

CREATE TABLE branches (
    ifsc character varying(11) NOT NULL,
    bank_id bigint,
    branch character varying(74),
    address character varying(195),
    city character varying(50),
    district character varying(50),
    state character varying(26)
);

Install requirements using:

pip install .

About

You can fetch Bank Details by Using Ifsc code as well as city and bank name.These API's are JWT authenticated kindly use username and password for verification.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published