# URL 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/:nameGET/api/v3/wallet/:address

**Example request with name specified**

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

**Example request with address specified**

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


---

# 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-4/url-method-specified-wallet.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.
