# Response (specified wallet)

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

| 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` | should provide count or host as query param or path parameter undefined |
| 404    | `NOT_FOUND`   | nonexist not found                                                      |

**Response (Success)**

```
{
    "name": "first",
    "address": "H3rKFuQySycSigA8saiDfmBw3tUE4HEN9",
    "balance": "0",
    "nonce": 0
}
```
