> For the complete documentation index, see [llms.txt](https://tembo.gitbook.io/tembo/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://tembo.gitbook.io/tembo/wallet-management-api/api-reference/list-wallets.md).

# List Wallets

#### Endpoint

```
GET /wallet
```

***

#### Request

**Headers**

* **`Content-Type`**<mark style="color:red;">**\***</mark> — Must be `application/json`
* **`x-account-id`**<mark style="color:red;">**\***</mark> — Your unique TemboPlus account identifier
* **`x-secret-key`**<mark style="color:red;">**\***</mark> — Your TemboPlus API secret key
* **`x-request-id`**<mark style="color:red;">**\***</mark> — Unique UUID per request for tracing

**Body Parameters**

No request body is required.

***

#### Responses

<details>

<summary><code>200</code> OK</summary>

Returns an array of all wallets linked to your account. Each wallet includes balance, currency, and type information.

**Response Format**

```json
[
  {
    "accountNo": "9000112233",
    "accountName": "ACME CORP",
    "type": "DEFAULT DISBURSEMENT",
    "balance": 4500000,
    "currency": "TZS",
    "countryCode": "TZ"
  },
  {
    "accountNo": "9000445566",
    "accountName": "ACME CORP - COLLECTION",
    "type": "DEFAULT COLLECTION",
    "balance": 1250000,
    "currency": "TZS",
    "countryCode": "TZ"
  },
  {
    "accountNo": "8000778899",
    "accountName": "ACME CORP - KES COLLECTION",
    "type": "COLLECTION",
    "balance": 75000,
    "currency": "KES",
    "countryCode": "KE"
  },
  {
    "accountNo": "8000334455",
    "accountName": "ACME CORP - KES DISBURSEMENT",
    "type": "DISBURSEMENT",
    "balance": 32000,
    "currency": "KES",
    "countryCode": "KE"
  }
]
```

</details>

<details>

<summary><code>401</code> UNAUTHORIZED</summary>

Returned when authentication headers are missing or invalid.

**Response Format**

```json
{
    "statusCode": 401,
    "reason": "INVALID_CREDENTIALS",
    "details": {}
}
```

</details>

<details>

<summary><code>500</code> INTERNAL SERVER ERROR</summary>

Indicates a temporary issue within TemboPlus. Retry later or contact TemboPlus Support with your `x-request-id`.

**Response Format**

```json
{
    "statusCode": 500,
    "reason": "SERVER_ERROR"
}
```

</details>
