> 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/getting-address-information/response-get-address.md).

# Response (get address)

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

| Parameter    | Type   | Description                                           |
| ------------ | ------ | ----------------------------------------------------- |
| **balance**  | string | The balance of the account queried by address.        |
| **nonce**    | number | The nonce of the account queried by address.          |
| **address**  | string | The address value used to query.                      |
| **pendings** | array  | A list of pending transactions awaiting confirmation. |

**Response Error Table**

| Status | Error         | Message                              |
| ------ | ------------- | ------------------------------------ |
| 400    | `BAD_REQUEST` | Error: Address must be 20 bytes long |

**Response (Success)**

```
{
    "balance": "51624.354309521",
    "nonce": 309,
    "address": "H497fHm8gbPZxaXySKpV17a7beYBF9Ut3",
    "pendings": [
        {
            "amount": "0.000000001",
            "to": "H2hQWtyFT1dvm5o6HvuF1oHq92bbb6ZVY",
            "txhash": "7FdVjNM939RF1i86vNnJk2QrFpEHmuueVjX8py3KPaxU",
            "fee": "0.000000001",
            "from": "H497fHm8gbPZxaXySKpV17a7beYBF9Ut3",
            "nonce": 310
        }
    ]
}
```
