> For the complete documentation index, see [llms.txt](https://developer.convergegate.com/legacy/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://developer.convergegate.com/legacy/token-api/bank-account/retrieve-bank-account.md).

# Retrieve Bank Account

<mark style="color:green;">`GET`</mark> `/v1/customers/:id/sources/:id`

{% tabs %}
{% tab title="CURL" %}
{% code overflow="wrap" %}

```
curl https://{provided url}/v1/customers/P2ZTA56JQ7-AvwGf0pHd2Q/sources/TlnNDVS6TteSn2-FEh3ZKg \
  -u sk_test_yFStF-KUmgr-7CoumuY2JA:
```

{% endcode %}
{% endtab %}
{% endtabs %}

> This request should return a JSON response with the structure:

```json
{
	"id": "TlnNDVS6TteSn2-FEh3ZKg",
	"account_holder_name": "John Doe",
	"account_holder_type": "individual",
	"country": "PL",
	"currency": "EUR",
	"customer": "P2ZTA56JQ7-AvwGf0pHd2Q",
	"fingerprint": "R1gbK7BauiX3XdnUCQRhzlnvMxxtSKVS7NqScFBeVRE",
	"last4": "6784",
	"routing_number": "110000000",
	"swift_code": "PPABPLPK",
	"status": "new",
	"type": "bank_account"
}
```

## Returns <a href="#returns-1" id="returns-1"></a>

Returns the bank account object.
