www.rbi.org.in
Open in
urlscan Pro
2620:1ec:4b::43
Public Scan
URL:
https://www.rbi.org.in/scripts/banklinks.aspx
Submission: On August 10 via api from IN — Scanned from DE
Submission: On August 10 via api from IN — Scanned from DE
Form analysis
1 forms found in the DOMPOST ./banklinks.aspx
<form method="post" action="./banklinks.aspx" id="frmBanklinks">
<div class="aspNetHidden">
<input type="hidden" name="__EVENTTARGET" id="__EVENTTARGET" value="">
<input type="hidden" name="__EVENTARGUMENT" id="__EVENTARGUMENT" value="">
<input type="hidden" name="__VIEWSTATE" id="__VIEWSTATE" value="/wEPDwUKMTYzNTU3MDg4OGRkXgwEXzJ/11fc54fCbDm9Fla0o8t6IX85zendqDd9nH4=">
</div>
<script type="text/javascript">
//<![CDATA[
var theForm = document.forms['frmBanklinks'];
if (!theForm) {
theForm = document.frmBanklinks;
}
function __doPostBack(eventTarget, eventArgument) {
if (!theForm.onsubmit || (theForm.onsubmit() != false)) {
theForm.__EVENTTARGET.value = eventTarget;
theForm.__EVENTARGUMENT.value = eventArgument;
theForm.submit();
}
}
//]]>
</script>
<div class="aspNetHidden">
<input type="hidden" name="__VIEWSTATEGENERATOR" id="__VIEWSTATEGENERATOR" value="C3882811">
<input type="hidden" name="__EVENTVALIDATION" id="__EVENTVALIDATION"
value="/wEdAAY7k3kqn9Q3vA+4FvDBEi77i6wX7g7V+51d5y/uZ409MWQ6cu1iZ73N7YF2NPAmCyQ/q33cCQLgaFQSElESF1pcfcX9ZaEV78oETjPwNTvjRyaLpyghhgB3dOM81YQT2c+X2TnkJ+ONIW5adfeFyFpYKakqnyYo6PjWNp8FOcNTjw==">
</div>
<link href="/JQuery/css/jquery-ui-1.8.18.custom2.css" rel="stylesheet" type="text/css">
<link href="/includes/print.css" rel="stylesheet" media="print" type="text/css">
<link href="/Styles/960.css" rel="stylesheet" type="text/css">
<link href="/Includes1/rbi.css?v=3.0" rel="Stylesheet" type="text/css">
<script type="text/javascript" src="/js/libs/jquery-1.7.2.min.js"></script>
<script type="text/javascript" src="/JQuery/ui/jquery.ui.revampRBI.js"></script>
<script type="text/javascript" src="/js/ImgSaveDisable.js"></script>
<!--<script src='//tw.netcore.co.in/smartechclient.js'></script>
<script>
smartech('create', 'ADGMOT35CHFLVDHBJNIG50K968AU3Q5FOE3L6REE67CQ9HGBQ58G');
smartech('register', '4d6884e503ecf55a3339a37e98b711da');
smartech('identify', '');
smartech('dispatch', 1, { });
</script>-->
<script type="text/javascript">
//Redirect to mobile site start
function detectmob() {
if (screen.width <= 599 || screen.Height <= 975) {
return true;
} else {
return false;
}
}
if (detectmob()) {
window.location.href = "https://m.rbi.org.in" + window.location.pathname;
}
//Redirect to mobile site End
$(document).ready(function() {
Search();
});
function Search() {
highlightTextAutocomplete();
$(".autoSuggest").autocomplete({
source: function(request, response) {
var param = {
keyWord: document.getElementById('txtSearch').value
};
$.ajax({
url: "../Home.aspx/GetKeywords",
data: JSON.stringify(param),
dataType: "json",
type: "POST",
contentType: "application/json; charset=utf-8",
dataFilter: function(data) {
return data;
},
success: function(data) {
if (data.d.length > 0) {
response($.map(data.d, function(item) {
return {
value: RemoveSpecialChars(item)
}
}))
} else {
response([{
label: "No results found",
value: ""
}]);
}
},
error: function(XMLHttpRequest, textStatus, errorThrown) {
alert(textStatus);
}
});
},
// select: function (event, ui) {
// if (ui.item.value != "") {
// window.open("/scripts/SearchResults.aspx?search=" + ui.item.value, '_blank');
// }
// },
minLength: 3
});
}
function highlightTextAutocomplete() {
var oldFn = $.ui.autocomplete.prototype._renderItem;
$.ui.autocomplete.prototype._renderItem = function(ul, item) {
var t = String(item.value).replace(new RegExp(this.term, "gi"), "<span class='ui-state-highlight'>$&</span>");
if (item.value != "") {
return $("<li class='borderAutocomplete'></li>").data("item.autocomplete", item).append("<a>" + t + "</a>").appendTo(ul);
} else {
return $("<li></li>").data("item.autocomplete", item).append("").appendTo(ul);
}
};
}
function RemoveSpecialChars(inputText) {
var filteredString = inputText.replace(/[\*\^\'\!\@\$\.\#\(\)\-\?\<\>\;\"\&\+\{\}\:]/g, '');
//alert(filteredString);
return filteredString;
}
// jQuery(document).ready(function () {
// var xmlhttp;
// jQuery("#txtSearch").autocomplete(
// {
// minLength: 3,
// delay: 0,
// source: function (request, response) {
// if (!xmlhttp) {
// if (window.XMLHttpRequest) {// code for IE7+, Firefox, Chrome, Opera, Safari
// xmlhttp = new XMLHttpRequest();
// }
// else {// code for IE6, IE5
// xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
// }
// }
// else if (xmlhttp.readyState != 0) {
// xmlhttp.abort();
// }
// xmlhttp.onreadystatechange = function () {
// if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
// fetchedKeywords = xmlhttp.responseText.split("'");
//
// if (fetchedKeywords.length > 10) {
// fetchedKeywords.splice(10, fetchedKeywords.length - 10);
// }
// if (fetchedKeywords != "") response(fetchedKeywords);
// else response(null);
// }
// }
// var input = document.getElementById("txtSearch").value;
// xmlhttp.open("POST", "/Webservice/KeywordSearch.ashx?q=" + input, true);
// xmlhttp.send();
// }
// });
// });
function LoadSearchData(id, key) {
if (id == "txtSearch") {
if (key == 13) {
validateSearchText();
return false;
}
} else validateSearchText();
return true;
}
function validateSearchText() {
if (validation()) {
var strloc = new String(document.location.href.toString());
if (strloc.indexOf("SearchResults.aspx") == -1) { //
window.open("/scripts/SearchResults.aspx?search=" + document.getElementById("txtSearch").value);
} else window.open("/scripts/SearchResults.aspx?search=" + document.getElementById("txtSearch").value, '_parent');
}
}
function validation() {
strSearch = trim(document.getElementById('txtSearch').value);
if (strSearch == "") {
alert('Please enter the search text');
return false;
} else {
//var strFilterChars = new RegExp("[~`!@#$%^&*()_+-={}\\[\\]:/\\\\\";|'<>,.?]");
var strFilterChars = new RegExp("^[0-9a-zA-Z ]*$");
if (!strFilterChars.test(strSearch)) {
alert("Please remove special characters from search text");
return false;
}
}
return true;
}
function trim(value) {
value = value.replace(/^\s+/, '');
value = value.replace(/\s+$/, '');
return value;
}
</script>
<style type="text/css">
.blink_msm1 {
-webkit-animation-name: blinker;
-webkit-animation-duration: 3s;
-webkit-animation-timing-function: linear;
-webkit-animation-iteration-count: infinite;
-moz-animation-name: blinker;
-moz-animation-duration: 3s;
-moz-animation-timing-function: linear;
-moz-animation-iteration-count: infinite;
animation-name: blinker;
animation-duration: 3s;
animation-timing-function: linear;
animation-iteration-count: infinite;
}
@-moz-keyframes blinker {
0% {
opacity: 1.0;
}
50% {
opacity: 0.0;
}
100% {
opacity: 1.0;
}
}
@-webkit-keyframes blinker {
0% {
opacity: 1.0;
}
50% {
opacity: 0.0;
}
100% {
opacity: 1.0;
}
}
@keyframes blinker {
0% {
opacity: 1.0;
}
50% {
opacity: 0.0;
}
100% {
opacity: 1.0;
}
}
</style>
<div class="top_setting">
<div class="container_12">
<div class="grid_5 top_settings">
<a href="#mainsection">Skip to main content </a>
</div>
<div id="UsrFontCntr_tblThemes" style="float: right" class="grid_4 prefix_3 top_settings">
<span class="fonts">
<a id="UsrFontCntr_LinkBtnFontIncrease" title="Increase Font Size" href="javascript:__doPostBack('UsrFontCntr$LinkBtnFontIncrease','')" style="text-decoration:none;"><img src="/images/font-increase.gif" alt="Increase Font Size"></a></span>
<span class="fonts">
<a id="UsrFontCntr_LinkBtnFontRegular" class="aspNetDisabled" title="Regular Font Size" style="text-decoration:none;"><img src="/images/font-reset.gif" alt="Regular Font Size"></a></span>
<span class="fonts">
<a id="UsrFontCntr_LinkBtnFontDecrease" title="Decrease Font Size" href="javascript:__doPostBack('UsrFontCntr$LinkBtnFontDecrease','')" style="text-decoration:none;"><img src="/images/font-decrease.gif" alt="Decrease Font Size"></a></span>
<span class="black">
<a id="UsrFontCntr_LinkBtnAccessibilty" title="Apply Dark Theme" href="javascript:__doPostBack('UsrFontCntr$LinkBtnAccessibilty','')" style="text-decoration:none;"><img src="/images/dark-theme.gif" alt="Apply Dark Theme"></a></span>
<span class="white">
<a id="UsrFontCntr_LinkBtnUndoAccessibilty" class="aspNetDisabled" title="Apply Normal Theme" style="text-decoration:none;"><img src="/images/bright-theme.gif" alt="Apply Normal Theme"></a></span>
<a onclick="javascript:window.print();" id="A1" title="Print This Page">
<img src="/images/print-icon.png" alt="Print this page" class="print"></a>
<div style="float: right">
<label style="margin-right: 6px;color: #000000;"> Language</label><a class="lnk-language" id="lnkhindi" title="Hindi site" href="https://www.rbi.org.in/hindi/Home.aspx">हिंदी</a>
</div>
</div>
<div class="clearfix">
</div>
</div>
</div>
<div class="container_12">
<div class="grid_4" role="banner">
<h1 class="logo">
<a href="/home.aspx">
<img src="/images/rbi-company-logo.jpg" alt="Reserve Bank of India"></a>
</h1>
</div>
<div class="grid_5" align="right" role="search" style="float: right">
<label for="searchbox" class="search_label"> Search the Website</label>
<input name="UsrFontCntr$txtSearch" type="text" maxlength="103" id="txtSearch" class="search_box autoSuggest ui-autocomplete-input" onkeydown="return LoadSearchData('txtSearch',event.keyCode);" placeholder="Search" autocomplete="off">
<button id="btnSearch" onclick="return LoadSearchData('btnSearch',event.keyCode);" type="button" class="search_button"> Search</button>
</div>
<div class="grid_2" align="CENTER" role="" style="float: right">
<h1 class="logo">
<a>
<img src="../images/AzadLogo.png" alt="AzadLogo" style="padding-top: 10px;">
</a>
</h1>
</div>
<div class="clearfix">
</div>
</div>
<!-- NAVIGATION START-->
<nav role="navigation">
<div class="top-newmenu">
<div class="midmenu">
<ul>
<li><a href="https://rbi.org.in/home.aspx">Home</a></li>
<li><a href="/Scripts/AboutusDisplay.aspx">About Us</a></li>
<li><a href="/Scripts/NotificationUser.aspx">Notifications</a></li>
<li><a href="/Scripts/BS_PressReleaseDisplay.aspx">Press Releases</a></li>
<li><a href="#">Speeches & Media Interactions<img src="/images/down.gif" class="downarrowclass" style="border:0; padding-left: 5px"></a>
<ul>
<li><a href="/Scripts/BS_ViewSpeeches.aspx">Speeches</a></li>
<li><a href="/Scripts/BS_ViewInterviews.aspx">Media Interactions</a></li>
<li><a href="/Scripts/Lectures.aspx">Memorial Lectures</a></li>
</ul>
</li>
<li><a href="#">Publications <img src="/images/down.gif" class="downarrowclass" style="border:0; padding-left: 5px"></a>
<ul>
<li><a href="/Scripts/Publications.aspx?publication=Annual">Annual</a></li>
<li><a href="/Scripts/Publications.aspx?publication=HalfYearly">Half-Yearly</a></li>
<li><a href="/Scripts/Publications.aspx?publication=Quarterly">Quarterly</a></li>
<li><a href="/Scripts/Publications.aspx?publication=Bimonthly">Bi-monthly</a></li>
<li><a href="/Scripts/Publications.aspx?publication=Monthly">Monthly</a></li>
<li><a href="/Scripts/Publications.aspx?publication=Weekly">Weekly</a></li>
<li><a href="/Scripts/Publications.aspx?publication=Occasional">Occasional</a></li>
<li><a href="/Scripts/Publications.aspx?publication=Reports">Reports</a></li>
<li><a href="/Scripts/OccasionalPublications.aspx?head=Working Papers">Working Papers</a></li>
</ul>
</li>
<li><a href="#">Legal Framework <img src="/images/down.gif" class="downarrowclass" style="border:0; padding-left: 5px"></a>
<ul>
<li><a href="/Scripts/Act.aspx">Act </a></li>
<li><a href="/Scripts/Rules.aspx">Rules </a></li>
<li><a href="/Scripts/Regulations.aspx">Regulations </a></li>
<li><a href="/Scripts/Schemes.aspx">Schemes </a></li>
</ul>
</li>
<li><a href="#">Research <img src="/images/down.gif" class="downarrowclass" style="border:0; padding-left: 5px"></a>
<ul>
<li><a href="/Scripts/ExternalResearchSchemes.aspx">External Research Schemes</a></li>
<li><a href="/Scripts/OccasionalPapers.aspx">RBI Occasional Papers</a></li>
<li><a href="/Scripts/OccasionalPublications.aspx?head=Working%20Papers">Working Papers</a></li>
<li><a href="/Scripts/BS_ViewBulletin.aspx">RBI Bulletin</a></li>
<li><a href="/Scripts/Project1.aspx">History</a></li>
<li><a href="/Scripts/Occas_DRG_Studies.aspx">DRG Studies</a></li>
<li><a href="/Scripts/KLEMS.aspx">KLEMS</a></li>
<li><a href="/Scripts/StateStatisticsFinances.aspx">State Statistics and Finances</a></li>
</ul>
</li>
<li><a href="#">Statistics <img src="/images/down.gif" class="downarrowclass" style="border:0; padding-left: 5px"></a>
<ul>
<li><a href="/Scripts/Statistics.aspx">Data Releases</a></li>
<li><a href="https://dbie.rbi.org.in/DBIE/dbie.rbi?site=home" target="_blank">Database on Indian Economy</a></li>
<li><a href="/scripts/FS_PDS.aspx">Public Debt Statistics</a></li>
</ul>
</li>
<li><a href="#">Regulatory Reporting<img src="/images/down.gif" class="downarrowclass" style="border:0; padding-left: 5px"></a>
<ul>
<li><a href="/scripts/BS_Listofallreturns.aspx">List of Returns</a></li>
<li><a href="/scripts/DataDefinition.aspx">Data Definition</a>
<!--<ul>
<li><a href="../scripts/Assets.aspx">Assets</a></li>
<li><a href="../Scripts/Liabilities.aspx">Liabilities</a></li>
<li><a href="../Scripts/OffBalanceSheetItems.aspx">Off-Balance Sheet Items</a></li>
<li><a href="../Scripts/ProfitandLossAccountItems.aspx">Profit and Loss Account Items</a></li>
<li><a href="../Scripts/Miscellaneous.aspx">Miscellaneous</a></li>
</ul>-->
</li>
<li><a href="/scripts/ValidationRules.aspx">Validation rules/ Taxonomy</a></li>
<li><a href="/scripts/ReportingPlaform.aspx">List of RBI Reporting Portals</a></li>
<li><a href="/scripts/ReportingFAQ.aspx">FAQs of RBI Reporting Portals</a></li>
</ul>
</li>
</ul>
</div>
</div>
</nav>
<!-- NAVIGATION END-->
<!--HEADER END-->
<input type="submit" name="UsrFontCntr$btn" value="" id="btn" style="visibility: hidden; height: 0px; width: 0px;">
<div class="container_12">
<a id="mainsection" name="mainsection"></a>
<div class="grid_12 breadcrumbs">
<ul>
<li><a href="../Home.aspx">Home</a></li>
<li><a href="../scripts/otherlinks.aspx">Other Links</a></li>
</ul>
</div>
<div class="clear">
</div>
<div class="grid_12 omega">
<div class="text1">
<h2 class="page_title"> Websites of Banks in India</h2>
<div id="example-min" class="text1">
<table width="100%" cellspacing="1" cellpadding="3" border="0" align="center" class="tablebg">
<tbody>
<tr>
<th colspan="2" align="left">List of Private Sector Banks in India</th>
</tr>
<tr>
<th width="11%" align="center">Sr. No</th>
<th width="89%" align="left">Name of the Bank</th>
</tr>
<tr>
<td align="center">1</td>
<td><a href="https://www.axisbank.com/" target="_blank" class="link1">Axis Bank Ltd.</a></td>
</tr>
<tr>
<td align="center">2</td>
<td><a href="https://www.bandhanbank.com/" target="_blank" class="link1">Bandhan Bank Ltd.</a></td>
</tr>
<tr>
<td align="center">3</td>
<td><a href="http://www.csb.co.in/" target="_blank" class="link1">CSB Bank Limited</a></td>
</tr>
<tr>
<td align="center">4</td>
<td><a href="https://www.cityunionbank.com/" target="_blank" class="link1">City Union Bank Ltd.</a></td>
</tr>
<tr>
<td align="center">5</td>
<td><a href="https://www.dcbbank.com/" target="_blank" class="link1">DCB Bank Ltd.</a></td>
</tr>
<tr>
<td align="center">6</td>
<td><a href="https://www.dhanbank.com/" target="_blank" class="link1">Dhanlaxmi Bank Ltd.</a></td>
</tr>
<tr>
<td align="center">7</td>
<td><a href="https://www.federalbank.co.in/" target="_blank" class="link1">Federal Bank Ltd.</a></td>
</tr>
<tr>
<td align="center">8</td>
<td><a href="https://www.hdfcbank.com/" target="_blank" class="link1">HDFC Bank Ltd</a></td>
</tr>
<tr>
<td align="center">9</td>
<td><a href="https://www.icicibank.com/" target="_blank" class="link1">ICICI Bank Ltd.</a></td>
</tr>
<tr>
<td align="center">10</td>
<td><a href="https://www.indusind.com/" target="_blank" class="link1">IndusInd Bank Ltd</a></td>
</tr>
<tr>
<td align="center">11</td>
<td><a href="https://www.idfcbank.com/" target="_blank" class="link1">IDFC FIRST Bank Limited</a></td>
</tr>
<tr>
<td align="center">12</td>
<td><a href="https://www.jkbank.com/" target="_blank" class="link1">Jammu & Kashmir Bank Ltd.</a></td>
</tr>
<tr>
<td align="center">13</td>
<td><a href="https://karnatakabank.com/" target="_blank" class="link1">Karnataka Bank Ltd.</a></td>
</tr>
<tr>
<td align="center">14</td>
<td><a href="http://www.kvb.co.in/" target="_blank" class="link1">Karur Vysya Bank Ltd.</a></td>
</tr>
<tr>
<td align="center">15</td>
<td><a href="https://www.kotak.com/" target="_blank" class="link1">Kotak Mahindra Bank Ltd</a></td>
</tr>
<tr>
<td align="center">16</td>
<td><a href="http://www.nainitalbank.co.in/" target="_blank" class="link1">Nainital bank Ltd.</a></td>
</tr>
<tr>
<td align="center">17</td>
<td><a href="https://www.rblbank.com/" target="_blank" class="link1">RBL Bank Ltd.</a></td>
</tr>
<tr>
<td align="center">18</td>
<td><a href="https://www.southindianbank.com/" target="_blank" class="link1">South Indian Bank Ltd.</a></td>
</tr>
<tr>
<td align="center">19</td>
<td><a href="http://www.tmb.in/" target="_blank" class="link1">Tamilnad Mercantile Bank Ltd.</a></td>
</tr>
<tr>
<td align="center">20</td>
<td><a href="https://www.yesbank.in/" target="_blank" class="link1">YES Bank Ltd.</a></td>
</tr>
<tr>
<td align="center">21</td>
<td align="left" class="head"><a href="https://www.idbi.com" target="_blank" class="link1">IDBI Bank Limited</a></td>
</tr>
<tr>
<th colspan="2" align="left">List of Local Area Banks (LAB)</th>
</tr>
<tr>
<td align="center">1</td>
<td><a href="http://www.coastalareabank.com/" target="_blank" class="link1">Coastal Local Area Bank Ltd</a></td>
</tr>
<tr>
<td align="center">2</td>
<td><a href="http://www.kbsbankindia.com/" target="_blank" class="link1">Krishna Bhima Samruddhi LAB Ltd</a></td>
</tr>
<tr>
<th colspan="2" align="left">List of Small Finance Banks (SFB)</th>
</tr>
<tr>
<td align="center">1</td>
<td><a href="https://www.aubank.in/" target="_blank" class="link1">Au Small Finance Bank Ltd.</a></td>
</tr>
<tr>
<td align="center">2</td>
<td><a href="http://www.capitalbank.co.in/" target="_blank" class="link1">Capital Small Finance Bank Ltd</a></td>
</tr>
<tr>
<td align="center">3</td>
<td><a href="http://fincarebank.com/" target="_blank" class="link1">Fincare Small Finance Bank Ltd.</a></td>
</tr>
<tr>
<td align="center">4</td>
<td><a href="https://www.equitasbank.com/" target="_blank" class="link1">Equitas Small Finance Bank Ltd</a></td>
</tr>
<tr>
<td align="center">5</td>
<td><a href="https://www.esafbank.com/" target="_blank" class="link1">ESAF Small Finance Bank Ltd.</a></td>
</tr>
<tr>
<td align="center">6</td>
<td><a href="https://www.suryodaybank.com/" target="_blank" class="link1">Suryoday Small Finance Bank Ltd.</a></td>
</tr>
<tr>
<td align="center">7</td>
<td><a href="https://www.ujjivansfb.in/" target="_blank" class="link1">Ujjivan Small Finance Bank Ltd.</a></td>
</tr>
<tr>
<td align="center">8</td>
<td><a href="https://www.utkarsh.bank/" target="_blank" class="link1">Utkarsh Small Finance Bank Ltd.</a></td>
</tr>
<tr>
<td align="center">9</td>
<td align="left"><a href="https://nesfb.com/" target="_blank" class="link1">North East Small finance Bank Ltd</a></td>
</tr>
<tr>
<td align="center">10</td>
<td align="left"><a href="https://www.janabank.com/" target="_blank" class="link1">Jana Small Finance Bank Ltd</a></td>
</tr>
<tr>
<td align="center">11</td>
<td align="left"><a href="https://shivalikbank.com/" target="_blank" class="link1">Shivalik Small Finance Bank Ltd</a></td>
</tr>
<tr>
<td align="center">12</td>
<td align="left"><a href="https://theunitybank.com/" target="_blank" class="link1">Unity Small Finance Bank Ltd</a></td>
</tr>
<tr>
<th colspan="2" align="left">List of Payments Banks (PB)</th>
</tr>
<tr>
<td align="center">1</td>
<td><a href="https://www.airtel.in/bank" target="_blank" class="link1">Airtel Payments Bank Ltd</a></td>
</tr>
<tr>
<td align="center">2</td>
<td><a href="https://ippbonline.com/web/ippb" target="_blank" class="link1">India Post Payments Bank Ltd</a></td>
</tr>
<tr>
<td align="center">3</td>
<td><a href="https://www.finobank.com/" target="_blank" class="link1">FINO Payments Bank Ltd</a></td>
</tr>
<tr>
<td align="center">4</td>
<td><a href="http://www.paytmbank.com/" target="_blank" class="link1">Paytm Payments Bank Ltd</a></td>
</tr>
<tr>
<td align="center">5</td>
<td><a href="https://www.jiopaymentsbank.com/" target="_blank" class="link1">Jio Payments Bank Ltd</a></td>
</tr>
<tr>
<td align="center">6</td>
<td><a href="https://nsdlbank.com" target="_blank" class="link1">NSDL Payments Bank Limited</a></td>
</tr>
</tbody>
</table>
<br>
<table width="100%" cellspacing="1" cellpadding="3" border="0" align="center" class="tablebg">
<tbody>
<tr>
<th colspan="2" align="left">List of Public Sector Banks in India</th>
</tr>
<tr>
<th width="11%" align="center">Sr. No</th>
<th width="89%" align="left">Name of the Bank</th>
</tr>
<tr>
<td align="center">1</td>
<td><a href="https://www.bankofbaroda.co.in" target="_blank" class="link1">Bank of Baroda</a></td>
</tr>
<tr>
<td align="center">2</td>
<td><a href="https://www.bankofindia.co.in" target="_blank" class="link1">Bank of India</a></td>
</tr>
<tr>
<td align="center">3</td>
<td><a href="https://www.bankofmaharashtra.in" target="_blank" class="link1">Bank of Maharashtra</a></td>
</tr>
<tr>
<td align="center">4</td>
<td><a href="https://www.canarabank.com" target="_blank" class="link1">Canara Bank</a></td>
</tr>
<tr>
<td align="center">5</td>
<td><a href="https://www.centralbankofindia.co.in" target="_blank" class="link1">Central Bank of India</a></td>
</tr>
<tr>
<td align="center">6</td>
<td><a href="http://www.indianbank.in" target="_blank" class="link1">Indian Bank</a></td>
</tr>
<tr>
<td align="center">7</td>
<td><a href="https://www.iob.in" target="_blank" class="link1">Indian Overseas Bank</a></td>
</tr>
<tr>
<td align="center">8</td>
<td><a href="https://punjabandsindbank.co.in" target="_blank" class="link1">Punjab & Sind Bank</a></td>
</tr>
<tr>
<td align="center">9</td>
<td><a href="https://www.pnbindia.in" target="_blank" class="link1">Punjab National Bank</a></td>
</tr>
<tr>
<td align="center">10</td>
<td><a href="https://www.sbi.co.in" target="_blank" class="link1">State Bank of India</a></td>
</tr>
<tr>
<td align="center">11</td>
<td><a href="https://www.ucobank.com" target="_blank" class="link1">UCO Bank</a></td>
</tr>
<tr>
<td align="center">12</td>
<td><a href="https://www.unionbankonline.co.in" target="_blank" class="link1">Union Bank of India</a></td>
</tr>
</tbody>
</table>
<br>
<table width="100%" cellspacing="1" cellpadding="3" border="0" align="center" class="tablebg">
<tbody>
<tr>
<th colspan="2" align="left">List of Financial Institutions in India</th>
</tr>
<tr>
<th width="10%" align="center">Sr. No</th>
<th width="90%" align="left">Name of the Bank</th>
</tr>
<tr>
<td align="center">1</td>
<td><a href="http://www.nabard.org/" target="_blank" class="link1">National Bank for Agriculture and Rural Development</a></td>
</tr>
<tr>
<td align="center">2</td>
<td><a href="https://www.eximbankindia.in/" target="_blank" class="link1">Export-Import Bank of India</a></td>
</tr>
<tr>
<td align="center">3</td>
<td><a href="https://nhb.org.in/" target="_blank" class="link1">National Housing Bank</a></td>
</tr>
<tr>
<td align="center">4</td>
<td><a href="https://www.sidbi.in/" target="_blank" class="link1">Small Industries Development Bank of India</a></td>
</tr>
</tbody>
</table>
<br>
<table width="100%" border="0" cellpadding="0" cellspacing="1" class="tablebg">
<tbody>
<tr>
<th colspan="2" align="left">List of Regional Rural Banks in India </th>
</tr>
<tr>
<th width="10%">Sr. No.</th>
<th width="90%" align="left">Name of RRB</th>
</tr>
<tr>
<td align="center">1</td>
<td><a href="http://www.agvbank.co.in/" target="_blank" class="link1">Assam Gramin Vikash Bank</a></td>
</tr>
<tr>
<td align="center">2</td>
<td><a href="https://www.apgvbank.in/" target="_blank" class="link1">Andhra Pradesh Grameena Vikas Bank</a></td>
</tr>
<tr>
<td align="center">3</td>
<td><a href="http://www.apgb.in/" target="_blank" class="link1">Andhra Pragathi Grameena Bank</a></td>
</tr>
<tr>
<td align="center">4</td>
<td><a href="https://www.apruralbank.com/" target="_blank" class="link1">Arunachal Pradesh Rural Bank</a></td>
</tr>
<tr>
<td align="center">5</td>
<td><a href="http://www.aryavart-rrb.com/" target="_blank" class="link1">Aryavart Bank</a></td>
</tr>
<tr>
<td align="center">6</td>
<td><a href="https://bgvb.in/" target="_blank" class="link1">Bangiya Gramin Vikash Bank</a></td>
</tr>
<tr>
<td align="center">7</td>
<td><a href="http://www.bggb.in/" target="_blank" class="link1">Baroda Gujarat Gramin Bank</a></td>
</tr>
<tr>
<td align="center">8</td>
<td><a href="http://www.brkgb.com/" target="_blank" class="link1">Baroda Rajasthan Kshetriya Gramin Bank</a></td>
</tr>
<tr>
<td align="center">9</td>
<td><a href="http://www.barodagraminbank.com/" target="_blank" class="link1">Baroda UP Bank</a></td>
</tr>
<tr>
<td align="center">10</td>
<td><a href="http://www.cggb.in/" target="_blank" class="link1">Chaitanya Godavari GB</a></td>
</tr>
<tr>
<td align="center">11</td>
<td><a href="http://www.cgbank.in/" target="_blank" class="link1">Chhattisgarh Rajya Gramin Bank</a></td>
</tr>
<tr>
<td align="center">12</td>
<td><a href="http://www.dbgb.in/" target="_blank" class="link1">Dakshin Bihar Gramin Bank</a></td>
</tr>
<tr>
<td align="center">13</td>
<td><a href="https://www.edb.org.in/" target="_blank" class="link1">Ellaquai Dehati Bank</a></td>
</tr>
<tr>
<td align="center">14</td>
<td><a href="http://www.hpgb.in/" target="_blank" class="link1">Himachal Pradesh Gramin Bank</a></td>
</tr>
<tr>
<td align="center">15</td>
<td><a href="http://www.jkgb.in/" target="_blank" class="link1">J&K Grameen Bank</a></td>
</tr>
<tr>
<td align="center">16</td>
<td><a href="http://www.jrgb.in/" target="_blank" class="link1">Jharkhand Rajya Gramin Bank</a></td>
</tr>
<tr>
<td align="center">17</td>
<td><a href="http://www.karnatakagraminbank.com/" target="_blank" class="link1">Karnataka Gramin Bank</a></td>
</tr>
<tr>
<td align="center">18</td>
<td><a href="http://www.kvgbank.com/" target="_blank" class="link1">Karnataka Vikas Gramin Bank</a></td>
</tr>
<tr>
<td align="center">19</td>
<td><a href="http://www.keralagbank.com/" target="_blank" class="link1">Kerala Gramin Bank</a></td>
</tr>
<tr>
<td align="center">20</td>
<td><a href="https://www.mpgb.co.in/" target="_blank" class="link1">Madhya Pradesh Gramin Bank</a></td>
</tr>
<tr>
<td align="center">21</td>
<td><a href="http://www.mgbank.co.in/" target="_blank" class="link1">Madhyanchal Gramin Bank</a></td>
</tr>
<tr>
<td align="center">22</td>
<td><a href="https://www.mahagramin.in/" target="_blank" class="link1">Maharashtra Gramin Bank</a></td>
</tr>
<tr>
<td align="center">23</td>
<td><a href="http://www.manipurruralbank.com/" target="_blank" class="link1">Manipur Rural Bank</a></td>
</tr>
<tr>
<td align="center">24</td>
<td><a href="http://www.meghalayaruralbank.co.in/" target="_blank" class="link1">Meghalaya Rural Bank</a></td>
</tr>
<tr>
<td align="center">25</td>
<td><a href="https://www.mizoramruralbank.in/" target="_blank" class="link1">Mizoram Rural Bank</a></td>
</tr>
<tr>
<td align="center">26</td>
<td><a href="http://www.nagalandruralbank.com/" target="_blank" class="link1">Nagaland Rural Bank</a></td>
</tr>
<tr>
<td align="center">27</td>
<td><a href="http://www.odishabank.in/" target="_blank" class="link1">Odisha Gramya Bank</a></td>
</tr>
<tr>
<td align="center">28</td>
<td><a href="http://www.pbgbank.com/" target="_blank" class="link1">Paschim Banga Gramin Bank</a></td>
</tr>
<tr>
<td align="center">29</td>
<td><a href="http://www.prathamaupbank.com/" target="_blank" class="link1">Prathama U.P. Gramin Bank</a></td>
</tr>
<tr>
<td align="center">30</td>
<td><a href="http://www.puduvaibharathiargramabank.in/" target="_blank" class="link1">Puduvai Bharathiar Grama Bank</a></td>
</tr>
<tr>
<td align="center">31</td>
<td><a href="http://www.pgb.org.in/" target="_blank" class="link1">Punjab Gramin Bank</a></td>
</tr>
<tr>
<td align="center">32</td>
<td><a href="http://www.rmgb.in/" target="_blank" class="link1">Rajasthan Marudhara Gramin Bank</a></td>
</tr>
<tr>
<td align="center">33</td>
<td><a href="http://www.saptagirigrameenabank.in/" target="_blank" class="link1">Saptagiri Grameena Bank</a></td>
</tr>
<tr>
<td align="center">34</td>
<td><a href="http://www.shgb.co.in/" target="_blank" class="link1">Sarva Haryana Gramin Bank</a></td>
</tr>
<tr>
<td align="center">35</td>
<td><a href="https://sgbrrb.org/" target="_blank" class="link1">Saurashtra Gramin Bank</a></td>
</tr>
<tr>
<td align="center">36</td>
<td><a href="http://www.tamilnadugramabank.com/" target="_blank" class="link1">Tamil Nadu Grama Bank</a></td>
</tr>
<tr>
<td align="center">37</td>
<td><a href="http://www.tgbhyd.in/" target="_blank" class="link1">Telangana Grameena Bank</a></td>
</tr>
<tr>
<td align="center">38</td>
<td><a href="http://www.tripuragraminbank.org/" target="_blank" class="link1">Tripura Gramin Bank</a></td>
</tr>
<tr>
<td align="center">39</td>
<td><a href="http://www.ubgb.in/" target="_blank" class="link1">Uttar Bihar Gramin Bank</a></td>
</tr>
<tr>
<td align="center">40</td>
<td><a href="http://www.utkalgrameenbank.co.in/" target="_blank" class="link1">Utkal Grameen Bank</a></td>
</tr>
<tr>
<td align="center">41</td>
<td><a href="http://www.ubkgb.org/" target="_blank" class="link1">Uttarbanga Kshetriya Gramin Bank</a></td>
</tr>
<tr>
<td align="center">42</td>
<td><a href="http://www.vkgb.co.in/" target="_blank" class="link1">Vidharbha Konkan Gramin Bank</a></td>
</tr>
<tr>
<td align="center">43</td>
<td><a href="http://www.uttarakhandgraminbank.com/" target="_blank" class="link1">Uttarakhand Gramin Bank</a></td>
</tr>
</tbody>
</table>
<br>
<table width="100%" cellspacing="1" cellpadding="3" border="0" align="center" class="tablebg">
<tbody>
<tr>
<th colspan="2" align="left">List of foreign banks having banking presence in India</th>
</tr>
<tr>
<th width="10%" align="center">SI No.</th>
<th width="90%" align="left">Name of the Bank</th>
</tr>
<tr>
<td align="center">1.</td>
<td><a href="http://abbl.com/mumbai-branch/" target="_blank" class="link1">AB Bank Ltd.</a></td>
</tr>
<tr>
<td align="center">2.</td>
<td><a href="https://www.americanexpress.com/in/" target="_blank" class="link1">American Express Banking Corporation</a></td>
</tr>
<tr>
<td align="center">3.</td>
<td><a href="http://www.anz.com/india/en/Corporate/" target="_blank" class="link1">Australia and New Zealand Banking Group Ltd.</a></td>
</tr>
<tr>
<td align="center">4.</td>
<td><a href="https://www.barclays.in/" target="_blank" class="link1">Barclays Bank Plc.</a></td>
</tr>
<tr>
<td align="center">5.</td>
<td><a href="http://bofa-india.com/" target="_blank" class="link1">Bank of America</a></td>
</tr>
<tr>
<td align="center">6.</td>
<td><a href="https://www.bbkindia.com/" target="_blank" class="link1">Bank of Bahrain & Kuwait B.S.C.</a></td>
</tr>
<tr>
<td align="center">7.</td>
<td><a href="http://www.bankofceylon.in/" target="_blank" class="link1">Bank of Ceylon</a></td>
</tr>
<tr>
<td align="center">8.</td>
<td><a href="https://www.bankofchina.com/in/en/aboutus/" target="_blank" class="link1">Bank of China</a></td>
</tr>
<tr>
<td align="center">9.</td>
<td><a href="http://www.scotiabank.com/global/en/0,,6176,00.html" target="_blank" class="link1">Bank of Nova Scotia</a></td>
</tr>
<tr>
<td align="center">10.</td>
<td><a href="http://www.bnpparibas.co.in/en/" target="_blank" class="link1">BNP Paribas</a></td>
</tr>
<tr>
<td align="center">11.</td>
<td><a href="https://www.citibank.co.in/" target="_blank" class="link1">Citibank N.A.</a></td>
</tr>
<tr>
<td align="center">12.</td>
<td><a href="https://www.rabobank.com/en/locate-us/asia-pacific/india/cooperatieve-rabobank-ua.html" target="_blank" class="link1">Cooperatieve Rabobank U.A./ Coöperatieve Centrale Raiffeisen-Boerenleenbank B.A.</a></td>
</tr>
<tr>
<td align="center">13.</td>
<td><a href="https://www.ca-cib.com/our-global-presence/asia-pacific/india" target="_blank" class="link1">Credit Agricole Corporate & Investment Bank</a></td>
</tr>
<tr>
<td align="center">14.</td>
<td><a href="https://www.credit-suisse.com/in/en/investment-banking-apac/investment-banking-in-india/mumbai-bank-branch.htm" target="_blank" class="link1">Credit Suisse AG</a></td>
</tr>
<tr>
<td align="center">15.</td>
<td><a href="http://www.chinatrustindia.com/" target="_blank" class="link1">CTBC Bank Co., Ltd.</a></td>
</tr>
<tr>
<td align="center">16.</td>
<td><a href="https://www.dbs.com/india/default.page" target="_blank" class="link1">DBS Bank India Limited</a></td>
</tr>
<tr>
<td align="center">17.</td>
<td><a href="http://www.deutschebank.co.in/" target="_blank" class="link1">Deutsche Bank A.G.</a></td>
</tr>
<tr>
<td align="center">18.</td>
<td><a href="http://dohabank.co.in/" target="_blank" class="link1">Doha Bank Q.P.S.C</a></td>
</tr>
<tr>
<td align="center">19.</td>
<td><a href="https://www.emiratesnbd.co.in/" target="_blank" class="link1">Emirates NBD Bank PJSC</a></td>
</tr>
<tr>
<td align="center">20.</td>
<td><a href="https://www.bankfab.com/en-in" target="_blank" class="link1">First Abu Dhabi Bank PJSC</a></td>
</tr>
<tr>
<td align="center">21.</td>
<td><a href="https://www.firstrand.co.in/" target="_blank" class="link1">FirstRand Bank Limited</a></td>
</tr>
<tr>
<td align="center">22.</td>
<td><a href="https://www.hsbc.co.in/1/2/homepage" target="_blank" class="link1">Hong Kong and Shanghai Banking Corporation Limited</a></td>
</tr>
<tr>
<td align="center">23.</td>
<td><a href="http://www.icbcindia.com/" target="_blank" class="link1">Industrial & Commercial Bank of China Ltd.</a></td>
</tr>
<tr>
<td align="center">24.</td>
<td><a href="https://in.globalibk.com/iview/03/CMIBMAN0000" target="_blank" class="link1">Industrial Bank of Korea</a></td>
</tr>
<tr>
<td align="center">25.</td>
<td><a href="https://www.jpmorgan.com/IN/en/about-us" target="_blank" class="link1">J.P. Morgan Chase Bank N.A.</a></td>
</tr>
<tr>
<td align="center">26.</td>
<td><a href="http://www.vtbindia.com/" target="_blank" class="link1">JSC VTB Bank</a></td>
</tr>
<tr>
<td align="center">27.</td>
<td><a href="https://global.1qbank.com/lounge/chennai/et/main.html" target="_blank" class="link1">KEB Hana Bank</a></td>
</tr>
<tr>
<td align="center">28.</td>
<td><a href="https://www.kbfg.com/Eng/about/global/asia/india.jsp" target="_blank" class="link1">Kookmin Bank</a></td>
</tr>
<tr>
<td align="center">29.</td>
<td><a href="https://krungthai.com/th/content/mumbai-branch" target="_blank" class="link1">Krung Thai Bank Public Co. Ltd.</a> $ </td>
</tr>
<tr>
<td align="center">30.</td>
<td><a href="https://www.mashreqbank.com/uae/en/international-banking/network/india" target="_blank" class="link1">Mashreq bank PSC</a></td>
</tr>
<tr>
<td align="center">31.</td>
<td><a href="https://www.mizuhobank.com/india/index.html" target="_blank" class="link1">Mizuho Bank Ltd.</a></td>
</tr>
<tr>
<td align="center">32.</td>
<td><a href="http://www.bk.mufg.jp/global/globalnetwork/asiaoceania/mumbai.html" target="_blank" class="link1">MUFG Bank, Ltd.</a></td>
</tr>
<tr>
<td align="center">33.</td>
<td><a href="https://www.natwestmarkets.in/index.html" target="_blank" class="link1">NatWest Markets Plc</a></td>
</tr>
<tr>
<td align="center">34.</td>
<td><a href="https://www.maybank.co.in/" target="_blank" class="link1">PT Bank Maybank Indonesia TBK</a></td>
</tr>
<tr>
<td align="center">35.</td>
<td><a href="https://www.qnb.com/sites/qnb/qnbindia/page/en/en-home.html" target="_blank" class="link1">Qatar National Bank (Q.P.S.C.)</a></td>
</tr>
<tr>
<td align="center">36.</td>
<td><a href="http://www.sberbank.co.in/" target="_blank" class="link1">Sberbank</a></td>
</tr>
<tr>
<td align="center">37.</td>
<td><a href="https://www.sbmbank.co.in/" target="_blank" class="link1">SBM Bank (India) Limited</a></td>
</tr>
<tr>
<td align="center">38.</td>
<td><a href="https://in.shinhanglobal.com/" target="_blank" class="link1">Shinhan Bank</a></td>
</tr>
<tr>
<td align="center">39.</td>
<td><a href="https://www.societegenerale.asia/en/country-details/country/india-2/" target="_blank" class="link1">Societe Generale India</a></td>
</tr>
<tr>
<td align="center">40.</td>
<td><a href="http://www.sonalibank.in/" target="_blank" class="link1">Sonali Bank Ltd.</a> % </td>
</tr>
<tr>
<td align="center">41.</td>
<td><a href="https://www.sc.com/in/" target="_blank" class="link1">Standard Chartered Bank </a></td>
</tr>
<tr>
<td align="center">42.</td>
<td><a href="http://www.smbc.co.jp/global/india/" target="_blank" class="link1">Sumitomo Mitsui Banking Corporation</a></td>
</tr>
<tr>
<td align="center">43.</td>
<td><a href="https://www.uobgroup.com/in/" target="_blank" class="link1">United Overseas Bank Limited</a></td>
</tr>
<tr>
<td align="center">44.</td>
<td><a href="https://go.wooribank.com/in/ib/main/IbMain.do" target="_blank" class="link1">Woori Bank</a></td>
</tr>
<tr>
<td colspan="2" align="justify">$ - Krung Thai Bank Public Co. Ltd does not maintain any Indian specific website or page. Therefore, there is no link to provide. However, on global website, it provides details of branch presence in
India which can be seen through the indicated link.<br> % - Sonali Bank website link has been confirmed by the bank. However, the bank has informed that the website is not yet complete and is under development and up gradation.</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
<div class="clearfix">
</div>
<div>
<a href="#top" class="scrollToTop" id="backToTop">Top</a>
<footer class="footer">
<div class="footer">
<div class="container_12">
<div class="grid_9" style="width:895px !important">
<h4><span class="blue">More</span> Links </h4>
<div class="grid_2 alpha" style="width:150px !important">
<ul class="footerlist">
<!--<li><a target="_blank" href="/Scripts/ExternalResearchSchemes.aspx">Research Portal</a></li>-->
<li><a target="_blank" href="https://www.rbi.org.in/FinancialEducation/">Financial Education</a></li><!--https://www.rbi.org.in/commonperson/English/Scripts/Home.aspx-->
<li><a target="_blank" href="https://ncfe.org.in/e-lms">E-LMS</a></li>
<li><a target="_blank" href="https://rbikehtahai.rbi.org.in/">RBI Kehta Hai</a></li>
<li><a href="/Scripts/FAQDisplay.aspx">FAQs</a></li>
<!--<li><a href="/Scripts/Glossary.aspx">Glossary</a></li>-->
<li><a href="/Scripts/IFSCMICRDetails.aspx">IFSC/MICR Codes</a></li>
</ul>
</div>
<div class="grid_2 omega" style="width:215px !important;">
<ul class="footerlist">
<li><a href="/Scripts/BS_ViewTenders.aspx">Tenders</a></li>
<li><a target="_blank" href="https://opportunities.rbi.org.in/scripts/index.aspx">Opportunities<font>@</font>RBI</a></li>
<li><a href="/Scripts/HolidayMatrixDisplay.aspx">Bank Holidays</a></li>
<li><a href="/Scripts/BS_ViewForms.aspx">Forms</a></li>
</ul>
</div>
<div class="grid_2 alpha omega" style="width:254px !important;">
<ul class="footerlist">
<li><a href="/Scripts/EventsDisplay.aspx">Events</a></li>
<!--<li><a href="/Scripts/PublicEngagement.aspx">Public Speaking Engagements</a></li>-->
<li><a href="/Scripts/rbi_clarification.aspx">RBI Clarifications</a></li>
<li><a href="/Scripts/Righttoinfoact.aspx">Right to Information Act</a></li>
<li><a href="/Scripts/OtherLinks.aspx">Important Websites</a></li>
<!--<li><a href="/Scripts/OtherLinks.aspx">Related Links</a></li>-->
<li><a href="https://rbidocs.rbi.org.in/rdocs/content/pdfs/Utkarsh30122022.pdf">RBI's Core Purpose, Values and Vision</a></li>
</ul>
</div>
<div class="grid_2" style="width:215px !important;">
<ul class="footerlist">
<li><a href="/Scripts/CitiChart.aspx">Citizens' Charter</a></li>
<li><a href="/Scripts/Timlines.aspx">Timelines for Regulatory Approvals</a></li>
<li><a href="/Scripts/Complaints.aspx">Complaints</a></li>
<li><a href="https://shabdavali.rbi.org.in/">Banking Glossary</a></li>
<li><a href="/Scripts/helpdesk.aspx">Contact Us</a></li>
</ul>
</div>
</div>
<div class="grid_3" style="width:135px !important">
<h4><span class="blue">Follow</span> RBI </h4>
<ul class="footerlist">
<li><a href="/Scripts/rss.aspx"><img src="/images/rss-icon.png" alt="Subscribe to RSS" class="rss">RSS</a></li>
<li><a href="https://twitter.com/RBI" target="_blank" class="twitter"><img src="/images/Twitter_Logo_Blue.png" width="22px" height="22px" alt="Follow RBI on Twitter" class="twitter">Twitter</a></li>
<!--<li><a href="https://www.youtube.com/channel/UCIfCOl43tunZVNYafeC4RQA" class="videos" target="_blank"><img src="/images/videos-icon.png" alt="Check RBI Videos" class="videos"/>Videos</a></li>-->
<li><a href="https://www.youtube.com/channel/UCIfCOl43tunZVNYafeC4RQA" class="videos" target="_blank"><img src="/images/youtube.png" alt="Check RBI Videos" class="videos">YouTube</a></li>
<li> Download Mobile App<br>
<a href="https://play.google.com/store/apps/details?id=com.reservebankofindia.app" target="_blank"><img src="/images/Android.png" alt="Android App" class="rss" style="width:17px">Play Store</a><br>
<a href="https://apps.apple.com/us/app/reserve-bank-of-india/id1154394549?ls=1" target="_blank"><img src="/images/IOS.png" alt="Apple App" class="rss" style="width:18px;height:17px">App Store</a>
</li>
</ul>
</div>
<div class="clearfix"></div>
</div>
<div class="copyright">
<div class="container_12">
<div class="grid_6 pull_left">© Reserve Bank of India. All Rights Reserved.</div>
<div class="grid_5 pull_right"><a href="/Scripts/sitemap.aspx">Sitemap</a> | <a href="/Scripts/Disclaimer.aspx">Disclaimer</a></div>
<div class="clearfix"></div>
</div>
</div>
<!--Welcome note-->
<div id="boxesWN">
<div id="dialogWN" class="window" style="top:100px;">
<div> <img width="60" height="60" src="/images/Rbinote.jpeg" alt="Rbi note"> </div>
<table class="WelcomeNote">
<tbody>
<tr>
<td style="float:right;"> April 14, 2015 </td>
</tr>
<tr>
<td> Dear All </td>
</tr>
<tr>
<td> Welcome to the refurbished site of the Reserve Bank of India. </td>
</tr>
<tr>
<td> The two most important features of the site are: One, in addition to the default site, the refurbished site also has all the information bifurcated functionwise; two, a much improved search – well, at least we think so but you
be the judge. </td>
</tr>
<tr>
<td> With this makeover, we also take a small step into social media. We will now use Twitter (albeit one way) to send out alerts on the announcements we make and YouTube to place in public domain our press conferences, interviews
of our top management, events, such as, town halls and of course, some films aimed at consumer literacy. </td>
</tr>
<tr>
<td> The site can be accessed through most browsers and devices; it also meets accessibility standards. </td>
</tr>
<tr>
<td> Please save the url of the refurbished site in your favourites as we will give up the existing site shortly and register or re-register yourselves for receiving RSS feeds for uninterrupted alerts from the Reserve Bank. </td>
</tr>
<tr>
<td> Do feel free to give us your feedback by clicking on the feedback button on the right hand corner of the refurbished site. </td>
</tr>
<tr>
<td> Thank you for your continued support.<br><br>
</td>
</tr>
<tr>
<td>
<strong> Department of Communication <br> Reserve Bank of India</strong>
</td>
</tr>
<tr>
<td id="popupfootWN"><a href="#" class="close agree" style="float:right">Next</a></td>
</tr>
</tbody>
</table>
<!-- <div id="popupfootWN"> <a href="#" class="close agree" style="float:right" >Next</a> </div>--><!--<img src="../images/button_close.gif" alt="Close" class="close agree" />-->
</div>
<div id="maskWN" style="width:100% !important"></div>
<!--<div id="feedbackbtn"><a href="#"><div align="center" class="feedbacktext">Feedback</div></a></div>-->
</div>
</div>
</footer>
<!--<script type="text/javascript" src="/js/URLchange.js"></script>-->
<!-- For live comment out below line.-->
<script src="/js/ReplaceURL.js" type="text/javascript"></script>
<script src="/js/jquery.cookie.js" type="text/javascript"></script>
<script type="text/javascript" language="javascript">
//this is for floating TOP link
$(document).ready(function() {
var offset = 230;
var duration = 500;
jQuery(window).scroll(function() {
if (jQuery(this).scrollTop() > offset) {
jQuery('.scrollToTop').fadeIn(duration);
// $('#backToTop').css('right', (diffWidth / 2) - 6);
} else {
jQuery('.scrollToTop').fadeOut(duration);
// $('#backToTop').css('right', (diffWidth / 2) - 6);
}
});
// $('a[href*=#]:not([href=#])').click(function () {
// if (location.pathname.replace(/^\//, '') == window.location.pathname.replace(/^\//, '') && location.hostname == window.location.hostname) {
// var target = $(this.hash);
// target = target.length ? target : $('[name=' + this.hash.slice(1) + ']');
// if (target.length) {
// $('html,body').animate({
// scrollTop: target.offset().top
// }, 800);
// return false;
// }
// }
// });
$('.scrollToTop').click(function() {
$('html, body').animate({
scrollTop: 0
}, 800);
return false;
});
});
//Below code is for floating left panel and floating tree structure
//first if condition is for functionwise pages and 2nd one for rest all
$(window).scroll(function() {
if ($('div.banner2').length) {
if ($(window).scrollTop() >= 265) {
$('#menubar').css("position", "fixed");
$('#menubar').css("width", "240px");
$('#menubar').css("margin-top", "-281px");
$('.content_area').css("margin-left", "252px");
$('.sidebar_nav').css("position", "fixed");
$('.sidebar_nav').css("margin-top", "-200px");
$('.sidebar_nav').css("width", "236px");
$('#DateSettree_lbltree').css('position', 'fixed');
$('#DateSettree_lbltree').css('margin-top', '-281px');
} else {
$('#menubar').css("position", "");
$('#menubar').css("width", "");
$('#menubar').css("margin-top", "");
$('.content_area').css("margin-left", "");
$('.sidebar_nav').css("position", "");
$('.sidebar_nav').css("margin-top", "");
$('.sidebar_nav').css("width", "");
$('#DateSettree_lbltree').css('position', '');
$('#DateSettree_lbltree').css('margin-top', '');
}
} else if ($(window).scrollTop() >= 185) {
$('#menubar').css("position", "fixed");
$('#menubar').css("width", "240px");
$('#menubar').css("margin-top", "-200px");
$('.content_area').css("margin-left", "252px");
$('.sidebar_nav').css("position", "fixed");
$('.sidebar_nav').css("margin-top", "-200px");
$('.sidebar_nav').css("width", "236px");
$('#DateSettree_lbltree').css('position', 'fixed');
$('#DateSettree_lbltree').css('margin-top', '-200px');
} else {
$('#menubar').css("position", "");
$('#menubar').css("width", "");
$('#menubar').css("margin-top", "");
$('.content_area').css("margin-left", "");
$('.sidebar_nav').css("position", "");
$('.sidebar_nav').css("margin-top", "");
$('.sidebar_nav').css("width", "");
$('#DateSettree_lbltree').css('position', '');
$('#DateSettree_lbltree').css('margin-top', '');
}
// if ($(window).scrollTop() >= 235) {
// $('#DateSettree_lbltree').css('height', '183px');
// $('#DateSettree_lbltree').css('overflow-y', 'scroll');
// $('#DateSettree_lbltree').css('width', '100px');
// }
// else {
// $('#DateSettree_lbltree').css('height', '');
// $('#DateSettree_lbltree').css('overflow-y', '');
// $('#DateSettree_lbltree').css('width', '');
// }
});
// $(window).unload(function () {
// $.cookies.del('feedback_Cookie');
// });
$(document).ready(function() {
$('.window .close').click(function(e) {
//Cancel the link behavior
e.preventDefault();
$.cookie('feedback_Cookie', 'Yes', {
expires: 365,
path: '/'
});
$('#maskWN').hide();
$('.window').hide();
var scroll = $(window).scrollTop();
$("html").scrollTop(scroll);
});
$('#maskWN').click(function() {
$(this).hide();
$.cookie('feedback_Cookie', 'Yes', {
expires: 365,
path: '/'
});
$('.window').hide();
});
// if ($.cookie('feedback_Cookie') == null) {
// var id = '#dialog';
// //Get the screen height and width
// var maskHeight = $(document).height();
// var maskWidth = $(window).width();
//
// //Set heigth and width to mask to fill up the whole screen
// $('#mask').css({ 'width': '100%', 'height': '100%','position':'fixed' });
// //transition effect
// $('#mask').fadeIn(500);
// $('#mask').fadeTo("slow", 0.9);
// //Get the window height and width
// var winH = $(window).height();
// var winW = $(window).width();
// //Set the popup window to center
// $(id).css('top', winH / 2 - $(id).height() / 2);
// $(id).css('left', winW / 2 - $(id).width() / 2);
// //transition effect
// $(id).fadeIn(2000);
// }
// $('blockquote p').css('margin','auto');
// $('blockquote blockquote blockquote p').contents().contents().unwrap();
// $('blockquote blockquote blockquote').contents().unwrap();
// $('blockquote blockquote').contents().unwrap();
// $('blockquote').contents().unwrap();
//if close button is clicked
$('.window .close').click(function(e) {
//Cancel the link behavior
e.preventDefault();
$.cookie('feedback_Cookie', 'Yes', {
expires: 365,
path: '/'
});
$('#mask').hide();
$('.window').hide();
var scroll = $(window).scrollTop();
$("html").scrollTop(scroll);
});
//if mask is clicked
$('#mask').click(function() {
$(this).hide();
$('.window').hide();
});
$('#feedbackbtn').click(function() {
var id = '#dialog';
//Get the screen height and width
var maskHeight = $(document).height();
var maskWidth = $(window).width();
//Set heigth and width to mask to fill up the whole screen
//$('#mask').css({ 'width': maskWidth, 'height': maskHeight });
$('#mask').css({
'width': '100%',
'height': '100%',
'position': 'fixed'
});
//transition effect
$('#mask').fadeIn(500);
$('#mask').fadeTo("slow", 0.9);
//Get the window height and width
var winH = $(window).height();
var winW = $(window).width();
//Set the popup window to center
$(id).css('top', winH / 2 - $(id).height() / 2);
$(id).css('left', winW / 2 - $(id).width() / 2);
//transition effect
$(id).fadeIn(2000);
});
$('.submit').click(function() {
var Name = $("[id*=txtFeedbackName]").val();
var Email = $("[id*=txtFeedbackEmail]").val();
var Comments = $("[id*=txtFeedbackComments]").val();
if (Name == "") {
alert("Please enter your name");
$("[id*=txtFeedbackName]").focus();
return false;
} else if (Email == "") {
alert("Please enter your email");
$("[id*=txtFeedbackEmail]").focus();
return false;
} else if (Email != "" && !ValidateEmail(Email)) {
alert("Please enter a valid email address");
$("[id*=txtFeedbackEmail]").focus();
return false;
} else if (Comments == "") {
alert("Please enter some comments");
$("[id*=txtFeedbackComments]").focus();
return false;
} else {
$('[id*=Button1]').attr('disabled', 'disabled');
var param = {
Name: Name,
EmailID: Email,
Comments: Comments
};
$.ajax({
type: "POST",
url: "../Home.aspx/SaveFeedback",
data: JSON.stringify(param),
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function(response) {
if (response.d == "0") {
alert("Thank you for your feedback");
$.cookie('feedback_Cookie', 'Yes', {
expires: 365,
path: '/'
});
$('#mask').hide();
$('.window').hide();
$('[id*=Button1]').removeAttr('disabled');
$("[id*=txtFeedbackName]").val("");
$("[id*=txtFeedbackEmail]").val("");
$("[id*=txtFeedbackComments]").val("");
} else {
alert("Please try again");
$('[id*=Button1]').removeAttr('disabled');
}
}
});
}
});
function ValidateEmail(email) {
var expr = /^([\w-\.]+)@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.)|(([\w-]+\.)+))([a-zA-Z]{2,4}|[0-9]{1,3})(\]?)$/;
return expr.test(email);
};
// $('#divArchiveMain').click(function () {
//
// if ($(window).scrollTop() >= 235) {
// $('#DateSettree_lbltree').css('height', '181px');
// $('#DateSettree_lbltree').css('overflow-y', 'scroll');
// $('#DateSettree_lbltree').css('width', '100px');
// }
// else {
// $('#DateSettree_lbltree').css('height', '');
// $('#DateSettree_lbltree').css('overflow-y', '');
// $('#DateSettree_lbltree').css('width', '');
// }
// });
$('a.style1').each(function() {
var $this = $(this);
var aHref = $this.attr('class');
$this.attr('class', aHref.replace('style1', 'links'));
});
});
</script>
<script type="text/javascript">
(function(i, s, o, g, r, a, m) {
i['GoogleAnalyticsObject'] = r;
i[r] = i[r] || function() {
(i[r].q = i[r].q || []).push(arguments)
}, i[r].l = 1 * new Date();
a = s.createElement(o),
m = s.getElementsByTagName(o)[0];
a.async = 1;
a.src = g;
m.parentNode.insertBefore(a, m)
})(window, document, 'script', '//www.google-analytics.com/analytics.js', 'ga');
ga('create', 'UA-61369961-1', 'auto');
ga('send', 'pageview');
</script>
</div>
</form>
Text Content
Skip to main content Languageहिंदी Search the Website Search * Home * About Us * Notifications * Press Releases * Speeches & Media Interactions * Speeches * Media Interactions * Memorial Lectures * Publications * Annual * Half-Yearly * Quarterly * Bi-monthly * Monthly * Weekly * Occasional * Reports * Working Papers * Legal Framework * Act * Rules * Regulations * Schemes * Research * External Research Schemes * RBI Occasional Papers * Working Papers * RBI Bulletin * History * DRG Studies * KLEMS * State Statistics and Finances * Statistics * Data Releases * Database on Indian Economy * Public Debt Statistics * Regulatory Reporting * List of Returns * Data Definition * Validation rules/ Taxonomy * List of RBI Reporting Portals * FAQs of RBI Reporting Portals * Home * Other Links WEBSITES OF BANKS IN INDIA List of Private Sector Banks in India Sr. No Name of the Bank 1 Axis Bank Ltd. 2 Bandhan Bank Ltd. 3 CSB Bank Limited 4 City Union Bank Ltd. 5 DCB Bank Ltd. 6 Dhanlaxmi Bank Ltd. 7 Federal Bank Ltd. 8 HDFC Bank Ltd 9 ICICI Bank Ltd. 10 IndusInd Bank Ltd 11 IDFC FIRST Bank Limited 12 Jammu & Kashmir Bank Ltd. 13 Karnataka Bank Ltd. 14 Karur Vysya Bank Ltd. 15 Kotak Mahindra Bank Ltd 16 Nainital bank Ltd. 17 RBL Bank Ltd. 18 South Indian Bank Ltd. 19 Tamilnad Mercantile Bank Ltd. 20 YES Bank Ltd. 21 IDBI Bank Limited List of Local Area Banks (LAB) 1 Coastal Local Area Bank Ltd 2 Krishna Bhima Samruddhi LAB Ltd List of Small Finance Banks (SFB) 1 Au Small Finance Bank Ltd. 2 Capital Small Finance Bank Ltd 3 Fincare Small Finance Bank Ltd. 4 Equitas Small Finance Bank Ltd 5 ESAF Small Finance Bank Ltd. 6 Suryoday Small Finance Bank Ltd. 7 Ujjivan Small Finance Bank Ltd. 8 Utkarsh Small Finance Bank Ltd. 9 North East Small finance Bank Ltd 10 Jana Small Finance Bank Ltd 11 Shivalik Small Finance Bank Ltd 12 Unity Small Finance Bank Ltd List of Payments Banks (PB) 1 Airtel Payments Bank Ltd 2 India Post Payments Bank Ltd 3 FINO Payments Bank Ltd 4 Paytm Payments Bank Ltd 5 Jio Payments Bank Ltd 6 NSDL Payments Bank Limited List of Public Sector Banks in India Sr. No Name of the Bank 1 Bank of Baroda 2 Bank of India 3 Bank of Maharashtra 4 Canara Bank 5 Central Bank of India 6 Indian Bank 7 Indian Overseas Bank 8 Punjab & Sind Bank 9 Punjab National Bank 10 State Bank of India 11 UCO Bank 12 Union Bank of India List of Financial Institutions in India Sr. No Name of the Bank 1 National Bank for Agriculture and Rural Development 2 Export-Import Bank of India 3 National Housing Bank 4 Small Industries Development Bank of India List of Regional Rural Banks in India Sr. No. Name of RRB 1 Assam Gramin Vikash Bank 2 Andhra Pradesh Grameena Vikas Bank 3 Andhra Pragathi Grameena Bank 4 Arunachal Pradesh Rural Bank 5 Aryavart Bank 6 Bangiya Gramin Vikash Bank 7 Baroda Gujarat Gramin Bank 8 Baroda Rajasthan Kshetriya Gramin Bank 9 Baroda UP Bank 10 Chaitanya Godavari GB 11 Chhattisgarh Rajya Gramin Bank 12 Dakshin Bihar Gramin Bank 13 Ellaquai Dehati Bank 14 Himachal Pradesh Gramin Bank 15 J&K Grameen Bank 16 Jharkhand Rajya Gramin Bank 17 Karnataka Gramin Bank 18 Karnataka Vikas Gramin Bank 19 Kerala Gramin Bank 20 Madhya Pradesh Gramin Bank 21 Madhyanchal Gramin Bank 22 Maharashtra Gramin Bank 23 Manipur Rural Bank 24 Meghalaya Rural Bank 25 Mizoram Rural Bank 26 Nagaland Rural Bank 27 Odisha Gramya Bank 28 Paschim Banga Gramin Bank 29 Prathama U.P. Gramin Bank 30 Puduvai Bharathiar Grama Bank 31 Punjab Gramin Bank 32 Rajasthan Marudhara Gramin Bank 33 Saptagiri Grameena Bank 34 Sarva Haryana Gramin Bank 35 Saurashtra Gramin Bank 36 Tamil Nadu Grama Bank 37 Telangana Grameena Bank 38 Tripura Gramin Bank 39 Uttar Bihar Gramin Bank 40 Utkal Grameen Bank 41 Uttarbanga Kshetriya Gramin Bank 42 Vidharbha Konkan Gramin Bank 43 Uttarakhand Gramin Bank List of foreign banks having banking presence in India SI No. Name of the Bank 1. AB Bank Ltd. 2. American Express Banking Corporation 3. Australia and New Zealand Banking Group Ltd. 4. Barclays Bank Plc. 5. Bank of America 6. Bank of Bahrain & Kuwait B.S.C. 7. Bank of Ceylon 8. Bank of China 9. Bank of Nova Scotia 10. BNP Paribas 11. Citibank N.A. 12. Cooperatieve Rabobank U.A./ Coöperatieve Centrale Raiffeisen-Boerenleenbank B.A. 13. Credit Agricole Corporate & Investment Bank 14. Credit Suisse AG 15. CTBC Bank Co., Ltd. 16. DBS Bank India Limited 17. Deutsche Bank A.G. 18. Doha Bank Q.P.S.C 19. Emirates NBD Bank PJSC 20. First Abu Dhabi Bank PJSC 21. FirstRand Bank Limited 22. Hong Kong and Shanghai Banking Corporation Limited 23. Industrial & Commercial Bank of China Ltd. 24. Industrial Bank of Korea 25. J.P. Morgan Chase Bank N.A. 26. JSC VTB Bank 27. KEB Hana Bank 28. Kookmin Bank 29. Krung Thai Bank Public Co. Ltd. $ 30. Mashreq bank PSC 31. Mizuho Bank Ltd. 32. MUFG Bank, Ltd. 33. NatWest Markets Plc 34. PT Bank Maybank Indonesia TBK 35. Qatar National Bank (Q.P.S.C.) 36. Sberbank 37. SBM Bank (India) Limited 38. Shinhan Bank 39. Societe Generale India 40. Sonali Bank Ltd. % 41. Standard Chartered Bank 42. Sumitomo Mitsui Banking Corporation 43. United Overseas Bank Limited 44. Woori Bank $ - Krung Thai Bank Public Co. Ltd does not maintain any Indian specific website or page. Therefore, there is no link to provide. However, on global website, it provides details of branch presence in India which can be seen through the indicated link. % - Sonali Bank website link has been confirmed by the bank. However, the bank has informed that the website is not yet complete and is under development and up gradation. Top MORE LINKS * Financial Education * E-LMS * RBI Kehta Hai * FAQs * IFSC/MICR Codes * Tenders * Opportunities@RBI * Bank Holidays * Forms * Events * RBI Clarifications * Right to Information Act * Important Websites * RBI's Core Purpose, Values and Vision * Citizens' Charter * Timelines for Regulatory Approvals * Complaints * Banking Glossary * Contact Us FOLLOW RBI * RSS * Twitter * YouTube * Download Mobile App Play Store App Store © Reserve Bank of India. All Rights Reserved. Sitemap | Disclaimer April 14, 2015 Dear All Welcome to the refurbished site of the Reserve Bank of India. The two most important features of the site are: One, in addition to the default site, the refurbished site also has all the information bifurcated functionwise; two, a much improved search – well, at least we think so but you be the judge. With this makeover, we also take a small step into social media. We will now use Twitter (albeit one way) to send out alerts on the announcements we make and YouTube to place in public domain our press conferences, interviews of our top management, events, such as, town halls and of course, some films aimed at consumer literacy. The site can be accessed through most browsers and devices; it also meets accessibility standards. Please save the url of the refurbished site in your favourites as we will give up the existing site shortly and register or re-register yourselves for receiving RSS feeds for uninterrupted alerts from the Reserve Bank. Do feel free to give us your feedback by clicking on the feedback button on the right hand corner of the refurbished site. Thank you for your continued support. Department of Communication Reserve Bank of India Next