> 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-v1-4/api-v1/getting-details-of-an-hd-wallet-root-key.md).

# Getting details of an HD wallet root key

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

| Parameter | Type   | Required | Description                                                             |
| --------- | ------ | -------- | ----------------------------------------------------------------------- |
| `rootKey` | string | Yes      | Root key generated from the mnemonic.                                   |
| `index`   | number | No       | The starting index of the HD wallet to lookup (*Default: 0*)            |
| `count`   | number | No       | The number of wallet addresses to return for the lookup (*Default: 10*) |

**Response - `200 OK, application/json`**

| Parameter       | Type   | Description                                        |
| --------------- | ------ | -------------------------------------------------- |
| `address`       | list   | A list of addresses with the following parameters: |
| `balance`       | string | The amount of Hycon in the address                 |
| `pendingAmount` | string | The amount of Hycon pending in the address         |
| `index`         | number | Index value of the address in the HD walelt        |

**Response Error Table**

| Status | Error       | Message                    |
| ------ | ----------- | -------------------------- |
| 404    | `NOT_FOUND` | the wallet cannot be found |

POST/api/v1/getHDWalletFromRootKey

**Example request body**

```
{
	"rootKey": "xprv9s21ZrQH143K4AS5aB6u92QhhFNraGRKE9kHUdtkndLLLu4V5CKHugyAGVgs7R38y8gTG2t",
    "index": 0,
    "count": 2
}
```

**Example request**

```
$ curl -X POST http://localhost:2442/api/v1/getHDWalletFromRootKey \
    -H 'Content-Type: application/json;charset=utf-8' \
    -d '{
	  "rootkey": "xprv9s21ZrQH143K4AS5aB6u92QhhFNraGRKE9kHUdtkndLLLu4V5CKHugyAGVgs7R38y8gTG2t",
      "index": 0,
      "count": 2
    }'
```

**Response (Success)**

```
[
    {
        "address": "H34kywGZSMUdPSCa3rqJLeHaRqigS3Bnt",
        "balance": "0",
        "pendingAmount": "0",
        "index": 0
    },
    {
        "address": "H2zTphq19pxGWHgHyitKcXgjH9S37JB9L",
        "balance": "0",
        "pendingAmount": "0",
        "index": 1
    }
]
```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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, and the optional `goal` query parameter:

```
GET https://teamhycon.gitbook.io/docs/api-v1-4/api-v1/getting-details-of-an-hd-wallet-root-key.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
