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

## API Version: default


# Retrieve a bank account



By default, you can see the 10 most recent bank accounts stored on a customer directly on the object, but you can also retrieve details about a specific bank account stored on the LotusPay account.

Retrieves an existing bank account object. Supply the unique bank account identifier.

**ARGUMENTS** 


| Argument | Description |
|---|---|
| bank_account REQUIRED	 | The identifier of the bank account to be retrieved. |
| customer REQUIRED	 | The identifier of the customer who owns the bank account. |


**Returns**  Returns a bank account object if a valid identifier was provided.## Endpoints:
- Sandbox: https://api-test.lotuspay.com/v1/customers/{ID}/bank_accounts/{ID}

- Production: https://api.lotuspay.com/v1/customers/{ID}/bank_accounts/{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/customers/CU004433221AA/bank_accounts/BA004433221AA \
   -u sk_test_XjIHowXWSI23uvjepz2X82:

```

#### Response:
```json
{
    "id": "BA004433221AA",
    "object": "bank_account",
    "created": 1530224170,
    "livemode": false,
    "account_holder_name": "Amit Jain",
    "account_ifsc": "ICIC0000047",
    "account_last4": "1234",
    "account_type": "savings",
    "bank_name": "ICICI BANK",
    "customer": "CU004433221AA",
    "mandates": {
      "object": "list",
      "data": [
  
      ],
      "total_count": 0,
      "url": "/v1/customers/CU004433221AA/bank_account/BA004433221AA/mandates"
      },
    "status": "enabled"
  }
```

## API Responses:
