> For the complete documentation index, see [llms.txt](https://teamhycon.gitbook.io/docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://teamhycon.gitbook.io/docs/api-v3-3/untitled-4/query-method-specified-wallet.md).

# Query method (specified wallet)

**Request Body - `Content-Type: application/json;charset=utf-8`**

| Parameter | Required | Description                         |
| --------- | -------- | ----------------------------------- |
| `name`    | Yes\*    | The name of requested wallet        |
| `address` | Yes\*    | The address of the requested wallet |

*\*Only one of either the `name` or `address` parameter should be used. If both are passed as query parameters, the `name` parameter is used.*&#x47;ET/api/v3/wallet?{name}GET/api/v3/wallet?{address}

**Example request with name specified**

```
curl -X GET http://localhost:2442/api/v3/wallet?name=first \
-H 'Content-Type: application/json;charset=utf-8'
```

**Example request with address specified**

```
curl -X GET http://localhost:2442/api/v3/wallet?address=H3rKFuQySycSigA8saiDfmBw3tUE4HEN9 \
-H 'Content-Type: application/json;charset=utf-8'
```
