# Response (wallet list)

#### Response (wallet list) `200 OK, application/json` <a href="#response-wallet-list-200-ok-applicationjson" id="response-wallet-list-200-ok-applicationjson"></a>

A wallet list with the following objects as elements is returned:

| Parameter | Type   | Description                                   |
| --------- | ------ | --------------------------------------------- |
| `name`    | string | The name of a wallet.                         |
| `address` | string | A Hycon wallet public address.                |
| `balance` | string | The total circulation of HYCON coin.          |
| `nonce`   | number | The transaction number sent from the address. |

**Response Error Table**

| Status | Error                   | Message                                                                        |
| ------ | ----------------------- | ------------------------------------------------------------------------------ |
| 400    | `BAD_REQUEST`           | Parameter should be defined                                                    |
| 500    | `INTERNAL_SERVER_ERROR` | FAILED getWalletList: Internal Server Error Error: {ERROR MESSAGE FROM SERVER} |

**Response (Success, no wallets) 200 OK, application/json**

```
[
]
```

**Response (Success) 200 OK, application/json**

```
[
    {
        "name": "first",
        "address": "H3rKFuQySycSigA8saiDfmBw3tUE4HEN9",
        "balance": "0",
        "nonce": 0
    },
    {
        "name": "second",
        "address": "H2pM9frgtFwqcBBrVCQr9x8yJ4Dy89ag3",
        "balance": "0",
        "nonce": 0
    },
    {
        "name": "third",
        "address": "HD Wallet (use post method with {name, password, index})",
        "balance": "0",
        "nonce": 0
    }
]
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://teamhycon.gitbook.io/docs/api-v3-3/untitled-5/response-wallet-list.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
