> 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-1.md).

# Decrypt and get an HD wallet information

Get the details of an HD wallet address from the `index` parameter passed in the request.

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

| Parameter    | Type   | Description                                                                                                       |
| ------------ | ------ | ----------------------------------------------------------------------------------------------------------------- |
| **name**     | string | The wallet name what you want to find.                                                                            |
| **password** | string | Password to decrypt your wallet.                                                                                  |
| **index**    | number | The index of the HD wallet to lookup. If present, a specific wallet address will be returned from this HD wallet. |

POST/api/v3/wallet

**Example request**

```
curl -X POST http://localhost:2442/api/v3/wallet \
-H 'Content-Type: application/json;charset=utf-8' \
--data '{"name": "HD_wallet", "password": "is used to encrypt wallet file", "index": 1}'
```
