---
page_title: Retrieve a bank
product: lotuspay
platform: web
page_source: https://docs.juspay.io/lotuspay/web/core-resources/retrieve-a-bank
openapi: https://docs.juspay.io/api/swagger?document=https%3A%2F%2Fdocs.juspay.io%2Flotuspay%2Fweb%2Fcore-resources%2Fretrieve-a-bank
llms_txt: https://docs.juspay.io/llms.txt
product_llms_txt: https://docs.juspay.io/lotuspay/llms.txt
---

## API Version: default


# **Retrieve a bank** 



Retrieves an existing bank object. Supply the IFSC in the url.

**ARGUMENTS** 


| Argument | Description |
|---|---|
| bank REQUIRED	 | 11-character IFSC identifier of the bank to be retrieved. |


**Returns**  Returns a bank object if a valid identifier was provided in the url.## Endpoints:
- Sandbox: https://api-test.lotuspay.com/v1/banks/{id}

- Production: https://api.lotuspay.com/v1/banks/{id}

## Request Type: 
GET

## Content-Type: 
application/json

## Authorization:

#### Basic Auth:
Auth example
- Value:  sk_test_XjIHowXWSI23uvjepz2X82
## Sample Code Snippets:
### Sample Request and Response:

#### Request:
```Shell
$ curl https://api-test.lotuspay.com/v1/banks/ICIC0000047 \
   -u sk_test_XjIHowXWSI23uvjepz2X82:

```

#### Response:
```json
{
    "object": "bank",
    "livemode": true,
    "ifsc": "ICIC0000047",
    "name": "ICICI Bank",
    "micr": "560229003",
    "branch": "BANGALORE - KORAMANGALA",
    "city": "BANGALORE",
    "bank_data": {
        "UPI": true,
        "BANK": "ICICI Bank",
        "CITY": "BANGALORE",
        "IFSC": "ICIC0000047",
        "IMPS": true,
        "MICR": "560229003",
        "NEFT": true,
        "RTGS": true,
        "STATE": "KARNATAKA",
        "SWIFT": null,
        "BRANCH": "BANGALORE - KORAMANGALA",
        "CENTRE": "BANGALORE URBAN",
        "ADDRESS": "ICICI Bank Ltd., No 584, 80 Ft Road, Opp. Bethany High, Koramangala 8th Block, Bangalore, Karnataka - 560095",
        "CONTACT": null,
        "ISO3166": "IN-KA",
        "DISTRICT": "BANGALORE URBAN"
    },
    "nach_bank": true,
    "nach_bank_data": {
        "bank_code": "ICIC",
        "livemode": true,
        "ach_cr": true,
        "ach_dr": true,
        "display_name": "ICICI Bank",
        "ifsc": "ICIC0TREA00",
        "micr": "400229000",
        "iin": "508534",
        "apbs": true,
        "name": "ICICI BANK LTD.",
        "emandate_esign": true,
        "emandate_api": true,
        "emandate_api_debitcard": true,
        "emandate_api_netbanking": true,
        "emandate_api_aadhaar": true
    }
}
```

## API Responses:
