# Response (mined blocks)

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

If `count` is not set or set to 1, the following object is returned. Else, a block list with the following objects as elements is returned:

| Parameter     | Type   | Description                                                                                                        |
| ------------- | ------ | ------------------------------------------------------------------------------------------------------------------ |
| **hash**      | string | The hash value of the block that a address mined.                                                                  |
| **reward**    | string | Reward received by mining the block. This is the sum of the mining reward of block and the fee of the transaction. |
| **timestamp** | number | Timestamp when the block was added.                                                                                |
| **miner**     | string | The Hycon address value which mined the block.                                                                     |

**Response Error Table**

| Status | Error         | Message                                         |
| ------ | ------------- | ----------------------------------------------- |
| 400    | `BAD_REQUEST` | The parameter value passed as count is invalid. |

**Response (Success) without specified count**

```
{
    "hash": "9Xm95pPZ4QazmUVJWhPKXKvgzMHDQ31VQgVhxbFa4y2R",
    "reward": "12",
    "timestamp": 1545425179740,
    "miner": "H497fHm8gbPZxaXySKpV17a7beYBF9Ut3"
}
```

**Response (Success) with specified count**

```
[
    {
        "hash": "9Xm95pPZ4QazmUVJWhPKXKvgzMHDQ31VQgVhxbFa4y2R",
        "reward": "12",
        "timestamp": 1545425179740,
        "miner": "H497fHm8gbPZxaXySKpV17a7beYBF9Ut3"
    },
    ...
]
```


---

# 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/block-api/untitled-2/response-mined-blocks.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.
