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

## API Version: default


# **Retrieve an NACH bank** 



Retrieves an existing NACH bank object. Supply the unique NPCI NACH Bank Code in the url.


| First Column | Second Column | Third Column |
|---|---|---|


**ARGUMENTS** 


| Argument | Description |
|---|---|
| nach_bank REQUIRED	 | Four-character NPCI NACH Bank Code of the bank to be retrieved. |


**Returns**  Returns an NACH bank object if a valid NPCI NACH Bank Code was provided in the url.## Endpoints:
- Sandbox: https://api-test.lotuspay.com/v1/nach_banks/{ID}

- Production: https://api.lotuspay.com/v1/nach_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 --location 'https://api.lotuspay.com/v1/nach_banks/CNRB' \
--header 'Authorization: Basic c2tfdGVzdF9zUG9sRlpzRzFJckJ2VpUWhCcE06'
```

#### Response:
```json
{
    "object": "nach_bank",
    "livemode": true,
    "id": "CNRB",
    "display_name": "Canara Bank",
    "name": "CANARA BANK",
    "ifsc": "CNRB0RTGS01",
    "ach_dr": true,
    "variant_esign": true,
    "variant_api": true,
    "variant_api_debitcard": true,
    "variant_api_netbanking": true,
    "variant_api_aadhaar": true,
    "variant_api_others": true,
    "mandate_amend": {
        "net_banking": false,
        "aadhaar": false,
        "debit_card": true,
        "others": false
    },
    "mandate_cancel": {
        "net_banking": false,
        "aadhaar": false,
        "debit_card": true,
        "others": false
    },
    "mandate_pause": {
        "net_banking": false,
        "aadhaar": false,
        "debit_card": true,
        "others": false
    },
    "mandate_resume": {
        "net_banking": false,
        "aadhaar": false,
        "debit_card": false,
        "others": false
    }
}
```

## API Responses:


---

## See Also

- [The NACH bank object](https://juspay.io/in/docs/lotuspay/web/core-resources/the-nach-bank-object)
- [List all NACH banks](https://juspay.io/in/docs/lotuspay/web/core-resources/list-all-nach-banks)
