# Query method (mined blocks)

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

| Parameter | Required | Description                                                    |
| --------- | -------- | -------------------------------------------------------------- |
| `address` | Yes      | An address value to query mined block information              |
| `count`   | No       | Number of mined blocks to return, if applicable (*Default: 1*) |

GET/api/v3/block/mined?{address}&{count}

**Example request without count**

```
curl -X GET http://localhost:2442/api/v3/block/mined\?address\=H497fHm8gbPZxaXySKpV17a7beYBF9Ut3 \
-H 'Content-Type: application/json;charset=utf-8'
```

**Example request with count**

```
curl -X GET http://localhost:2442/api/v3/block/mined\?address\=H497fHm8gbPZxaXySKpV17a7beYBF9Ut3&count=2 \
-H 'Content-Type: application/json;charset=utf-8'
```
