> 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-2/untitled-2/query-method-pending-txs.md).

# Query method (pending txs)

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

| Parameter | Required | Description                                               |
| --------- | -------- | --------------------------------------------------------- |
| `address` | No       | An address value to query pending transaction information |
| `count`   | No       | Number of most recent transactions to return              |

GET/api/v3/tx/pending?{address}&{count}

**Example request without address**

```
curl -X GET http://localhost:2442/api/v3/tx/pending \
-H 'Content-Type: application/json;charset=utf-8'
```

**Example request without address with count**

```
curl -X GET http://localhost:2442/api/v3/tx/pending\?count\=2 \
-H 'Content-Type: application/json;charset=utf-8'
```

**Example request with address**

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

**Example request with address and count**

```
curl -X GET http://localhost:2442/api/v3/tx/pending\?address\=H2hQWtyFT1dvm5o6HvuF1oHq92bbb6ZVY\&count\=3 \
-H 'Content-Type: application/json;charset=utf-8'
```
